summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@flameeyes.eu>2016-02-15 22:14:16 +0100
committerDiego Elio Pettenò <flameeyes@flameeyes.eu>2016-02-15 22:19:36 +0100
commit5e3ca9c6c455346712f0f4822d45ab69e2ca05d7 (patch)
tree292916c7815064714ef495f3731a2519828a86db
parentotultra2: make the before/after meal constants in common module. (diff)
downloadglucometerutils-5e3ca9c6c455346712f0f4822d45ab69e2ca05d7.tar
glucometerutils-5e3ca9c6c455346712f0f4822d45ab69e2ca05d7.tar.gz
glucometerutils-5e3ca9c6c455346712f0f4822d45ab69e2ca05d7.tar.bz2
glucometerutils-5e3ca9c6c455346712f0f4822d45ab69e2ca05d7.tar.lz
glucometerutils-5e3ca9c6c455346712f0f4822d45ab69e2ca05d7.tar.xz
glucometerutils-5e3ca9c6c455346712f0f4822d45ab69e2ca05d7.tar.zst
glucometerutils-5e3ca9c6c455346712f0f4822d45ab69e2ca05d7.zip
-rw-r--r--README46
1 files changed, 33 insertions, 13 deletions
diff --git a/README b/README
index 0f51b4c..c99df81 100644
--- a/README
+++ b/README
@@ -17,19 +17,39 @@ https://github.com/Flameeyes/glucometer-protocols/.
Supported devices
-----------------
- * **LifeScan OneTouch Ultra 2**: get information, get and set time,
- dump of readings (including comments and meal specification) in
- native units, memory reset.
- * **LifeScan OneTouch Ultra Easy** (also known as **Ultra Mini**):
- get information, get and set time, dump of readings in native
- units, memory reset.
- * **LifeScan OneTouch Verio** (USB version), **LifeScan OneTouch
- Select Plus**: get information, get and set time, dump of
- readings. Requires [python-scsi][1].
- * **Abbott FreeStyle Optium**: get information, get and set time,
- dump of readings in native units.
-
-[1] https://github.com/rosjat/python-scsi
+Please see the following table for the driver for each device that is
+known and supported; the following table will provide further
+information on each of the devices.
+
+| Manufacturer | Model Name | Driver |
+| --- | --- | --- |
+| LifeScan | OneTouch Ultra 2 | `otultra2` |
+| LifeScan | OneTouch Ultra Easy | `otultraeasy` |
+| LifeScan | OneTouch Ultra Mini | `otultraeasy` |
+| LifeScan | OneTouch Verio (USB) | `otverio2015` |
+| LifeScan | OneTouch Select Plus | `otverio2015` |
+| Abbott | FreeStyle Optium | `freestyle_optium` |
+
+### Driver features
+
+| Driver | Information | Time | Record comments | Memory Reset |
+| --- | --- | --- | --- | --- |
+| `otultra2` | serialno, swver, unit | get and set | yes | yes |
+| `otultraeasy` | serialno, swver, unit | get and set | not supported by device | yes |
+| `otverio2015` | serialno, swver | get and set | no | yes |
+| `freestyle_optium` | serialno, swver, unit | get and set | not supported by device | not supported by device |
+
+### Driver dependencies
+
+| Driver | Dependencies |
+| --- | --- |
+| `otultra2` | [pyserial] |
+| `otultraeasy` | [pyserial] |
+| `otverio2015` | [python-scsi] |
+| `freestyle_optium` | [pyserial] |
+
+[pyserial]: https://pythonhosted.org/pyserial/
+[python-scsi]: https://github.com/rosjat/python-scsi
Dump format
-----------