Skip to content

Instantly share code, notes, and snippets.

@channemann
channemann / (A) CareLink-Range-2.md
Last active October 27, 2018 19:51
Range tests of Medtronic CareLink USB Stick

Pump Battery Change Log

  • Pump: MM 723 v2.4A
  • Looping 24/7 (nominally), running every five minutes

Summary:

Battery Type n Mean Duration [hr] Standard Deviation [hr]
Energizer Ultimate Lithium 2 232.0 7.4
@channemann
channemann / insertion_records.py
Created October 15, 2015 20:31
Testing Dexcom g4 Platinum w/ Share Receiver Records
import readdata
dd = readdata.Dexcom.FindDevice()
dr = readdata.Dexcom(dd)
meter_records = dr.ReadRecords('METER_DATA')
print meter_records[0]
print meter_records[-1]
insertion_records = dr.ReadRecords('INSERTION_TIME')
print insertion_records[0]
print insertion_records[-1]