├── .dir-locals.el ├── .github └── workflows │ └── pre-commit.yml ├── .gitignore ├── .mailmap ├── .mergify.yml ├── .pre-commit-config.yaml ├── CNAME ├── CNAME.license ├── LICENSES ├── 0BSD.txt ├── CC-BY-NC-ND-4.0.txt ├── CC-BY-SA-4.0.txt └── MIT.txt ├── README.md ├── constraints.txt ├── contributing └── reverse-engineered.md ├── foliant.yml ├── mkdocs_theme ├── img │ ├── apple-touch-icon.png │ ├── apple-touch-icon.png.license │ ├── favicon.ico │ ├── favicon.ico.license │ ├── favicon.svg │ └── favicon.svg.license └── main.html ├── requirements.txt └── src ├── abbott ├── freestyle-insulinx.md ├── freestyle-libre-2.md ├── freestyle-libre.md ├── freestyle-lite.md ├── freestyle-optium.md ├── freestyle-precision-neo.md └── shared-hid-protocol.md ├── index.md ├── lifescan ├── onetouch-ultra2.md ├── onetouch-ultraeasy.md ├── onetouch-verio-2015.md ├── onetouch-verio-iq.md └── shared-binary-protocol.md ├── menarini └── glucomen-areo.md ├── sanofi └── bgstar-mystar.md ├── sd-biosensor └── codefree.md └── taidoc └── td42xx.md /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/.mailmap -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | protocols.glucometers.tech 2 | -------------------------------------------------------------------------------- /CNAME.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2016 The Glucometer Protocols Authors 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /LICENSES/0BSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/LICENSES/0BSD.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-NC-ND-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/LICENSES/CC-BY-NC-ND-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/LICENSES/CC-BY-SA-4.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/README.md -------------------------------------------------------------------------------- /constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/constraints.txt -------------------------------------------------------------------------------- /contributing/reverse-engineered.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/contributing/reverse-engineered.md -------------------------------------------------------------------------------- /foliant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/foliant.yml -------------------------------------------------------------------------------- /mkdocs_theme/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/mkdocs_theme/img/apple-touch-icon.png -------------------------------------------------------------------------------- /mkdocs_theme/img/apple-touch-icon.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2021 Diego Elio Pettenò 2 | 3 | SPDX-License-Identifier: CC-BY-NC-ND-4.0 4 | -------------------------------------------------------------------------------- /mkdocs_theme/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/mkdocs_theme/img/favicon.ico -------------------------------------------------------------------------------- /mkdocs_theme/img/favicon.ico.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2021 Diego Elio Pettenò 2 | 3 | SPDX-License-Identifier: CC-BY-NC-ND-4.0 4 | -------------------------------------------------------------------------------- /mkdocs_theme/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/mkdocs_theme/img/favicon.svg -------------------------------------------------------------------------------- /mkdocs_theme/img/favicon.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2021 Diego Elio Pettenò 2 | 3 | SPDX-License-Identifier: CC-BY-NC-ND-4.0 4 | -------------------------------------------------------------------------------- /mkdocs_theme/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/mkdocs_theme/main.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/abbott/freestyle-insulinx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/abbott/freestyle-insulinx.md -------------------------------------------------------------------------------- /src/abbott/freestyle-libre-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/abbott/freestyle-libre-2.md -------------------------------------------------------------------------------- /src/abbott/freestyle-libre.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/abbott/freestyle-libre.md -------------------------------------------------------------------------------- /src/abbott/freestyle-lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/abbott/freestyle-lite.md -------------------------------------------------------------------------------- /src/abbott/freestyle-optium.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/abbott/freestyle-optium.md -------------------------------------------------------------------------------- /src/abbott/freestyle-precision-neo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/abbott/freestyle-precision-neo.md -------------------------------------------------------------------------------- /src/abbott/shared-hid-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/abbott/shared-hid-protocol.md -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/index.md -------------------------------------------------------------------------------- /src/lifescan/onetouch-ultra2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/lifescan/onetouch-ultra2.md -------------------------------------------------------------------------------- /src/lifescan/onetouch-ultraeasy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/lifescan/onetouch-ultraeasy.md -------------------------------------------------------------------------------- /src/lifescan/onetouch-verio-2015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/lifescan/onetouch-verio-2015.md -------------------------------------------------------------------------------- /src/lifescan/onetouch-verio-iq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/lifescan/onetouch-verio-iq.md -------------------------------------------------------------------------------- /src/lifescan/shared-binary-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/lifescan/shared-binary-protocol.md -------------------------------------------------------------------------------- /src/menarini/glucomen-areo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/menarini/glucomen-areo.md -------------------------------------------------------------------------------- /src/sanofi/bgstar-mystar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/sanofi/bgstar-mystar.md -------------------------------------------------------------------------------- /src/sd-biosensor/codefree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/sd-biosensor/codefree.md -------------------------------------------------------------------------------- /src/taidoc/td42xx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glucometers-tech/glucometer-protocols/HEAD/src/taidoc/td42xx.md --------------------------------------------------------------------------------