adding files for the commit

This commit is contained in:
Lucas Oskorep
2019-11-09 21:09:27 -06:00
parent 40c4e01f55
commit e91c870eca
71 changed files with 1923 additions and 56 deletions
+8 -6
View File
@@ -5,11 +5,13 @@ BATTERY = 4
TEMPERATURE = 5
MAGNETOMETER = 6
RESET_CHAR = "64a70004-f691-4b93-a6f4-0968f5b648f8"
CHARACTERISTIC_UUIDS = {
("64a7000d-f691-4b93-a6f4-0968f5b648f8"): BUTTON, # Button
("64a7000a-f691-4b93-a6f4-0968f5b648f8"): NINE_AXIS, # 9 axis
("64a7000c-f691-4b93-a6f4-0968f5b648f8"): ACCELEROMETER, # Accel
("64a70007-f691-4b93-a6f4-0968f5b648f8"): BATTERY,
("64a70014-f691-4b93-a6f4-0968f5b648f8"): TEMPERATURE,
("64a70021-f691-4b93-a6f4-0968f5b648f8"): MAGNETOMETER
BUTTON: ("64a7000d-f691-4b93-a6f4-0968f5b648f8"), # Button
NINE_AXIS: ("64a7000a-f691-4b93-a6f4-0968f5b648f8"), # 9 axis
ACCELEROMETER: ("64a7000c-f691-4b93-a6f4-0968f5b648f8"), # Accel
BATTERY: ("64a70007-f691-4b93-a6f4-0968f5b648f8"),
TEMPERATURE:("64a70014-f691-4b93-a6f4-0968f5b648f8"),
MAGNETOMETER:("64a70021-f691-4b93-a6f4-0968f5b648f8")
} # <--- Change to the characteristic you want to enable notifications from.