gitextract_hx6qj96v/ ├── LICENSE.md ├── LibreMonitor/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── LaunchScreen.storyboard │ ├── BloodGlucose+CoreDataClass.swift │ ├── BloodGlucose+CoreDataProperties.swift │ ├── Bluetooth/ │ │ ├── Data_types+Extensions.swift │ │ ├── NSData+CRC8.h │ │ ├── NSData+CRC8.m │ │ ├── NSData+SLIP.h │ │ ├── NSData+SLIP.m │ │ ├── SLIPBuffer.swift │ │ ├── SimbleeManager.swift │ │ ├── constants.h │ │ └── data_types.h │ ├── HeaderData+CoreDataClass.swift │ ├── HeaderData+CoreDataProperties.swift │ ├── Info.plist │ ├── LibreMonitor-Bridging-Header.h │ ├── LibreMonitor.entitlements │ ├── LibreMonitor.xcdatamodeld/ │ │ ├── .xccurrentversion │ │ └── LibreMonitor.xcdatamodel/ │ │ └── contents │ ├── LibreMonitorUITests-Bridging-Header.h │ ├── Main.storyboard │ ├── Model/ │ │ ├── CRC.swift │ │ ├── LibreSensor.swift │ │ ├── Measurement.swift │ │ ├── SensorData.swift │ │ └── SensorState.swift │ ├── ModelCoreData/ │ │ ├── BloodGlucose+CoreDataClass.swift │ │ ├── BloodGlucose+CoreDataProperties.swift │ │ ├── CoreDataStack.swift │ │ ├── HeaderData+CoreDataClass.swift │ │ ├── HeaderData+CoreDataProperties.swift │ │ ├── Reader+CoreDataClass.swift │ │ ├── Reader+CoreDataProperties.swift │ │ ├── Sensor+CoreDataClass.swift │ │ └── Sensor+CoreDataProperties.swift │ ├── Reader+CoreDataClass.swift │ ├── Reader+CoreDataProperties.swift │ ├── Sensor+CoreDataClass.swift │ ├── Sensor+CoreDataProperties.swift │ ├── SimbleeCode/ │ │ ├── crc8.h │ │ ├── crc8.m │ │ ├── libUBP.h │ │ └── libUBP.m │ ├── ViewControllers/ │ │ ├── AdjustmentsTableViewController.swift │ │ └── BloodSugarTableViewController.swift │ └── Views/ │ ├── BloodSugarGraphView.swift │ └── BloodSugarGraphViewTableViewCell.swift ├── LibreMonitor.ino ├── LibreMonitor.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcuserdata/ │ └── Uwe.xcuserdatad/ │ └── xcschemes/ │ ├── LibreMonitor.xcscheme │ └── xcschememanagement.plist ├── LibreMonitor.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcuserdata/ │ └── Uwe.xcuserdatad/ │ └── xcdebugger/ │ └── Breakpoints_v2.xcbkptlist ├── LibreMonitorRFduino.ino ├── LibreMonitorTests/ │ ├── BluetoothTestData.swift │ ├── Info.plist │ ├── LibreMonitorTestSensorData.swift │ ├── LibreMonitorTests-Bridging-Header.h │ ├── LibreMonitorTests.swift │ ├── SimbleeCode/ │ │ ├── crc8.h │ │ ├── crc8.m │ │ ├── libUBP.h │ │ └── libUBP.m │ └── TransmissionTests.swift ├── LibreMonitorUITests/ │ ├── Info.plist │ └── LibreMonitorUITests.swift ├── Podfile ├── README.md └── libUBP RFduino.cpp