decoding-carelink icon indicating copy to clipboard operation
decoding-carelink copied to clipboard

python serial driver for mm comlink2 protocol

Results 40 decoding-carelink issues
Sort by recently updated
recently updated
newest added

When changing to a new page, I am still facing trouble sometimes with an empty array of data. The only way I have found to fix this is by calibrating...

When running the commands for the mm-press-key.py I get the same result. The command is entered like this: python mm-press-key.py --serial 123456 --port /dev/ttyUSB0 act python mm-press-key.py --serial 123456 --port...

I'm trying to run something like: mm-send-comm.py sleep 1 && echo "Already initialized" || mm-send-comm.py --init sleep 1 to check if the pump is already initialized before trying to do...

The carb_ratio attribute is being decoded wrong, I believe. https://github.com/bewest/decoding-carelink/blob/master/decocare/records/bolus.py#L98 ``` { "_type": "BolusWizard", "bg": 100, "bg_target_high": 140, "_description": "BolusWizard 2015-11-14T20:59:47 head[2], body[15] op[0x5b]", "timestamp": "2015-11-14T20:59:47", "_body": "0f5000783c4100003200000000328c", "_head": "5b64",...

askmedtronic

Frank_openaps $ mm-send-comm.py tweak ReadCurGlucosePageNumber ## do stuff with an insulin pump over RF using `Namespace(autoinit=False, begin=None, bytesPerRecord=None, command='tweak', descr=None, dryrun=False, effectTime=None, end=None, init=False, maxRecords=None, name=None, no_postlude=False, no_prelude=False, no_rf_prelude=False, other='ReadCurGlucosePageNumber',...

Looks like to use your mm-temp-basal.py --out feature (https://github.com/bewest/decoding-carelink/commit/3717f3e34cecdb197a1d656a536e4f4e77c22fc1), I'm going to need it to write a couple more things besides just rate and duration (or hack together a wrapper...

Medtronic hasn't been proactive in getting CareLink to work on Mac OS. I'd like to collect what I've discovered here and suggest a possible fix. CareLink not identified as a...

Basal rates weren't being set correctly in the pump (e.g. 0.6u/hr was being set as 0.575u/hr) if rate = 0.6: ``` >>> int(0.6/0.025) 23 >>> 0.6/0.025 23.999999999999996 ``` If the...

The version actually used is model-specific (either ReadCarbRatios512 or ReadCarbRatios in commands.py)

Now running this in production and it works. I changed this to report the values in mgdl, as it's way easier to handle the data if decocare just decodes to...