-
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.
Add support for a "help" action that prints the driver module's docst…
…ring. This allows the drivers to provide information on what they support directly, rather than relying on the README file. It also allows to provide further information for the quirkier devices. This is again trying to resolve Issue #9.
- Loading branch information
Showing
2 changed files
with
24 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Driver for SD CodeFree devices by SD Biosensor""" | ||
"""Driver for SD CodeFree devices by SD Biosensor. | ||
For SD Biosensor glucometers using the serial interface. | ||
Supported features: | ||
- get readings, including pre-/post-meal notes; | ||
- set date and time. | ||
Expected device path: /dev/ttyUSB0 or similar serial port device. | ||
IMPORTANT NOTE: the glucometer can be connected before starting the program, but | ||
it has to be turned on when the program asks you to. | ||
""" | ||
|
||
|
||
__author__ = 'Diego Elio Pettenò' | ||
__email__ = '[email protected]' | ||
|