├── .gitignore ├── ESP32_G6_Emulator └── ESP32_G6_Emulator.ino ├── ESP32_Reader ├── BLE.ino ├── DexcomBLE.ino ├── DexcomG6.ino ├── ESP32_Reader.ino ├── Example serial output.txt ├── Helper.ino └── Output.h ├── LICENSE ├── README.md └── Thesis.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEpicBigBoss/Dexcom-ESP32-Reader/HEAD/.gitignore -------------------------------------------------------------------------------- /ESP32_G6_Emulator/ESP32_G6_Emulator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEpicBigBoss/Dexcom-ESP32-Reader/HEAD/ESP32_G6_Emulator/ESP32_G6_Emulator.ino -------------------------------------------------------------------------------- /ESP32_Reader/BLE.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEpicBigBoss/Dexcom-ESP32-Reader/HEAD/ESP32_Reader/BLE.ino -------------------------------------------------------------------------------- /ESP32_Reader/DexcomBLE.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEpicBigBoss/Dexcom-ESP32-Reader/HEAD/ESP32_Reader/DexcomBLE.ino -------------------------------------------------------------------------------- /ESP32_Reader/DexcomG6.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEpicBigBoss/Dexcom-ESP32-Reader/HEAD/ESP32_Reader/DexcomG6.ino -------------------------------------------------------------------------------- /ESP32_Reader/ESP32_Reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEpicBigBoss/Dexcom-ESP32-Reader/HEAD/ESP32_Reader/ESP32_Reader.ino -------------------------------------------------------------------------------- /ESP32_Reader/Example serial output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEpicBigBoss/Dexcom-ESP32-Reader/HEAD/ESP32_Reader/Example serial output.txt -------------------------------------------------------------------------------- /ESP32_Reader/Helper.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEpicBigBoss/Dexcom-ESP32-Reader/HEAD/ESP32_Reader/Helper.ino -------------------------------------------------------------------------------- /ESP32_Reader/Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEpicBigBoss/Dexcom-ESP32-Reader/HEAD/ESP32_Reader/Output.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEpicBigBoss/Dexcom-ESP32-Reader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEpicBigBoss/Dexcom-ESP32-Reader/HEAD/README.md -------------------------------------------------------------------------------- /Thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEpicBigBoss/Dexcom-ESP32-Reader/HEAD/Thesis.pdf --------------------------------------------------------------------------------