summaryrefslogtreecommitdiff
path: root/dexcom_reader/database_records.py
AgeCommit message (Collapse)Author
2017-01-26bugfix: EGVRecord.noise() to use self.full_trend()Andrew Cady
The method EGVRecord.full_trend() is implemented differently on the Dexcom G5. It returns self.data[12] instead of self.data[3]. EGVRecord.noise() had used self.data[3] directly instead of calling self.full_trend(), causing this exception when connecting to a G5 receiver: TypeError: ord() expected string of length 1, but int found I can only assume that this is correct.
2016-06-14add noise field to EGVRecordsBen West
CC @jasoncalabrese, re https://github.com/openaps/dexcom_reader/issues/12
2016-05-28attempt unifying G5 support, legacy calsBen West
Try throwing in compatibility layer, if a bit hacky, for everything.
2016-05-28Adding additional insertion record statesNathan Racklyeft
2016-05-28Adjusting size of Meter and Insertion record dataNathan Racklyeft
2016-05-28Adding support for G5 EGVRecord sizesNathan Racklyeft
2016-05-28support fetching cal_setBen West
Many thanks to @LorelaiL for putting up with some my remedial questions.
2016-01-12try to export fields on user event data typesBen West
2016-01-08eliminate redundant/commented codeBen West
2016-01-08improve Sensor records: make rssi signedBen West
2015-10-15Use == instead of isBen West
for @channemann it's always the simple things
2015-10-15use system_time for bogus insertion_timeBen West
2015-05-01add some fields??Ben West
2014-11-25make easy way to export dataBen West
2014-11-24export sensor recordsBen West
2014-05-24prep for installable moduleBen West