├── .gitignore ├── 80-dexcom.rules ├── Dockerfile ├── README.md ├── dexcom_receiver.py ├── dexcom_share.py ├── dexpy.json ├── dexpy.py ├── docker-compose.yml ├── docker-entrypoint.sh ├── glucose.py ├── install.sh ├── requirements.txt └── usbreceiver ├── __init__.py ├── constants.py ├── crc16.py ├── database_records.py ├── packetwriter.py ├── readdata.py └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .vscode/ 3 | .idea/* 4 | -------------------------------------------------------------------------------- /80-dexcom.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/80-dexcom.rules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/README.md -------------------------------------------------------------------------------- /dexcom_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/dexcom_receiver.py -------------------------------------------------------------------------------- /dexcom_share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/dexcom_share.py -------------------------------------------------------------------------------- /dexpy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/dexpy.json -------------------------------------------------------------------------------- /dexpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/dexpy.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /glucose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/glucose.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/install.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/requirements.txt -------------------------------------------------------------------------------- /usbreceiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usbreceiver/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/usbreceiver/constants.py -------------------------------------------------------------------------------- /usbreceiver/crc16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/usbreceiver/crc16.py -------------------------------------------------------------------------------- /usbreceiver/database_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/usbreceiver/database_records.py -------------------------------------------------------------------------------- /usbreceiver/packetwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/usbreceiver/packetwriter.py -------------------------------------------------------------------------------- /usbreceiver/readdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/usbreceiver/readdata.py -------------------------------------------------------------------------------- /usbreceiver/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winemug/dexpy/HEAD/usbreceiver/util.py --------------------------------------------------------------------------------