forked from hbldh/bleak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuuids.py
More file actions
1149 lines (1137 loc) · 44.1 KB
/
Copy pathuuids.py
File metadata and controls
1149 lines (1137 loc) · 44.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
from typing import Dict
uuid16_dict = {
0x0001: "SDP",
0x0003: "RFCOMM",
0x0005: "TCS-BIN",
0x0007: "ATT",
0x0008: "OBEX",
0x000F: "BNEP",
0x0010: "UPNP",
0x0011: "HIDP",
0x0012: "Hardcopy Control Channel",
0x0014: "Hardcopy Data Channel",
0x0016: "Hardcopy Notification",
0x0017: "AVCTP",
0x0019: "AVDTP",
0x001B: "CMTP",
0x001E: "MCAP Control Channel",
0x001F: "MCAP Data Channel",
0x0100: "L2CAP",
# 0x0101 to 0x0fff undefined */
0x1000: "Service Discovery Server Service Class",
0x1001: "Browse Group Descriptor Service Class",
0x1002: "Public Browse Root",
# 0x1003 to 0x1100 undefined */
0x1101: "Serial Port",
0x1102: "LAN Access Using PPP",
0x1103: "Dialup Networking",
0x1104: "IrMC Sync",
0x1105: "OBEX Object Push",
0x1106: "OBEX File Transfer",
0x1107: "IrMC Sync Command",
0x1108: "Headset",
0x1109: "Cordless Telephony",
0x110A: "Audio Source",
0x110B: "Audio Sink",
0x110C: "A/V Remote Control Target",
0x110D: "Advanced Audio Distribution",
0x110E: "A/V Remote Control",
0x110F: "A/V Remote Control Controller",
0x1110: "Intercom",
0x1111: "Fax",
0x1112: "Headset AG",
0x1113: "WAP",
0x1114: "WAP Client",
0x1115: "PANU",
0x1116: "NAP",
0x1117: "GN",
0x1118: "Direct Printing",
0x1119: "Reference Printing",
0x111A: "Basic Imaging Profile",
0x111B: "Imaging Responder",
0x111C: "Imaging Automatic Archive",
0x111D: "Imaging Referenced Objects",
0x111E: "Handsfree",
0x111F: "Handsfree Audio Gateway",
0x1120: "Direct Printing Refrence Objects Service",
0x1121: "Reflected UI",
0x1122: "Basic Printing",
0x1123: "Printing Status",
0x1124: "Human Interface Device Service",
0x1125: "Hardcopy Cable Replacement",
0x1126: "HCR Print",
0x1127: "HCR Scan",
0x1128: "Common ISDN Access",
# 0x1129 and 0x112a undefined */
0x112D: "SIM Access",
0x112E: "Phonebook Access Client",
0x112F: "Phonebook Access Server",
0x1130: "Phonebook Access",
0x1131: "Headset HS",
0x1132: "Message Access Server",
0x1133: "Message Notification Server",
0x1134: "Message Access Profile",
0x1135: "GNSS",
0x1136: "GNSS Server",
0x1137: "3D Display",
0x1138: "3D Glasses",
0x1139: "3D Synchronization",
0x113A: "MPS Profile",
0x113B: "MPS Service",
0x113C: "CTN Access Service",
0x113D: "CTN Notification Service",
0x113E: "CTN Profile",
# 0x113f to 0x11ff undefined */
0x1200: "PnP Information",
0x1201: "Generic Networking",
0x1202: "Generic File Transfer",
0x1203: "Generic Audio",
0x1204: "Generic Telephony",
0x1205: "UPNP Service",
0x1206: "UPNP IP Service",
0x1300: "UPNP IP PAN",
0x1301: "UPNP IP LAP",
0x1302: "UPNP IP L2CAP",
0x1303: "Video Source",
0x1304: "Video Sink",
0x1305: "Video Distribution",
# 0x1306 to 0x13ff undefined */
0x1400: "HDP",
0x1401: "HDP Source",
0x1402: "HDP Sink",
# 0x1403 to 0x17ff undefined */
0x1800: "Generic Access Profile",
0x1801: "Generic Attribute Profile",
0x1802: "Immediate Alert",
0x1803: "Link Loss",
0x1804: "Tx Power",
0x1805: "Current Time Service",
0x1806: "Reference Time Update Service",
0x1807: "Next DST Change Service",
0x1808: "Glucose",
0x1809: "Health Thermometer",
0x180A: "Device Information",
# 0x180b and 0x180c undefined */
0x180D: "Heart Rate",
0x180E: "Phone Alert Status Service",
0x180F: "Battery Service",
0x1810: "Blood Pressure",
0x1811: "Alert Notification Service",
0x1812: "Human Interface Device",
0x1813: "Scan Parameters",
0x1814: "Running Speed and Cadence",
0x1815: "Automation IO",
0x1816: "Cycling Speed and Cadence",
# 0x1817 undefined */
0x1818: "Cycling Power",
0x1819: "Location and Navigation",
0x181A: "Environmental Sensing",
0x181B: "Body Composition",
0x181C: "User Data",
0x181D: "Weight Scale",
0x181E: "Bond Management",
0x181F: "Continuous Glucose Monitoring",
0x1820: "Internet Protocol Support",
0x1821: "Indoor Positioning",
0x1822: "Pulse Oximeter",
0x1823: "HTTP Proxy",
0x1824: "Transport Discovery",
0x1825: "Object Transfer",
0x1826: "Fitness Machine",
0x1827: "Mesh Provisioning",
0x1828: "Mesh Proxy",
0x1829: "Reconnection Configuration",
# 0x182a-0x1839 undefined
0x183A: "Insulin Delivery",
0x183B: "Binary Sensor",
0x183C: "Emergency Configuration",
# 0x183D undefined
0x183E: "Physical Activity Monitor",
# 0x183F-0x1842 undefined
0x1843: "Audio Input Control",
0x1844: "Volume Control",
0x1845: "Volume Offset Control",
0x1846: "Coordinated Set Identification Service",
0x1847: "Device Time",
0x1848: "Media Control Service",
0x1849: "Generic Media Control Service",
0x184A: "Constant Tone Extension",
0x184B: "Telephone Bearer Service",
0x184C: "Generic Telephone Bearer Service",
0x184D: "Microphone Control",
0x184E: "Audio Stream Control Service",
0x184F: "Broadcast Audio Scan Service",
0x1850: "Published Audio Capabilities Service",
0x1851: "Basic Audio Announcement Service",
0x1852: "Broadcast Audio Announcement Service",
# 0x1853 to 0x26ff undefined */
# 0x2700.. GATT Units
0x2700: "unitless",
0x2701: "length (metre)",
0x2702: "mass (kilogram)",
0x2703: "time (second)",
0x2704: "electric current (ampere)",
0x2705: "thermodynamic temperature (kelvin)",
0x2706: "amount of substance (mole)",
0x2707: "luminous intensity (candela)",
0x2710: "area (square metres)",
0x2711: "volume (cubic metres)",
0x2712: "velocity (metres per second)",
0x2713: "acceleration (metres per second squared)",
0x2714: "wavenumber (reciprocal metre)",
0x2715: "density (kilogram per cubic metre)",
0x2716: "surface density (kilogram per square metre)",
0x2717: "specific volume (cubic metre per kilogram)",
0x2718: "current density (ampere per square metre)",
0x2719: "magnetic field strength (ampere per metre)",
0x271A: "amount concentration (mole per cubic metre)",
0x271B: "mass concentration (kilogram per cubic metre)",
0x271C: "luminance (candela per square metre)",
0x271D: "refractive index",
0x271E: "relative permeability",
0x2720: "plane angle (radian)",
0x2721: "solid angle (steradian)",
0x2722: "frequency (hertz)",
0x2723: "force (newton)",
0x2724: "pressure (pascal)",
0x2725: "energy (joule)",
0x2726: "power (watt)",
0x2727: "electric charge (coulomb)",
0x2728: "electric potential difference (volt)",
0x2729: "capacitance (farad)",
0x272A: "electric resistance (ohm)",
0x272B: "electric conductance (siemens)",
0x272C: "magnetic flux (weber)",
0x272D: "magnetic flux density (tesla)",
0x272E: "inductance (henry)",
0x272F: "Celsius temperature (degree Celsius)",
0x2730: "luminous flux (lumen)",
0x2731: "illuminance (lux)",
0x2732: "activity referred to a radionuclide (becquerel)",
0x2733: "absorbed dose (gray)",
0x2734: "dose equivalent (sievert)",
0x2735: "catalytic activity (katal)",
0x2740: "dynamic viscosity (pascal second)",
0x2741: "moment of force (newton metre)",
0x2742: "surface tension (newton per metre)",
0x2743: "angular velocity (radian per second)",
0x2744: "angular acceleration (radian per second squared)",
0x2745: "heat flux density (watt per square metre)",
0x2746: "heat capacity (joule per kelvin)",
0x2747: "specific heat capacity (joule per kilogram kelvin)",
0x2748: "specific energy (joule per kilogram)",
0x2749: "thermal conductivity (watt per metre kelvin)",
0x274A: "energy density (joule per cubic metre)",
0x274B: "electric field strength (volt per metre)",
0x274C: "electric charge density (coulomb per cubic metre)",
0x274D: "surface charge density (coulomb per square metre)",
0x274E: "electric flux density (coulomb per square metre)",
0x274F: "permittivity (farad per metre)",
0x2750: "permeability (henry per metre)",
0x2751: "molar energy (joule per mole)",
0x2752: "molar entropy (joule per mole kelvin)",
0x2753: "exposure (coulomb per kilogram)",
0x2754: "absorbed dose rate (gray per second)",
0x2755: "radiant intensity (watt per steradian)",
0x2756: "radiance (watt per square metre steradian)",
0x2757: "catalytic activity concentration (katal per cubic metre)",
0x2760: "time (minute)",
0x2761: "time (hour)",
0x2762: "time (day)",
0x2763: "plane angle (degree)",
0x2764: "plane angle (minute)",
0x2765: "plane angle (second)",
0x2766: "area (hectare)",
0x2767: "volume (litre)",
0x2768: "mass (tonne)",
0x2780: "pressure (bar)",
0x2781: "pressure (millimetre of mercury)",
0x2782: "length (ångström)",
0x2783: "length (nautical mile)",
0x2784: "area (barn)",
0x2785: "velocity (knot)",
0x2786: "logarithmic radio quantity (neper)",
0x2787: "logarithmic radio quantity (bel)",
0x27A0: "length (yard)",
0x27A1: "length (parsec)",
0x27A2: "length (inch)",
0x27A3: "length (foot)",
0x27A4: "length (mile)",
0x27A5: "pressure (pound-force per square inch)",
0x27A6: "velocity (kilometre per hour)",
0x27A7: "velocity (mile per hour)",
0x27A8: "angular velocity (revolution per minute)",
0x27A9: "energy (gram calorie)",
0x27AA: "energy (kilogram calorie)",
0x27AB: "energy (kilowatt hour)",
0x27AC: "thermodynamic temperature (degree Fahrenheit)",
0x27AD: "percentage",
0x27AE: "per mille",
0x27AF: "period (beats per minute)",
0x27B0: "electric charge (ampere hours)",
0x27B1: "mass density (milligram per decilitre)",
0x27B2: "mass density (millimole per litre)",
0x27B3: "time (year)",
0x27B4: "time (month)",
0x27B5: "concentration (count per cubic metre)",
0x27B6: "irradiance (watt per square metre)",
0x27B7: "milliliter (per kilogram per minute)",
0x27B8: "mass (pound)",
0x27B9: "metabolic equivalent",
0x27BA: "step (per minute)",
0x27BC: "stroke (per minute)",
0x27BD: "pace (kilometre per minute)",
0x27BE: "luminous efficacy (lumen per watt)",
0x27BF: "luminous energy (lumen hour)",
0x27C0: "luminous exposure (lux hour)",
0x27C1: "mass flow (gram per second)",
0x27C2: "volume flow (litre per second)",
0x27C3: "sound pressure (decible)",
0x27C4: "parts per million",
0x27C5: "parts per billion",
0x2800: "Primary Service",
0x2801: "Secondary Service",
0x2802: "Include",
0x2803: "Characteristic",
# 0x2804 to 0x28ff undefined */
# Descriptors (SIG)
0x2900: "Characteristic Extended Properties",
0x2901: "Characteristic User Description",
0x2902: "Client Characteristic Configuration",
0x2903: "Server Characteristic Configuration",
0x2904: "Characteristic Presentation Format",
0x2905: "Characteristic Aggregate Format",
0x2906: "Valid Range",
0x2907: "External Report Reference",
0x2908: "Report Reference",
0x2909: "Number of Digitals",
0x290A: "Value Trigger Setting",
0x290B: "Environmental Sensing Configuration",
0x290C: "Environmental Sensing Measurement",
0x290D: "Environmental Sensing Trigger Setting",
0x290E: "Time Trigger Setting",
0x290F: "Complete BR-EDR Transport Block Data",
# 0x2910 to 0x29ff undefined */
# 0x2a00.. GATT characteristic and Object Types
0x2A00: "Device Name",
0x2A01: "Appearance",
0x2A02: "Peripheral Privacy Flag",
0x2A03: "Reconnection Address",
0x2A04: "Peripheral Preferred Connection Parameters",
0x2A05: "Service Changed",
0x2A06: "Alert Level",
0x2A07: "Tx Power Level",
0x2A08: "Date Time",
0x2A09: "Day of Week",
0x2A0A: "Day Date Time",
0x2A0B: "Exact Time 100",
0x2A0C: "Exact Time 256",
0x2A0D: "DST Offset",
0x2A0E: "Time Zone",
0x2A0F: "Local Time Information",
0x2A10: "Secondary Time Zone",
0x2A11: "Time with DST",
0x2A12: "Time Accuracy",
0x2A13: "Time Source",
0x2A14: "Reference Time Information",
0x2A15: "Time Broadcast",
0x2A16: "Time Update Control Point",
0x2A17: "Time Update State",
0x2A18: "Glucose Measurement",
0x2A19: "Battery Level",
0x2A1A: "Battery Power State",
0x2A1B: "Battery Level State",
0x2A1C: "Temperature Measurement",
0x2A1D: "Temperature Type",
0x2A1E: "Intermediate Temperature",
0x2A1F: "Temperature Celsius",
0x2A20: "Temperature Fahrenheit",
0x2A21: "Measurement Interval",
0x2A22: "Boot Keyboard Input Report",
0x2A23: "System ID",
0x2A24: "Model Number String",
0x2A25: "Serial Number String",
0x2A26: "Firmware Revision String",
0x2A27: "Hardware Revision String",
0x2A28: "Software Revision String",
0x2A29: "Manufacturer Name String",
0x2A2A: "IEEE 11073-20601 Regulatory Cert. Data List",
0x2A2B: "Current Time",
0x2A2C: "Magnetic Declination",
# 0x2a2d to 0x2a2e undefined */
0x2A2F: "Position 2D",
0x2A30: "Position 3D",
0x2A31: "Scan Refresh",
0x2A32: "Boot Keyboard Output Report",
0x2A33: "Boot Mouse Input Report",
0x2A34: "Glucose Measurement Context",
0x2A35: "Blood Pressure Measurement",
0x2A36: "Intermediate Cuff Pressure",
0x2A37: "Heart Rate Measurement",
0x2A38: "Body Sensor Location",
0x2A39: "Heart Rate Control Point",
0x2A3A: "Removable",
0x2A3B: "Service Required",
0x2A3C: "Scientific Temperature Celsius",
0x2A3D: "String",
0x2A3E: "Network Availability",
0x2A3F: "Alert Status",
0x2A40: "Ringer Control Point",
0x2A41: "Ringer Setting",
0x2A42: "Alert Category ID Bit Mask",
0x2A43: "Alert Category ID",
0x2A44: "Alert Notification Control Point",
0x2A45: "Unread Alert Status",
0x2A46: "New Alert",
0x2A47: "Supported New Alert Category",
0x2A48: "Supported Unread Alert Category",
0x2A49: "Blood Pressure Feature",
0x2A4A: "HID Information",
0x2A4B: "Report Map",
0x2A4C: "HID Control Point",
0x2A4D: "Report",
0x2A4E: "Protocol Mode",
0x2A4F: "Scan Interval Window",
0x2A50: "PnP ID",
0x2A51: "Glucose Feature",
0x2A52: "Record Access Control Point",
0x2A53: "RSC Measurement",
0x2A54: "RSC Feature",
0x2A55: "SC Control Point",
0x2A56: "Digital",
0x2A57: "Digital Output",
0x2A58: "Analog",
0x2A59: "Analog Output",
0x2A5A: "Aggregate",
0x2A5B: "CSC Measurement",
0x2A5C: "CSC Feature",
0x2A5D: "Sensor Location",
0x2A5E: "PLX Spot-Check Measurement",
0x2A5F: "PLX Continuous Measurement Characteristic",
0x2A60: "PLX Features",
0x2A62: "Pulse Oximetry Control Point",
0x2A63: "Cycling Power Measurement",
0x2A64: "Cycling Power Vector",
0x2A65: "Cycling Power Feature",
0x2A66: "Cycling Power Control Point",
0x2A67: "Location and Speed",
0x2A68: "Navigation",
0x2A69: "Position Quality",
0x2A6A: "LN Feature",
0x2A6B: "LN Control Point",
0x2A6C: "Elevation",
0x2A6D: "Pressure",
0x2A6E: "Temperature",
0x2A6F: "Humidity",
0x2A70: "True Wind Speed",
0x2A71: "True Wind Direction",
0x2A72: "Apparent Wind Speed",
0x2A73: "Apparent Wind Direction",
0x2A74: "Gust Factor",
0x2A75: "Pollen Concentration",
0x2A76: "UV Index",
0x2A77: "Irradiance",
0x2A78: "Rainfall",
0x2A79: "Wind Chill",
0x2A7A: "Heat Index",
0x2A7B: "Dew Point",
0x2A7C: "Trend",
0x2A7D: "Descriptor Value Changed",
0x2A7E: "Aerobic Heart Rate Lower Limit",
0x2A7F: "Aerobic Threshold",
0x2A80: "Age",
0x2A81: "Anaerobic Heart Rate Lower Limit",
0x2A82: "Anaerobic Heart Rate Upper Limit",
0x2A83: "Anaerobic Threshold",
0x2A84: "Aerobic Heart Rate Upper Limit",
0x2A85: "Date of Birth",
0x2A86: "Date of Threshold Assessment",
0x2A87: "Email Address",
0x2A88: "Fat Burn Heart Rate Lower Limit",
0x2A89: "Fat Burn Heart Rate Upper Limit",
0x2A8A: "First Name",
0x2A8B: "Five Zone Heart Rate Limits",
0x2A8C: "Gender",
0x2A8D: "Heart Rate Max",
0x2A8E: "Height",
0x2A8F: "Hip Circumference",
0x2A90: "Last Name",
0x2A91: "Maximum Recommended Heart Rate",
0x2A92: "Resting Heart Rate",
0x2A93: "Sport Type for Aerobic/Anaerobic Thresholds",
0x2A94: "Three Zone Heart Rate Limits",
0x2A95: "Two Zone Heart Rate Limit",
0x2A96: "VO2 Max",
0x2A97: "Waist Circumference",
0x2A98: "Weight",
0x2A99: "Database Change Increment",
0x2A9A: "User Index",
0x2A9B: "Body Composition Feature",
0x2A9C: "Body Composition Measurement",
0x2A9D: "Weight Measurement",
0x2A9E: "Weight Scale Feature",
0x2A9F: "User Control Point",
0x2AA0: "Magnetic Flux Density - 2D",
0x2AA1: "Magnetic Flux Density - 3D",
0x2AA2: "Language",
0x2AA3: "Barometric Pressure Trend",
0x2AA4: "Bond Management Control Point",
0x2AA5: "Bond Management Feature",
0x2AA6: "Central Address Resolution",
0x2AA7: "CGM Measurement",
0x2AA8: "CGM Feature",
0x2AA9: "CGM Status",
0x2AAA: "CGM Session Start Time",
0x2AAB: "CGM Session Run Time",
0x2AAC: "CGM Specific Ops Control Point",
0x2AAD: "Indoor Positioning Configuration",
0x2AAE: "Latitude",
0x2AAF: "Longitude",
0x2AB0: "Local North Coordinate",
0x2AB1: "Local East Coordinate",
0x2AB2: "Floor Number",
0x2AB3: "Altitude",
0x2AB4: "Uncertainty",
0x2AB5: "Location Name",
0x2AB6: "URI",
0x2AB7: "HTTP Headers",
0x2AB8: "HTTP Status Code",
0x2AB9: "HTTP Entity Body",
0x2ABA: "HTTP Control Point",
0x2ABB: "HTTPS Security",
0x2ABC: "TDS Control Point",
0x2ABD: "OTS Feature",
0x2ABE: "Object Name",
0x2ABF: "Object Type",
0x2AC0: "Object Size",
0x2AC1: "Object First-Created",
0x2AC2: "Object Last-Modified",
0x2AC3: "Object ID",
0x2AC4: "Object Properties",
0x2AC5: "Object Action Control Point",
0x2AC6: "Object List Control Point",
0x2AC7: "Object List Filter",
0x2AC8: "Object Changed",
0x2AC9: "Resolvable Private Address Only",
# 0x2aca and 0x2acb undefined */
0x2ACC: "Fitness Machine Feature",
0x2ACD: "Treadmill Data",
0x2ACE: "Cross Trainer Data",
0x2ACF: "Step Climber Data",
0x2AD0: "Stair Climber Data",
0x2AD1: "Rower Data",
0x2AD2: "Indoor Bike Data",
0x2AD3: "Training Status",
0x2AD4: "Supported Speed Range",
0x2AD5: "Supported Inclination Range",
0x2AD6: "Supported Resistance Level Range",
0x2AD7: "Supported Heart Rate Range",
0x2AD8: "Supported Power Range",
0x2AD9: "Fitness Machine Control Point",
0x2ADA: "Fitness Machine Status",
0x2ADB: "Mesh Provisioning Data In",
0x2ADC: "Mesh Provisioning Data Out",
0x2ADD: "Mesh Proxy Data In",
0x2ADE: "Mesh Proxy Data Out",
0x2AE0: "Average Current",
0x2AE1: "Average Voltage",
0x2AE2: "Boolean",
0x2AE3: "Chromatic Distance From Planckian",
0x2AE4: "Chromaticity Coordinates",
0x2AE5: "Chromaticity In CCT And Duv Values",
0x2AE6: "Chromaticity Tolerance",
0x2AE7: "CIE 13.3-1995 Color Rendering Index",
0x2AE8: "Coefficient",
0x2AE9: "Correlated Color Temperature",
0x2AEA: "Count 16",
0x2AEB: "Count 24",
0x2AEC: "Country Code",
0x2AED: "Date UTC",
0x2AEE: "Electric Current",
0x2AEF: "Electric Current Range",
0x2AF0: "Electric Current Specification",
0x2AF1: "Electric Current Statistics",
0x2AF2: "Energy",
0x2AF3: "Energy In A Period Of Day",
0x2AF4: "Event Statistics",
0x2AF5: "Fixed String 16",
0x2AF6: "Fixed String 24",
0x2AF7: "Fixed String 36",
0x2AF8: "Fixed String 8",
0x2AF9: "Generic Level",
0x2AFA: "Global Trade Item Number",
0x2AFB: "Illuminance",
0x2AFC: "Luminous Efficacy",
0x2AFD: "Luminous Energy",
0x2AFE: "Luminous Exposure",
0x2AFF: "Luminous Flux",
0x2B00: "Luminous Flux Range",
0x2B01: "Luminous Intensity",
0x2B02: "Mass Flow",
0x2B03: "Perceived Lightness",
0x2B04: "Percentage 8",
0x2B05: "Power",
0x2B06: "Power Specification",
0x2B07: "Relative Runtime In A Current Range",
0x2B08: "Relative Runtime In A Generic Level Range",
0x2B09: "Relative Value In A Voltage Range",
0x2B0A: "Relative Value In An Illuminance Range",
0x2B0B: "Relative Value In A Period of Day",
0x2B0C: "Relative Value In A Temperature Range",
0x2B0D: "Temperature 8",
0x2B0E: "Temperature 8 In A Period Of Day",
0x2B0F: "Temperature 8 Statistics",
0x2B10: "Temperature Range",
0x2B11: "Temperature Statistics",
0x2B12: "Time Decihour 8",
0x2B13: "Time Exponential 8",
0x2B14: "Time Hour 24",
0x2B15: "Time Millisecond 24",
0x2B16: "Time Second 16",
0x2B17: "Time Second 8",
0x2B18: "Voltage",
0x2B19: "Voltage Specification",
0x2B1A: "Voltage Statistics",
0x2B1B: "Volume Flow",
0x2B1C: "Chromaticity Coordinate",
0x2B1D: "RC Feature",
0x2B1E: "RC Settings",
0x2B1F: "Reconnection Configuration Control Point",
0x2B20: "IDD Status Changed",
0x2B21: "IDD Status",
0x2B22: "IDD Annunciation Status",
0x2B23: "IDD Features",
0x2B24: "IDD Status Reader Control Point",
0x2B25: "IDD Command Control Point",
0x2B26: "IDD Command Data",
0x2B27: "IDD Record Access Control Point",
0x2B28: "IDD History Data",
0x2B29: "Client Supported Features",
0x2B2A: "Database Hash",
0x2B2B: "BSS Control Point",
0x2B2C: "BSS Response",
0x2B2D: "Emergency ID",
0x2B2E: "Emergency Text",
0x2B34: "Enhanced Blood Pressure Measurement",
0x2B35: "Enhanced Intermediate Cuff Pressure",
0x2B36: "Blood Pressure Record",
# 0x2B37 undefined
0x2B38: "BR-EDR Handover Data",
0x2B39: "Bluetooth SIG Data",
0x2B3A: "Server Supported Features",
0x2B3B: "Physical Activity Monitor Features",
0x2B3C: "General Activity Instantaneous Data",
0x2B3D: "General Activity Summary Data",
0x2B3E: "CardioRespiratory Activity Instantaneous Data",
0x2B3F: "CardioRespiratory Activity Summary Data",
0x2B40: "Step Counter Activity Summary Data",
0x2B41: "Sleep Activity Instantaneous Data",
0x2B42: "Sleep Activity Summary Data",
0x2B43: "Physical Activity Monitor Control Point",
0x2B44: "Current Session",
0x2B45: "Session",
0x2B46: "Preferred Units",
0x2B47: "High Resolution Height",
0x2B48: "Middle Name",
0x2B49: "Stride Length",
0x2B4A: "Handedness",
0x2B4B: "Device Wearing Position",
0x2B4C: "Four Zone Heart Rate Limits",
0x2B4D: "High Intensity Exercise Threshold",
0x2B4E: "Activity Goal",
0x2B4F: "Sedentary Interval Notification",
0x2B50: "Caloric Intake",
0x2B77: "Audio Input State",
0x2B78: "Gain Settings Attribute",
0x2B79: "Audio Input Type",
0x2B7A: "Audio Input Status",
0x2B7B: "Audio Input Control Point",
0x2B7C: "Audio Input Description",
0x2B7D: "Volume State",
0x2B7E: "Volume Control Point",
0x2B7F: "Volume Flags",
0x2B80: "Offset State",
0x2B81: "Audio Location",
0x2B82: "Volume Offset Control Point",
0x2B83: "Audio Output Description",
0x2B84: "Set Identity Resolving Key Characteristic",
0x2B85: "Size Characteristic",
0x2B86: "Lock Characteristic",
0x2B87: "Rank Characteristic",
0x2B8E: "Device Time Feature",
0x2B8F: "Device Time Parameters",
0x2B90: "Device Time",
0x2B91: "Device Time Control Point",
0x2B92: "Time Change Log Data",
0x2B93: "Media Player Name",
0x2B94: "Media Player Icon Object ID",
0x2B95: "Media Player Icon URL",
0x2B96: "Track Changed",
0x2B97: "Track Title",
0x2B98: "Track Duration",
0x2B99: "Track Position",
0x2B9A: "Playback Speed",
0x2B9B: "Seeking Speed",
0x2B9C: "Current Track Segments Object ID",
0x2B9D: "Current Track Object ID",
0x2B9E: "Next Track Object ID",
0x2B9F: "Parent Group Object ID",
0x2BA0: "Current Group Object ID",
0x2BA1: "Playing Order",
0x2BA2: "Playing Orders Supported",
0x2BA3: "Media State",
0x2BA4: "Media Control Point",
0x2BA5: "Media Control Point Opcodes Supported",
0x2BA6: "Search Results Object ID",
0x2BA7: "Search Control Point",
0x2BA9: "Media Player Icon Object Type",
0x2BAA: "Track Segments Object Type",
0x2BAB: "Track Object Type",
0x2BAC: "Group Object Type",
0x2BAD: "Constant Tone Extension Enable",
0x2BAE: "Advertising Constant Tone Extension Minimum Length",
0x2BAF: "Advertising Constant Tone Extension Minimum Transmit Count",
0x2BB0: "Advertising Constant Tone Extension Transmit Duration",
0x2BB1: "Advertising Constant Tone Extension Interval",
0x2BB2: "Advertising Constant Tone Extension PHY",
0x2BB3: "Bearer Provider Name",
0x2BB4: "Bearer UCI",
0x2BB5: "Bearer Technology",
0x2BB6: "Bearer URI Schemes Supported List",
0x2BB7: "Bearer Signal Strength",
0x2BB8: "Bearer Signal Strength Reporting Interval",
0x2BB9: "Bearer List Current Calls",
0x2BBA: "Content Control ID",
0x2BBB: "Status Flags",
0x2BBC: "Incoming Call Target Bearer URI",
0x2BBD: "Call State",
0x2BBE: "Call Control Point",
0x2BBF: "Call Control Point Optional Opcodes",
0x2BC0: "Termination Reason",
0x2BC1: "Incoming Call",
0x2BC2: "Call Friendly Name",
0x2BC3: "Mute",
0x2BC4: "Sink ASE",
0x2BC5: "Source ASE",
0x2BC6: "ASE Control Point",
0x2BC7: "Broadcast Audio Scan Control Point",
0x2BC8: "Broadcast Receive State",
0x2BC9: "Sink PAC",
0x2BCA: "Sink Audio Locations",
0x2BCB: "Source PAC",
0x2BCC: "Source Audio Locations",
0x2BCD: "Available Audio Contexts",
0x2BCE: "Supported Audio Contexts",
0x2BCF: "Ammonia Concentration",
0x2BD0: "Carbon Monoxide Concentration",
0x2BD1: "Methane Concentration",
0x2BD2: "Nitrogen Dioxide Concentration",
0x2BD3: "Non-Methane Volatile Organic Compounds Concentration",
0x2BD4: "Ozone Concentration",
0x2BD5: "Particulate Matter - PM1 Concentration",
0x2BD6: "Particulate Matter - PM2.5 Concentration",
0x2BD7: "Particulate Matter - PM10 Concentration",
0x2BD8: "Sulfur Dioxide Concentration",
0x2BD9: "Sulfur Hexafluoride Concentration",
0xFE1C: "NetMedia: Inc.",
0xFE1D: "Illuminati Instrument Corporation",
0xFE1E: "Smart Innovations Co.: Ltd",
0xFE1F: "Garmin International: Inc.",
0xFE20: "Emerson",
0xFE21: "Bose Corporation",
0xFE22: "Zoll Medical Corporation",
0xFE23: "Zoll Medical Corporation",
0xFE24: "August Home Inc",
0xFE25: "Apple: Inc.",
0xFE26: "Google Inc.",
0xFE27: "Google Inc.",
0xFE28: "Ayla Network",
0xFE29: "Gibson Innovations",
0xFE2A: "DaisyWorks: Inc.",
0xFE2B: "ITT Industries",
0xFE2C: "Google Inc.",
0xFE2D: "SMART INNOVATION Co.,Ltd",
0xFE2E: "ERi,Inc.",
0xFE2F: "CRESCO Wireless: Inc",
0xFE30: "Volkswagen AG",
0xFE31: "Volkswagen AG",
0xFE32: "Pro-Mark: Inc.",
0xFE33: "CHIPOLO d.o.o.",
0xFE34: "SmallLoop LLC",
0xFE35: "HUAWEI Technologies Co.: Ltd",
0xFE36: "HUAWEI Technologies Co.: Ltd",
0xFE37: "Spaceek LTD",
0xFE38: "Spaceek LTD",
0xFE39: "TTS Tooltechnic Systems AG & Co. KG",
0xFE3A: "TTS Tooltechnic Systems AG & Co. KG",
0xFE3B: "Dolby Laboratories",
0xFE3C: "Alibaba",
0xFE3D: "BD Medical",
0xFE3E: "BD Medical",
0xFE3F: "Friday Labs Limited",
0xFE40: "Inugo Systems Limited",
0xFE41: "Inugo Systems Limited",
0xFE42: "Nets A/S",
0xFE43: "Andreas Stihl AG & Co. KG",
0xFE44: "SK Telecom",
0xFE45: "Snapchat Inc",
0xFE46: "B&O Play A/S",
0xFE47: "General Motors",
0xFE48: "General Motors",
0xFE49: "SenionLab AB",
0xFE4A: "OMRON HEALTHCARE Co.: Ltd.",
0xFE4B: "Koninklijke Philips N.V.",
0xFE4C: "Volkswagen AG",
0xFE4D: "Casambi Technologies Oy",
0xFE4E: "NTT docomo",
0xFE4F: "Molekule: Inc.",
0xFE50: "Google Inc.",
0xFE51: "SRAM",
0xFE52: "SetPoint Medical",
0xFE53: "3M",
0xFE54: "Motiv: Inc.",
0xFE55: "Google Inc.",
0xFE56: "Google Inc.",
0xFE57: "Dotted Labs",
0xFE58: "Nordic Semiconductor ASA",
0xFE59: "Nordic Semiconductor ASA",
0xFE5A: "Chronologics Corporation",
0xFE5B: "GT-tronics HK Ltd",
0xFE5C: "million hunters GmbH",
0xFE5D: "Grundfos A/S",
0xFE5E: "Plastc Corporation",
0xFE5F: "Eyefi: Inc.",
0xFE60: "Lierda Science & Technology Group Co.: Ltd.",
0xFE61: "Logitech International SA",
0xFE62: "Indagem Tech LLC",
0xFE63: "Connected Yard: Inc.",
0xFE64: "Siemens AG",
0xFE65: "CHIPOLO d.o.o.",
0xFE66: "Intel Corporation",
0xFE67: "Lab Sensor Solutions",
0xFE68: "Qualcomm Life Inc",
0xFE69: "Qualcomm Life Inc",
0xFE6A: "Kontakt Micro-Location Sp. z o.o.",
0xFE6B: "TASER International: Inc.",
0xFE6C: "TASER International: Inc.",
0xFE6D: "The University of Tokyo",
0xFE6E: "The University of Tokyo",
0xFE6F: "LINE Corporation",
0xFE70: "Beijing Jingdong Century Trading Co.: Ltd.",
0xFE71: "Plume Design Inc",
0xFE72: "St. Jude Medical: Inc.",
0xFE73: "St. Jude Medical: Inc.",
0xFE74: "unwire",
0xFE75: "TangoMe",
0xFE76: "TangoMe",
0xFE77: "Hewlett-Packard Company",
0xFE78: "Hewlett-Packard Company",
0xFE79: "Zebra Technologies",
0xFE7A: "Bragi GmbH",
0xFE7B: "Orion Labs: Inc.",
0xFE7C: "Stollmann E+V GmbH",
0xFE7D: "Aterica Health Inc.",
0xFE7E: "Awear Solutions Ltd",
0xFE7F: "Doppler Lab",
0xFE80: "Doppler Lab",
0xFE81: "Medtronic Inc.",
0xFE82: "Medtronic Inc.",
0xFE83: "Blue Bite",
0xFE84: "RF Digital Corp",
0xFE85: "RF Digital Corp",
0xFE86: "HUAWEI Technologies Co.: Ltd.",
0xFE87: "Qingdao Yeelink Information Technology Co.: Ltd.",
0xFE88: "SALTO SYSTEMS S.L.",
0xFE89: "B&O Play A/S",
0xFE8A: "Apple: Inc.",
0xFE8B: "Apple: Inc.",
0xFE8C: "TRON Forum",
0xFE8D: "Interaxon Inc.",
0xFE8E: "ARM Ltd",
0xFE8F: "CSR",
0xFE90: "JUMA",
0xFE91: "Shanghai Imilab Technology Co.,Ltd",
0xFE92: "Jarden Safety & Security",
0xFE93: "OttoQ Inc.",
0xFE94: "OttoQ Inc.",
0xFE95: "Xiaomi Inc.",
0xFE96: "Tesla Motor Inc.",
0xFE97: "Tesla Motor Inc.",
0xFE98: "Currant: Inc.",
0xFE99: "Currant: Inc.",
0xFE9A: "Estimote",
0xFE9B: "Samsara Networks: Inc",
0xFE9C: "GSI Laboratories: Inc.",
0xFE9D: "Mobiquity Networks Inc",
0xFE9E: "Dialog Semiconductor B.V.",
0xFE9F: "Google",
0xFEA0: "Google",
0xFEA1: "Intrepid Control Systems: Inc.",
0xFEA2: "Intrepid Control Systems: Inc.",
0xFEA3: "ITT Industries",
0xFEA4: "Paxton Access Ltd",
0xFEA5: "GoPro: Inc.",
0xFEA6: "GoPro: Inc.",
0xFEA7: "UTC Fire and Security",
0xFEA8: "Savant Systems LLC",
0xFEA9: "Savant Systems LLC",
0xFEAA: "Google",
0xFEAB: "Nokia Corporation",
0xFEAC: "Nokia Corporation",
0xFEAD: "Nokia Corporation",
0xFEAE: "Nokia Corporation",
0xFEAF: "Nest Labs Inc.",
0xFEB0: "Nest Labs Inc.",
0xFEB1: "Electronics Tomorrow Limited",
0xFEB2: "Microsoft Corporation",
0xFEB3: "Taobao",
0xFEB4: "WiSilica Inc.",
0xFEB5: "WiSilica Inc.",
0xFEB6: "Vencer Co: Ltd",
0xFEB7: "Facebook: Inc.",
0xFEB8: "Facebook: Inc.",
0xFEB9: "LG Electronics",
0xFEBA: "Tencent Holdings Limited",
0xFEBB: "adafruit industries",
0xFEBC: "Dexcom: Inc.",
0xFEBD: "Clover Network: Inc.",
0xFEBE: "Bose Corporation",
0xFEBF: "Nod: Inc.",
0xFEC0: "KDDI Corporation",
0xFEC1: "KDDI Corporation",
0xFEC2: "Blue Spark Technologies: Inc.",
0xFEC3: "360fly: Inc.",
0xFEC4: "PLUS Location Systems",
0xFEC5: "Realtek Semiconductor Corp.",
0xFEC6: "Kocomojo: LLC",
0xFEC7: "Apple: Inc.",
0xFEC8: "Apple: Inc.",
0xFEC9: "Apple: Inc.",
0xFECA: "Apple: Inc.",
0xFECB: "Apple: Inc.",
0xFECC: "Apple: Inc.",
0xFECD: "Apple: Inc.",
0xFECE: "Apple: Inc.",
0xFECF: "Apple: Inc.",
0xFED0: "Apple: Inc.",
0xFED1: "Apple: Inc.",
0xFED2: "Apple: Inc.",
0xFED3: "Apple: Inc.",
0xFED4: "Apple: Inc.",
0xFED5: "Plantronics Inc.",
0xFED6: "Broadcom Corporation",
0xFED7: "Broadcom Corporation",
0xFED8: "Google",
0xFED9: "Pebble Technology Corporation",
0xFEDA: "ISSC Technologies Corporation",
0xFEDB: "Perka: Inc.",
0xFEDC: "Jawbone",
0xFEDD: "Jawbone",
0xFEDE: "Coin: Inc.",
0xFEDF: "Design SHIFT",
0xFEE0: "Anhui Huami Information Technology Co.",
0xFEE1: "Anhui Huami Information Technology Co.",
0xFEE2: "Anki: Inc.",
0xFEE3: "Anki: Inc.",
0xFEE4: "Nordic Semiconductor ASA",
0xFEE5: "Nordic Semiconductor ASA",
0xFEE6: "Seed Labs: Inc.",
0xFEE7: "Tencent Holdings Limited",
0xFEE8: "Quintic Corp.",
0xFEE9: "Quintic Corp.",
0xFEEA: "Swirl Networks: Inc.",
0xFEEB: "Swirl Networks: Inc.",
0xFEEC: "Tile: Inc.",
0xFEED: "Tile: Inc.",
0xFEEE: "Polar Electro Oy",
0xFEEF: "Polar Electro Oy",
0xFEF0: "Intel",
0xFEF1: "CSR",
0xFEF2: "CSR",
0xFEF3: "Google",
0xFEF4: "Google",
0xFEF5: "Dialog Semiconductor GmbH",
0xFEF6: "Wicentric: Inc.",
0xFEF7: "Aplix Corporation",
0xFEF8: "Aplix Corporation",
0xFEF9: "PayPal: Inc.",
0xFEFA: "PayPal: Inc.",
0xFEFB: "Stollmann E+V GmbH",
0xFEFC: "Gimbal: Inc.",
0xFEFD: "Gimbal: Inc.",
0xFEFE: "GN ReSound A/S",
0xFEFF: "GN Netcom",
0xFFFC: "AirFuel Alliance",
0xFFFD: "Fast IDentity Online Alliance (FIDO)",
0xFFFE: "Alliance for Wireless Power (A4WP)",
}
uuid128_dict = {
"a3c87500-8ed3-4bdf-8a39-a01bebede295": "Eddystone Configuration Service",
"a3c87501-8ed3-4bdf-8a39-a01bebede295": "Capabilities",
"a3c87502-8ed3-4bdf-8a39-a01bebede295": "Active Slot",
"a3c87503-8ed3-4bdf-8a39-a01bebede295": "Advertising Interval",
"a3c87504-8ed3-4bdf-8a39-a01bebede295": "Radio Tx Power",
"a3c87505-8ed3-4bdf-8a39-a01bebede295": "(Advanced) Advertised Tx Power",
"a3c87506-8ed3-4bdf-8a39-a01bebede295": "Lock State",
"a3c87507-8ed3-4bdf-8a39-a01bebede295": "Unlock",
"a3c87508-8ed3-4bdf-8a39-a01bebede295": "Public ECDH Key",
"a3c87509-8ed3-4bdf-8a39-a01bebede295": "EID Identity Key",
"a3c8750a-8ed3-4bdf-8a39-a01bebede295": "ADV Slot Data",
"a3c8750b-8ed3-4bdf-8a39-a01bebede295": "(Advanced) Factory reset",
"a3c8750c-8ed3-4bdf-8a39-a01bebede295": "(Advanced) Remain Connectable",
# BBC micro:bit Bluetooth Profiles */
"e95d0753-251d-470a-a062-fa1922dfa9a8": "MicroBit Accelerometer Service",
"e95dca4b-251d-470a-a062-fa1922dfa9a8": "MicroBit Accelerometer Data",
"e95dfb24-251d-470a-a062-fa1922dfa9a8": "MicroBit Accelerometer Period",
"e95df2d8-251d-470a-a062-fa1922dfa9a8": "MicroBit Magnetometer Service",
"e95dfb11-251d-470a-a062-fa1922dfa9a8": "MicroBit Magnetometer Data",
"e95d386c-251d-470a-a062-fa1922dfa9a8": "MicroBit Magnetometer Period",
"e95d9715-251d-470a-a062-fa1922dfa9a8": "MicroBit Magnetometer Bearing",
"e95d9882-251d-470a-a062-fa1922dfa9a8": "MicroBit Button Service",
"e95dda90-251d-470a-a062-fa1922dfa9a8": "MicroBit Button A State",
"e95dda91-251d-470a-a062-fa1922dfa9a8": "MicroBit Button B State",
"e95d127b-251d-470a-a062-fa1922dfa9a8": "MicroBit IO PIN Service",
"e95d8d00-251d-470a-a062-fa1922dfa9a8": "MicroBit PIN Data",
"e95d5899-251d-470a-a062-fa1922dfa9a8": "MicroBit PIN AD Configuration",