├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── app └── FreeStyleLibre │ ├── .DS_Store │ ├── .gradle │ └── 2.2.1 │ │ └── taskArtifacts │ │ ├── cache.properties │ │ ├── cache.properties.lock │ │ ├── fileHashes.bin │ │ ├── fileSnapshots.bin │ │ ├── outputFileStates.bin │ │ └── taskArtifacts.bin │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── libraries │ │ └── support_v4_19_1_0.xml │ ├── misc.xml │ ├── modules.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── vcs.xml │ └── workspace.xml │ ├── FreeStyleLibreNew.iml │ ├── app │ ├── .DS_Store │ ├── app.iml │ ├── build.gradle │ ├── build │ │ ├── .DS_Store │ │ ├── generated │ │ │ └── source │ │ │ │ ├── buildConfig │ │ │ │ └── debug │ │ │ │ │ └── com │ │ │ │ │ └── socialdiabetes │ │ │ │ │ └── freestylelibre │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── r │ │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── socialdiabetes │ │ │ │ └── freestylelibre │ │ │ │ └── R.java │ │ ├── intermediates │ │ │ ├── assets │ │ │ │ └── debug │ │ │ │ │ └── fonts │ │ │ │ │ └── Courier.ttf │ │ │ ├── classes │ │ │ │ └── debug │ │ │ │ │ └── com │ │ │ │ │ └── socialdiabetes │ │ │ │ │ └── freestylelibre │ │ │ │ │ ├── Abbott$1.class │ │ │ │ │ ├── Abbott$NfcVReaderTask$1.class │ │ │ │ │ ├── Abbott$NfcVReaderTask$2.class │ │ │ │ │ ├── Abbott$NfcVReaderTask$3.class │ │ │ │ │ ├── Abbott$NfcVReaderTask.class │ │ │ │ │ ├── Abbott.class │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$raw.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$xml.class │ │ │ │ │ └── R.class │ │ │ ├── dex │ │ │ │ └── debug │ │ │ │ │ └── classes.dex │ │ │ ├── incremental │ │ │ │ ├── aidl │ │ │ │ │ └── debug │ │ │ │ │ │ └── dependency.store │ │ │ │ ├── mergeAssets │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ └── mergeResources │ │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ ├── manifests │ │ │ │ └── full │ │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── pre-dexed │ │ │ │ └── debug │ │ │ │ │ └── support-v4-19.1.0-2d8834c1e9c705a5f4d2b7f63e161263d004f711.jar │ │ │ ├── res │ │ │ │ ├── debug │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_abbott.xml │ │ │ │ │ ├── raw │ │ │ │ │ │ └── notification.mp3 │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── values │ │ │ │ │ │ └── values.xml │ │ │ │ │ └── xml │ │ │ │ │ │ └── nfc_tech_filter.xml │ │ │ │ └── resources-debug.ap_ │ │ │ └── tmp │ │ │ │ └── dex │ │ │ │ └── debug │ │ │ │ └── inputList.txt │ │ └── outputs │ │ │ ├── .DS_Store │ │ │ └── apk │ │ │ ├── app-debug-unaligned.apk │ │ │ ├── app-debug.apk │ │ │ └── manifest-merger-debug-report.txt │ └── src │ │ ├── .DS_Store │ │ └── main │ │ ├── .DS_Store │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ └── Courier.ttf │ │ ├── java │ │ └── com │ │ │ └── socialdiabetes │ │ │ └── freestylelibre │ │ │ └── Abbott.java │ │ └── res │ │ ├── .DS_Store │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── layout │ │ └── activity_abbott.xml │ │ ├── raw │ │ └── notification.mp3 │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ ├── values │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── nfc_tech_filter.xml │ ├── build.gradle │ ├── build │ └── intermediates │ │ └── dex-cache │ │ └── cache.xml │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── local.properties │ └── settings.gradle ├── logs ├── 0M0000070ZH │ ├── expired_fsl_2014-12-01_13-29-52.log │ ├── expired_fsl_2014-12-01_13-32-09.log │ ├── expired_fsl_2014-12-01_13-39-52.log │ ├── expired_fsl_2014-12-01_13-48-49.log │ ├── fsl_2014-11-17_14-12-00.log │ ├── fsl_2014-11-17_14-15-12.log │ ├── fsl_2014-11-17_14-19-41.log │ ├── fsl_2014-11-18_21-23-18.log │ ├── fsl_2014-11-19_08-03-44.log │ ├── fsl_2014-11-19_15-48-39.log │ ├── fsl_2014-11-19_17-59-51.log │ ├── fsl_2014-11-19_18-04-04.log │ ├── fsl_2014-11-19_18-07-59.log │ └── fsl_2014-12-01_13-14-16.log ├── 0M0000071XD │ ├── fsl_2014-11-14_16-43-52.log │ ├── fsl_2014-11-14_16-56-18.log │ ├── fsl_2014-11-14_17-03-44.log │ ├── fsl_2014-11-14_17-23-49.log │ ├── fsl_2014-11-14_20-25-23.log │ ├── fsl_2014-11-17_07-35-15.log │ └── fsl_2014-11-17_09-35-31.log └── MacApplication │ └── free.txt ├── osx USB Reader ├── FreeStyle.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Victor.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Victor.xcuserdatad │ │ └── xcschemes │ │ ├── FreeStyle.xcscheme │ │ └── xcschememanagement.plist └── FreeStyle │ └── main.m └── utils └── convert.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/README.md -------------------------------------------------------------------------------- /app/FreeStyleLibre/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.DS_Store -------------------------------------------------------------------------------- /app/FreeStyleLibre/.gradle/2.2.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Jan 13 13:27:44 CET 2015 2 | -------------------------------------------------------------------------------- /app/FreeStyleLibre/.gradle/2.2.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.gradle/2.2.1/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /app/FreeStyleLibre/.gradle/2.2.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.gradle/2.2.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /app/FreeStyleLibre/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /app/FreeStyleLibre/.gradle/2.2.1/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.gradle/2.2.1/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /app/FreeStyleLibre/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /app/FreeStyleLibre/.idea/.name: -------------------------------------------------------------------------------- 1 | FreeStyleLibre -------------------------------------------------------------------------------- /app/FreeStyleLibre/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.idea/compiler.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.idea/encodings.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.idea/gradle.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/.idea/libraries/support_v4_19_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.idea/libraries/support_v4_19_1_0.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.idea/misc.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.idea/modules.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.idea/vcs.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/.idea/workspace.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/FreeStyleLibreNew.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/FreeStyleLibreNew.iml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/.DS_Store -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/app.iml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build.gradle -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/.DS_Store -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/generated/source/buildConfig/debug/com/socialdiabetes/freestylelibre/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/generated/source/buildConfig/debug/com/socialdiabetes/freestylelibre/BuildConfig.java -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/generated/source/r/debug/com/socialdiabetes/freestylelibre/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/generated/source/r/debug/com/socialdiabetes/freestylelibre/R.java -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/assets/debug/fonts/Courier.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/assets/debug/fonts/Courier.ttf -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/Abbott$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/Abbott$1.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/Abbott$NfcVReaderTask$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/Abbott$NfcVReaderTask$1.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/Abbott$NfcVReaderTask$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/Abbott$NfcVReaderTask$2.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/Abbott$NfcVReaderTask$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/Abbott$NfcVReaderTask$3.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/Abbott$NfcVReaderTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/Abbott$NfcVReaderTask.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/Abbott.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/Abbott.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/BuildConfig.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$attr.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$drawable.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$id.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$layout.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$raw.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$string.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$style.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R$xml.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/classes/debug/com/socialdiabetes/freestylelibre/R.class -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/dex/debug/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/dex/debug/classes.dex -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/incremental/mergeAssets/debug/merger.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/incremental/mergeResources/debug/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/incremental/mergeResources/debug/merger.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/manifests/full/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/manifests/full/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/pre-dexed/debug/support-v4-19.1.0-2d8834c1e9c705a5f4d2b7f63e161263d004f711.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/pre-dexed/debug/support-v4-19.1.0-2d8834c1e9c705a5f4d2b7f63e161263d004f711.jar -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/res/debug/drawable-hdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/res/debug/drawable-hdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/res/debug/drawable-mdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/res/debug/drawable-mdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/res/debug/drawable-xhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/res/debug/drawable-xhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/res/debug/drawable-xxhdpi-v4/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/res/debug/drawable-xxhdpi-v4/ic_launcher.png -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/res/debug/layout/activity_abbott.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/res/debug/layout/activity_abbott.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/res/debug/raw/notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/res/debug/raw/notification.mp3 -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/res/debug/values-v11/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/res/debug/values-v11/values.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/res/debug/values-v14/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/res/debug/values-v14/values.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/res/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/res/debug/values/values.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/res/debug/xml/nfc_tech_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/res/debug/xml/nfc_tech_filter.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/res/resources-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/res/resources-debug.ap_ -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/intermediates/tmp/dex/debug/inputList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/intermediates/tmp/dex/debug/inputList.txt -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/outputs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/outputs/.DS_Store -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/outputs/apk/app-debug-unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/outputs/apk/app-debug-unaligned.apk -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/outputs/apk/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/outputs/apk/app-debug.apk -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/build/outputs/apk/manifest-merger-debug-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/build/outputs/apk/manifest-merger-debug-report.txt -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/.DS_Store -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/.DS_Store -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/assets/fonts/Courier.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/assets/fonts/Courier.ttf -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/java/com/socialdiabetes/freestylelibre/Abbott.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/java/com/socialdiabetes/freestylelibre/Abbott.java -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/res/.DS_Store -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/res/layout/activity_abbott.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/res/layout/activity_abbott.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/res/raw/notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/res/raw/notification.mp3 -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/res/values-v14/styles.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/app/src/main/res/xml/nfc_tech_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/app/src/main/res/xml/nfc_tech_filter.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/build.gradle -------------------------------------------------------------------------------- /app/FreeStyleLibre/build/intermediates/dex-cache/cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/build/intermediates/dex-cache/cache.xml -------------------------------------------------------------------------------- /app/FreeStyleLibre/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/FreeStyleLibre/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /app/FreeStyleLibre/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/gradlew -------------------------------------------------------------------------------- /app/FreeStyleLibre/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/gradlew.bat -------------------------------------------------------------------------------- /app/FreeStyleLibre/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/app/FreeStyleLibre/local.properties -------------------------------------------------------------------------------- /app/FreeStyleLibre/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /logs/0M0000070ZH/expired_fsl_2014-12-01_13-29-52.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/expired_fsl_2014-12-01_13-29-52.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/expired_fsl_2014-12-01_13-32-09.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/expired_fsl_2014-12-01_13-32-09.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/expired_fsl_2014-12-01_13-39-52.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/expired_fsl_2014-12-01_13-39-52.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/expired_fsl_2014-12-01_13-48-49.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/expired_fsl_2014-12-01_13-48-49.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/fsl_2014-11-17_14-12-00.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/fsl_2014-11-17_14-12-00.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/fsl_2014-11-17_14-15-12.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/fsl_2014-11-17_14-15-12.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/fsl_2014-11-17_14-19-41.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/fsl_2014-11-17_14-19-41.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/fsl_2014-11-18_21-23-18.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/fsl_2014-11-18_21-23-18.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/fsl_2014-11-19_08-03-44.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/fsl_2014-11-19_08-03-44.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/fsl_2014-11-19_15-48-39.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/fsl_2014-11-19_15-48-39.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/fsl_2014-11-19_17-59-51.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/fsl_2014-11-19_17-59-51.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/fsl_2014-11-19_18-04-04.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/fsl_2014-11-19_18-04-04.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/fsl_2014-11-19_18-07-59.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/fsl_2014-11-19_18-07-59.log -------------------------------------------------------------------------------- /logs/0M0000070ZH/fsl_2014-12-01_13-14-16.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000070ZH/fsl_2014-12-01_13-14-16.log -------------------------------------------------------------------------------- /logs/0M0000071XD/fsl_2014-11-14_16-43-52.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000071XD/fsl_2014-11-14_16-43-52.log -------------------------------------------------------------------------------- /logs/0M0000071XD/fsl_2014-11-14_16-56-18.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000071XD/fsl_2014-11-14_16-56-18.log -------------------------------------------------------------------------------- /logs/0M0000071XD/fsl_2014-11-14_17-03-44.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000071XD/fsl_2014-11-14_17-03-44.log -------------------------------------------------------------------------------- /logs/0M0000071XD/fsl_2014-11-14_17-23-49.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000071XD/fsl_2014-11-14_17-23-49.log -------------------------------------------------------------------------------- /logs/0M0000071XD/fsl_2014-11-14_20-25-23.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000071XD/fsl_2014-11-14_20-25-23.log -------------------------------------------------------------------------------- /logs/0M0000071XD/fsl_2014-11-17_07-35-15.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000071XD/fsl_2014-11-17_07-35-15.log -------------------------------------------------------------------------------- /logs/0M0000071XD/fsl_2014-11-17_09-35-31.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/0M0000071XD/fsl_2014-11-17_09-35-31.log -------------------------------------------------------------------------------- /logs/MacApplication/free.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/logs/MacApplication/free.txt -------------------------------------------------------------------------------- /osx USB Reader/FreeStyle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/osx USB Reader/FreeStyle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /osx USB Reader/FreeStyle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/osx USB Reader/FreeStyle.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /osx USB Reader/FreeStyle.xcodeproj/project.xcworkspace/xcuserdata/Victor.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/osx USB Reader/FreeStyle.xcodeproj/project.xcworkspace/xcuserdata/Victor.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /osx USB Reader/FreeStyle.xcodeproj/xcuserdata/Victor.xcuserdatad/xcschemes/FreeStyle.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/osx USB Reader/FreeStyle.xcodeproj/xcuserdata/Victor.xcuserdatad/xcschemes/FreeStyle.xcscheme -------------------------------------------------------------------------------- /osx USB Reader/FreeStyle.xcodeproj/xcuserdata/Victor.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/osx USB Reader/FreeStyle.xcodeproj/xcuserdata/Victor.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /osx USB Reader/FreeStyle/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/osx USB Reader/FreeStyle/main.m -------------------------------------------------------------------------------- /utils/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicktor/FreeStyleLibre-NFC-Reader/HEAD/utils/convert.py --------------------------------------------------------------------------------