-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
All drivers: move documentation of features from README to docstring.
This allows the drivers to keep up to date with what they support and need. Should make Issue #9 easier to solve. Also merge the dependency list with the list of supported devices, so that you don't have to join the two tables in your head.
- Loading branch information
Showing
9 changed files
with
101 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Driver for FreeStyle Libre CGM devices.""" | ||
"""Driver for FreeStyle Libre devices. | ||
Supported features: | ||
- get readings (sensor, flash and blood glucose), including comments; | ||
- get and set date and time; | ||
- get serial number and software version. | ||
Expected device path: /dev/hidraw9 or similar HID device. | ||
Further information on the device protocol can be found at | ||
https://flameeyes.github.io/glucometer-protocols/abbott/freestyle-libre | ||
""" | ||
|
||
__author__ = 'Diego Elio Pettenò' | ||
__email__ = '[email protected]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Driver for FreeStyle Precision Neo devices.""" | ||
"""Driver for FreeStyle Precision Neo devices. | ||
This driver may also work with FreeStyle Optium Neo devices, but it is currently | ||
untested. | ||
Supported features: | ||
- get readings; | ||
- get and set date and time; | ||
- get serial number and software version. | ||
Expected device path: /dev/hidraw9 or similar HID device. | ||
Further information on the device protocol can be found at | ||
https://flameeyes.github.io/glucometer-protocols/abbott/freestyle-precision-neo | ||
""" | ||
|
||
__author__ = 'Diego Elio Pettenò' | ||
__email__ = '[email protected]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Driver for LifeScan OneTouch Ultra 2 devices""" | ||
"""Driver for LifeScan OneTouch Ultra 2 devices. | ||
Supported features: | ||
- get readings, including pre-/post-meal notes and other comments; | ||
- use the glucose unit preset on the device by default; | ||
- get and set date and time; | ||
- get serial number and software version; | ||
- memory reset (caution!) | ||
Expected device path: /dev/ttyUSB0 or similar serial port device. | ||
""" | ||
|
||
__author__ = 'Diego Elio Pettenò' | ||
__email__ = '[email protected]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Driver for LifeScan OneTouch Ultra Easy devices""" | ||
"""Driver for LifeScan OneTouch Ultra Easy devices. | ||
Also supports OneTouch Ultra Mini devices (different name, same device). | ||
Supported features: | ||
- get readings; | ||
- use the glucose unit preset on the device by default; | ||
- get and set date and time; | ||
- get serial number and software version; | ||
- memory reset (caution!) | ||
Expected device path: /dev/ttyUSB0 or similar serial port device. | ||
""" | ||
|
||
__author__ = 'Diego Elio Pettenò' | ||
__email__ = '[email protected]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters