diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | glucometerutils/drivers/otverioiq.py | 12 |
2 files changed, 10 insertions, 4 deletions
@@ -37,7 +37,7 @@ supported. | LifeScan | OneTouch Ultra 2 | `otultra2` | [pyserial] | | LifeScan | OneTouch Ultra Easy | `otultraeasy` | [construct] [pyserial] | | LifeScan | OneTouch Ultra Mini | `otultraeasy` | [construct] [pyserial] | -| LifeScan | OneTouch Verio IQ† | `otverioiq` | [construct] [pyserial] | +| LifeScan | OneTouch Verio IQ | `otverioiq` | [construct] [pyserial] | | LifeScan | OneTouch Verio (USB) | `otverio2015` | [construct] [python-scsi] | | LifeScan | OneTouch Select Plus | `otverio2015` | [construct] [python-scsi] | | Abbott | FreeStyle InsuLinx† | `fsinsulinx` | [construct] [hidapi]‡ | diff --git a/glucometerutils/drivers/otverioiq.py b/glucometerutils/drivers/otverioiq.py index 9654acb..669900e 100644 --- a/glucometerutils/drivers/otverioiq.py +++ b/glucometerutils/drivers/otverioiq.py @@ -1,10 +1,16 @@ # -*- coding: utf-8 -*- """Driver for LifeScan OneTouch Verio IQ devices. -Currently work in progress, untested. +Supported features: + - get readings, including pre-/post-meal notes; + - 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. Device will be +auto-detected. -Expected device path: /dev/ttyUSB0 or similar serial port device. Device should -be auto-detected if not provided. """ __author__ = 'Diego Elio Pettenò' |