btuuid 0.1.1

Bluetooth UUID values
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
//! UUIDs for the characteristic module.

// This file is auto-generated by the update_uuids application.
// Based on https://bitbucket.org/bluetooth-SIG/public.git
// Commit hash: 8c192a8effd1574d0c83e72ad91407511bcad209

use super::BluetoothUuid16;

/// Bluetooth characteristic UUID.
///
/// `0x2a00` Device Name
pub const DEVICE_NAME: BluetoothUuid16 = BluetoothUuid16::new(0x2a00);

/// Bluetooth characteristic UUID.
///
/// `0x2a01` Appearance
pub const APPEARANCE: BluetoothUuid16 = BluetoothUuid16::new(0x2a01);

/// Bluetooth characteristic UUID.
///
/// `0x2a02` Peripheral Privacy Flag
pub const PERIPHERAL_PRIVACY_FLAG: BluetoothUuid16 = BluetoothUuid16::new(0x2a02);

/// Bluetooth characteristic UUID.
///
/// `0x2a03` Reconnection Address
pub const RECONNECTION_ADDRESS: BluetoothUuid16 = BluetoothUuid16::new(0x2a03);

/// Bluetooth characteristic UUID.
///
/// `0x2a04` Peripheral Preferred Connection Parameters
pub const PERIPHERAL_PREFERRED_CONNECTION_PARAMETERS: BluetoothUuid16 = BluetoothUuid16::new(0x2a04);

/// Bluetooth characteristic UUID.
///
/// `0x2a05` Service Changed
pub const SERVICE_CHANGED: BluetoothUuid16 = BluetoothUuid16::new(0x2a05);

/// Bluetooth characteristic UUID.
///
/// `0x2a06` Alert Level
pub const ALERT_LEVEL: BluetoothUuid16 = BluetoothUuid16::new(0x2a06);

/// Bluetooth characteristic UUID.
///
/// `0x2a07` Tx Power Level
pub const TX_POWER_LEVEL: BluetoothUuid16 = BluetoothUuid16::new(0x2a07);

/// Bluetooth characteristic UUID.
///
/// `0x2a08` Date Time
pub const DATE_TIME: BluetoothUuid16 = BluetoothUuid16::new(0x2a08);

/// Bluetooth characteristic UUID.
///
/// `0x2a09` Day of Week
pub const DAY_OF_WEEK: BluetoothUuid16 = BluetoothUuid16::new(0x2a09);

/// Bluetooth characteristic UUID.
///
/// `0x2a0a` Day Date Time
pub const DAY_DATE_TIME: BluetoothUuid16 = BluetoothUuid16::new(0x2a0a);

/// Bluetooth characteristic UUID.
///
/// `0x2a0c` Exact Time 256
pub const EXACT_TIME_256: BluetoothUuid16 = BluetoothUuid16::new(0x2a0c);

/// Bluetooth characteristic UUID.
///
/// `0x2a0d` DST Offset
pub const DST_OFFSET: BluetoothUuid16 = BluetoothUuid16::new(0x2a0d);

/// Bluetooth characteristic UUID.
///
/// `0x2a0e` Time Zone
pub const TIME_ZONE: BluetoothUuid16 = BluetoothUuid16::new(0x2a0e);

/// Bluetooth characteristic UUID.
///
/// `0x2a0f` Local Time Information
pub const LOCAL_TIME_INFORMATION: BluetoothUuid16 = BluetoothUuid16::new(0x2a0f);

/// Bluetooth characteristic UUID.
///
/// `0x2a11` Time with DST
pub const TIME_WITH_DST: BluetoothUuid16 = BluetoothUuid16::new(0x2a11);

/// Bluetooth characteristic UUID.
///
/// `0x2a12` Time Accuracy
pub const TIME_ACCURACY: BluetoothUuid16 = BluetoothUuid16::new(0x2a12);

/// Bluetooth characteristic UUID.
///
/// `0x2a13` Time Source
pub const TIME_SOURCE: BluetoothUuid16 = BluetoothUuid16::new(0x2a13);

/// Bluetooth characteristic UUID.
///
/// `0x2a14` Reference Time Information
pub const REFERENCE_TIME_INFORMATION: BluetoothUuid16 = BluetoothUuid16::new(0x2a14);

/// Bluetooth characteristic UUID.
///
/// `0x2a16` Time Update Control Point
pub const TIME_UPDATE_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2a16);

/// Bluetooth characteristic UUID.
///
/// `0x2a17` Time Update State
pub const TIME_UPDATE_STATE: BluetoothUuid16 = BluetoothUuid16::new(0x2a17);

/// Bluetooth characteristic UUID.
///
/// `0x2a18` Glucose Measurement
pub const GLUCOSE_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a18);

/// Bluetooth characteristic UUID.
///
/// `0x2a19` Battery Level
pub const BATTERY_LEVEL: BluetoothUuid16 = BluetoothUuid16::new(0x2a19);

/// Bluetooth characteristic UUID.
///
/// `0x2a1c` Temperature Measurement
pub const TEMPERATURE_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a1c);

/// Bluetooth characteristic UUID.
///
/// `0x2a1d` Temperature Type
pub const TEMPERATURE_TYPE: BluetoothUuid16 = BluetoothUuid16::new(0x2a1d);

/// Bluetooth characteristic UUID.
///
/// `0x2a1e` Intermediate Temperature
pub const INTERMEDIATE_TEMPERATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2a1e);

/// Bluetooth characteristic UUID.
///
/// `0x2a21` Measurement Interval
pub const MEASUREMENT_INTERVAL: BluetoothUuid16 = BluetoothUuid16::new(0x2a21);

/// Bluetooth characteristic UUID.
///
/// `0x2a22` Boot Keyboard Input Report
pub const BOOT_KEYBOARD_INPUT_REPORT: BluetoothUuid16 = BluetoothUuid16::new(0x2a22);

/// Bluetooth characteristic UUID.
///
/// `0x2a23` System ID
pub const SYSTEM_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2a23);

/// Bluetooth characteristic UUID.
///
/// `0x2a24` Model Number String
pub const MODEL_NUMBER_STRING: BluetoothUuid16 = BluetoothUuid16::new(0x2a24);

/// Bluetooth characteristic UUID.
///
/// `0x2a25` Serial Number String
pub const SERIAL_NUMBER_STRING: BluetoothUuid16 = BluetoothUuid16::new(0x2a25);

/// Bluetooth characteristic UUID.
///
/// `0x2a26` Firmware Revision String
pub const FIRMWARE_REVISION_STRING: BluetoothUuid16 = BluetoothUuid16::new(0x2a26);

/// Bluetooth characteristic UUID.
///
/// `0x2a27` Hardware Revision String
pub const HARDWARE_REVISION_STRING: BluetoothUuid16 = BluetoothUuid16::new(0x2a27);

/// Bluetooth characteristic UUID.
///
/// `0x2a28` Software Revision String
pub const SOFTWARE_REVISION_STRING: BluetoothUuid16 = BluetoothUuid16::new(0x2a28);

/// Bluetooth characteristic UUID.
///
/// `0x2a29` Manufacturer Name String
pub const MANUFACTURER_NAME_STRING: BluetoothUuid16 = BluetoothUuid16::new(0x2a29);

/// Bluetooth characteristic UUID.
///
/// `0x2a2a` IEEE 11073-20601 Regulatory Certification Data List
pub const IEEE_11073_20601_REGULATORY_CERTIFICATION_DATA_LIST: BluetoothUuid16 = BluetoothUuid16::new(0x2a2a);

/// Bluetooth characteristic UUID.
///
/// `0x2a2b` Current Time
pub const CURRENT_TIME: BluetoothUuid16 = BluetoothUuid16::new(0x2a2b);

/// Bluetooth characteristic UUID.
///
/// `0x2a2c` Magnetic Declination
pub const MAGNETIC_DECLINATION: BluetoothUuid16 = BluetoothUuid16::new(0x2a2c);

/// Bluetooth characteristic UUID.
///
/// `0x2a31` Scan Refresh
pub const SCAN_REFRESH: BluetoothUuid16 = BluetoothUuid16::new(0x2a31);

/// Bluetooth characteristic UUID.
///
/// `0x2a32` Boot Keyboard Output Report
pub const BOOT_KEYBOARD_OUTPUT_REPORT: BluetoothUuid16 = BluetoothUuid16::new(0x2a32);

/// Bluetooth characteristic UUID.
///
/// `0x2a33` Boot Mouse Input Report
pub const BOOT_MOUSE_INPUT_REPORT: BluetoothUuid16 = BluetoothUuid16::new(0x2a33);

/// Bluetooth characteristic UUID.
///
/// `0x2a34` Glucose Measurement Context
pub const GLUCOSE_MEASUREMENT_CONTEXT: BluetoothUuid16 = BluetoothUuid16::new(0x2a34);

/// Bluetooth characteristic UUID.
///
/// `0x2a35` Blood Pressure Measurement
pub const BLOOD_PRESSURE_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a35);

/// Bluetooth characteristic UUID.
///
/// `0x2a36` Intermediate Cuff Pressure
pub const INTERMEDIATE_CUFF_PRESSURE: BluetoothUuid16 = BluetoothUuid16::new(0x2a36);

/// Bluetooth characteristic UUID.
///
/// `0x2a37` Heart Rate Measurement
pub const HEART_RATE_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a37);

/// Bluetooth characteristic UUID.
///
/// `0x2a38` Body Sensor Location
pub const BODY_SENSOR_LOCATION: BluetoothUuid16 = BluetoothUuid16::new(0x2a38);

/// Bluetooth characteristic UUID.
///
/// `0x2a39` Heart Rate Control Point
pub const HEART_RATE_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2a39);

/// Bluetooth characteristic UUID.
///
/// `0x2a3f` Alert Status
pub const ALERT_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2a3f);

/// Bluetooth characteristic UUID.
///
/// `0x2a40` Ringer Control Point
pub const RINGER_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2a40);

/// Bluetooth characteristic UUID.
///
/// `0x2a41` Ringer Setting
pub const RINGER_SETTING: BluetoothUuid16 = BluetoothUuid16::new(0x2a41);

/// Bluetooth characteristic UUID.
///
/// `0x2a42` Alert Category ID Bit Mask
pub const ALERT_CATEGORY_ID_BIT_MASK: BluetoothUuid16 = BluetoothUuid16::new(0x2a42);

/// Bluetooth characteristic UUID.
///
/// `0x2a43` Alert Category ID
pub const ALERT_CATEGORY_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2a43);

/// Bluetooth characteristic UUID.
///
/// `0x2a44` Alert Notification Control Point
pub const ALERT_NOTIFICATION_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2a44);

/// Bluetooth characteristic UUID.
///
/// `0x2a45` Unread Alert Status
pub const UNREAD_ALERT_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2a45);

/// Bluetooth characteristic UUID.
///
/// `0x2a46` New Alert
pub const NEW_ALERT: BluetoothUuid16 = BluetoothUuid16::new(0x2a46);

/// Bluetooth characteristic UUID.
///
/// `0x2a47` Supported New Alert Category
pub const SUPPORTED_NEW_ALERT_CATEGORY: BluetoothUuid16 = BluetoothUuid16::new(0x2a47);

/// Bluetooth characteristic UUID.
///
/// `0x2a48` Supported Unread Alert Category
pub const SUPPORTED_UNREAD_ALERT_CATEGORY: BluetoothUuid16 = BluetoothUuid16::new(0x2a48);

/// Bluetooth characteristic UUID.
///
/// `0x2a49` Blood Pressure Feature
pub const BLOOD_PRESSURE_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2a49);

/// Bluetooth characteristic UUID.
///
/// `0x2a4a` HID Information
pub const HID_INFORMATION: BluetoothUuid16 = BluetoothUuid16::new(0x2a4a);

/// Bluetooth characteristic UUID.
///
/// `0x2a4b` Report Map
pub const REPORT_MAP: BluetoothUuid16 = BluetoothUuid16::new(0x2a4b);

/// Bluetooth characteristic UUID.
///
/// `0x2a4c` HID Control Point
pub const HID_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2a4c);

/// Bluetooth characteristic UUID.
///
/// `0x2a4d` Report
pub const REPORT: BluetoothUuid16 = BluetoothUuid16::new(0x2a4d);

/// Bluetooth characteristic UUID.
///
/// `0x2a4e` Protocol Mode
pub const PROTOCOL_MODE: BluetoothUuid16 = BluetoothUuid16::new(0x2a4e);

/// Bluetooth characteristic UUID.
///
/// `0x2a4f` Scan Interval Window
pub const SCAN_INTERVAL_WINDOW: BluetoothUuid16 = BluetoothUuid16::new(0x2a4f);

/// Bluetooth characteristic UUID.
///
/// `0x2a50` PnP ID
pub const PNP_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2a50);

/// Bluetooth characteristic UUID.
///
/// `0x2a51` Glucose Feature
pub const GLUCOSE_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2a51);

/// Bluetooth characteristic UUID.
///
/// `0x2a52` Record Access Control Point
pub const RECORD_ACCESS_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2a52);

/// Bluetooth characteristic UUID.
///
/// `0x2a53` RSC Measurement
pub const RSC_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a53);

/// Bluetooth characteristic UUID.
///
/// `0x2a54` RSC Feature
pub const RSC_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2a54);

/// Bluetooth characteristic UUID.
///
/// `0x2a55` SC Control Point
pub const SC_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2a55);

/// Bluetooth characteristic UUID.
///
/// `0x2a5a` Aggregate
pub const AGGREGATE: BluetoothUuid16 = BluetoothUuid16::new(0x2a5a);

/// Bluetooth characteristic UUID.
///
/// `0x2a5b` CSC Measurement
pub const CSC_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a5b);

/// Bluetooth characteristic UUID.
///
/// `0x2a5c` CSC Feature
pub const CSC_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2a5c);

/// Bluetooth characteristic UUID.
///
/// `0x2a5d` Sensor Location
pub const SENSOR_LOCATION: BluetoothUuid16 = BluetoothUuid16::new(0x2a5d);

/// Bluetooth characteristic UUID.
///
/// `0x2a5e` PLX Spot-Check Measurement
pub const PLX_SPOT_CHECK_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a5e);

/// Bluetooth characteristic UUID.
///
/// `0x2a5f` PLX Continuous Measurement
pub const PLX_CONTINUOUS_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a5f);

/// Bluetooth characteristic UUID.
///
/// `0x2a60` PLX Features
pub const PLX_FEATURES: BluetoothUuid16 = BluetoothUuid16::new(0x2a60);

/// Bluetooth characteristic UUID.
///
/// `0x2a63` Cycling Power Measurement
pub const CYCLING_POWER_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a63);

/// Bluetooth characteristic UUID.
///
/// `0x2a64` Cycling Power Vector
pub const CYCLING_POWER_VECTOR: BluetoothUuid16 = BluetoothUuid16::new(0x2a64);

/// Bluetooth characteristic UUID.
///
/// `0x2a65` Cycling Power Feature
pub const CYCLING_POWER_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2a65);

/// Bluetooth characteristic UUID.
///
/// `0x2a66` Cycling Power Control Point
pub const CYCLING_POWER_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2a66);

/// Bluetooth characteristic UUID.
///
/// `0x2a67` Location and Speed
pub const LOCATION_AND_SPEED: BluetoothUuid16 = BluetoothUuid16::new(0x2a67);

/// Bluetooth characteristic UUID.
///
/// `0x2a68` Navigation
pub const NAVIGATION: BluetoothUuid16 = BluetoothUuid16::new(0x2a68);

/// Bluetooth characteristic UUID.
///
/// `0x2a69` Position Quality
pub const POSITION_QUALITY: BluetoothUuid16 = BluetoothUuid16::new(0x2a69);

/// Bluetooth characteristic UUID.
///
/// `0x2a6a` LN Feature
pub const LN_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2a6a);

/// Bluetooth characteristic UUID.
///
/// `0x2a6b` LN Control Point
pub const LN_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2a6b);

/// Bluetooth characteristic UUID.
///
/// `0x2a6c` Elevation
pub const ELEVATION: BluetoothUuid16 = BluetoothUuid16::new(0x2a6c);

/// Bluetooth characteristic UUID.
///
/// `0x2a6d` Pressure
pub const PRESSURE: BluetoothUuid16 = BluetoothUuid16::new(0x2a6d);

/// Bluetooth characteristic UUID.
///
/// `0x2a6e` Temperature
pub const TEMPERATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2a6e);

/// Bluetooth characteristic UUID.
///
/// `0x2a6f` Humidity
pub const HUMIDITY: BluetoothUuid16 = BluetoothUuid16::new(0x2a6f);

/// Bluetooth characteristic UUID.
///
/// `0x2a70` True Wind Speed
pub const TRUE_WIND_SPEED: BluetoothUuid16 = BluetoothUuid16::new(0x2a70);

/// Bluetooth characteristic UUID.
///
/// `0x2a71` True Wind Direction
pub const TRUE_WIND_DIRECTION: BluetoothUuid16 = BluetoothUuid16::new(0x2a71);

/// Bluetooth characteristic UUID.
///
/// `0x2a72` Apparent Wind Speed
pub const APPARENT_WIND_SPEED: BluetoothUuid16 = BluetoothUuid16::new(0x2a72);

/// Bluetooth characteristic UUID.
///
/// `0x2a73` Apparent Wind Direction
pub const APPARENT_WIND_DIRECTION: BluetoothUuid16 = BluetoothUuid16::new(0x2a73);

/// Bluetooth characteristic UUID.
///
/// `0x2a74` Gust Factor
pub const GUST_FACTOR: BluetoothUuid16 = BluetoothUuid16::new(0x2a74);

/// Bluetooth characteristic UUID.
///
/// `0x2a75` Pollen Concentration
pub const POLLEN_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2a75);

/// Bluetooth characteristic UUID.
///
/// `0x2a76` UV Index
pub const UV_INDEX: BluetoothUuid16 = BluetoothUuid16::new(0x2a76);

/// Bluetooth characteristic UUID.
///
/// `0x2a77` Irradiance
pub const IRRADIANCE: BluetoothUuid16 = BluetoothUuid16::new(0x2a77);

/// Bluetooth characteristic UUID.
///
/// `0x2a78` Rainfall
pub const RAINFALL: BluetoothUuid16 = BluetoothUuid16::new(0x2a78);

/// Bluetooth characteristic UUID.
///
/// `0x2a79` Wind Chill
pub const WIND_CHILL: BluetoothUuid16 = BluetoothUuid16::new(0x2a79);

/// Bluetooth characteristic UUID.
///
/// `0x2a7a` Heat Index
pub const HEAT_INDEX: BluetoothUuid16 = BluetoothUuid16::new(0x2a7a);

/// Bluetooth characteristic UUID.
///
/// `0x2a7b` Dew Point
pub const DEW_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2a7b);

/// Bluetooth characteristic UUID.
///
/// `0x2a7d` Descriptor Value Changed
pub const DESCRIPTOR_VALUE_CHANGED: BluetoothUuid16 = BluetoothUuid16::new(0x2a7d);

/// Bluetooth characteristic UUID.
///
/// `0x2a7e` Aerobic Heart Rate Lower Limit
pub const AEROBIC_HEART_RATE_LOWER_LIMIT: BluetoothUuid16 = BluetoothUuid16::new(0x2a7e);

/// Bluetooth characteristic UUID.
///
/// `0x2a7f` Aerobic Threshold
pub const AEROBIC_THRESHOLD: BluetoothUuid16 = BluetoothUuid16::new(0x2a7f);

/// Bluetooth characteristic UUID.
///
/// `0x2a80` Age
pub const AGE: BluetoothUuid16 = BluetoothUuid16::new(0x2a80);

/// Bluetooth characteristic UUID.
///
/// `0x2a81` Anaerobic Heart Rate Lower Limit
pub const ANAEROBIC_HEART_RATE_LOWER_LIMIT: BluetoothUuid16 = BluetoothUuid16::new(0x2a81);

/// Bluetooth characteristic UUID.
///
/// `0x2a82` Anaerobic Heart Rate Upper Limit
pub const ANAEROBIC_HEART_RATE_UPPER_LIMIT: BluetoothUuid16 = BluetoothUuid16::new(0x2a82);

/// Bluetooth characteristic UUID.
///
/// `0x2a83` Anaerobic Threshold
pub const ANAEROBIC_THRESHOLD: BluetoothUuid16 = BluetoothUuid16::new(0x2a83);

/// Bluetooth characteristic UUID.
///
/// `0x2a84` Aerobic Heart Rate Upper Limit
pub const AEROBIC_HEART_RATE_UPPER_LIMIT: BluetoothUuid16 = BluetoothUuid16::new(0x2a84);

/// Bluetooth characteristic UUID.
///
/// `0x2a85` Date of Birth
pub const DATE_OF_BIRTH: BluetoothUuid16 = BluetoothUuid16::new(0x2a85);

/// Bluetooth characteristic UUID.
///
/// `0x2a86` Date of Threshold Assessment
pub const DATE_OF_THRESHOLD_ASSESSMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a86);

/// Bluetooth characteristic UUID.
///
/// `0x2a87` Email Address
pub const EMAIL_ADDRESS: BluetoothUuid16 = BluetoothUuid16::new(0x2a87);

/// Bluetooth characteristic UUID.
///
/// `0x2a88` Fat Burn Heart Rate Lower Limit
pub const FAT_BURN_HEART_RATE_LOWER_LIMIT: BluetoothUuid16 = BluetoothUuid16::new(0x2a88);

/// Bluetooth characteristic UUID.
///
/// `0x2a89` Fat Burn Heart Rate Upper Limit
pub const FAT_BURN_HEART_RATE_UPPER_LIMIT: BluetoothUuid16 = BluetoothUuid16::new(0x2a89);

/// Bluetooth characteristic UUID.
///
/// `0x2a8a` First Name
pub const FIRST_NAME: BluetoothUuid16 = BluetoothUuid16::new(0x2a8a);

/// Bluetooth characteristic UUID.
///
/// `0x2a8b` Five Zone Heart Rate Limits
pub const FIVE_ZONE_HEART_RATE_LIMITS: BluetoothUuid16 = BluetoothUuid16::new(0x2a8b);

/// Bluetooth characteristic UUID.
///
/// `0x2a8c` Gender
pub const GENDER: BluetoothUuid16 = BluetoothUuid16::new(0x2a8c);

/// Bluetooth characteristic UUID.
///
/// `0x2a8d` Heart Rate Max
pub const HEART_RATE_MAX: BluetoothUuid16 = BluetoothUuid16::new(0x2a8d);

/// Bluetooth characteristic UUID.
///
/// `0x2a8e` Height
pub const HEIGHT: BluetoothUuid16 = BluetoothUuid16::new(0x2a8e);

/// Bluetooth characteristic UUID.
///
/// `0x2a8f` Hip Circumference
pub const HIP_CIRCUMFERENCE: BluetoothUuid16 = BluetoothUuid16::new(0x2a8f);

/// Bluetooth characteristic UUID.
///
/// `0x2a90` Last Name
pub const LAST_NAME: BluetoothUuid16 = BluetoothUuid16::new(0x2a90);

/// Bluetooth characteristic UUID.
///
/// `0x2a91` Maximum Recommended Heart Rate
pub const MAXIMUM_RECOMMENDED_HEART_RATE: BluetoothUuid16 = BluetoothUuid16::new(0x2a91);

/// Bluetooth characteristic UUID.
///
/// `0x2a92` Resting Heart Rate
pub const RESTING_HEART_RATE: BluetoothUuid16 = BluetoothUuid16::new(0x2a92);

/// Bluetooth characteristic UUID.
///
/// `0x2a93` Sport Type for Aerobic and Anaerobic Thresholds
pub const SPORT_TYPE_FOR_AEROBIC_AND_ANAEROBIC_THRESHOLDS: BluetoothUuid16 = BluetoothUuid16::new(0x2a93);

/// Bluetooth characteristic UUID.
///
/// `0x2a94` Three Zone Heart Rate Limits
pub const THREE_ZONE_HEART_RATE_LIMITS: BluetoothUuid16 = BluetoothUuid16::new(0x2a94);

/// Bluetooth characteristic UUID.
///
/// `0x2a95` Two Zone Heart Rate Limits
pub const TWO_ZONE_HEART_RATE_LIMITS: BluetoothUuid16 = BluetoothUuid16::new(0x2a95);

/// Bluetooth characteristic UUID.
///
/// `0x2a96` VO2 Max
pub const VO2_MAX: BluetoothUuid16 = BluetoothUuid16::new(0x2a96);

/// Bluetooth characteristic UUID.
///
/// `0x2a97` Waist Circumference
pub const WAIST_CIRCUMFERENCE: BluetoothUuid16 = BluetoothUuid16::new(0x2a97);

/// Bluetooth characteristic UUID.
///
/// `0x2a98` Weight
pub const WEIGHT: BluetoothUuid16 = BluetoothUuid16::new(0x2a98);

/// Bluetooth characteristic UUID.
///
/// `0x2a99` Database Change Increment
pub const DATABASE_CHANGE_INCREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a99);

/// Bluetooth characteristic UUID.
///
/// `0x2a9a` User Index
pub const USER_INDEX: BluetoothUuid16 = BluetoothUuid16::new(0x2a9a);

/// Bluetooth characteristic UUID.
///
/// `0x2a9b` Body Composition Feature
pub const BODY_COMPOSITION_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2a9b);

/// Bluetooth characteristic UUID.
///
/// `0x2a9c` Body Composition Measurement
pub const BODY_COMPOSITION_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a9c);

/// Bluetooth characteristic UUID.
///
/// `0x2a9d` Weight Measurement
pub const WEIGHT_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2a9d);

/// Bluetooth characteristic UUID.
///
/// `0x2a9e` Weight Scale Feature
pub const WEIGHT_SCALE_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2a9e);

/// Bluetooth characteristic UUID.
///
/// `0x2a9f` User Control Point
pub const USER_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2a9f);

/// Bluetooth characteristic UUID.
///
/// `0x2aa0` Magnetic Flux Density - 2D
pub const MAGNETIC_FLUX_DENSITY_2D: BluetoothUuid16 = BluetoothUuid16::new(0x2aa0);

/// Bluetooth characteristic UUID.
///
/// `0x2aa1` Magnetic Flux Density - 3D
pub const MAGNETIC_FLUX_DENSITY_3D: BluetoothUuid16 = BluetoothUuid16::new(0x2aa1);

/// Bluetooth characteristic UUID.
///
/// `0x2aa2` Language
pub const LANGUAGE: BluetoothUuid16 = BluetoothUuid16::new(0x2aa2);

/// Bluetooth characteristic UUID.
///
/// `0x2aa3` Barometric Pressure Trend
pub const BAROMETRIC_PRESSURE_TREND: BluetoothUuid16 = BluetoothUuid16::new(0x2aa3);

/// Bluetooth characteristic UUID.
///
/// `0x2aa4` Bond Management Control Point
pub const BOND_MANAGEMENT_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2aa4);

/// Bluetooth characteristic UUID.
///
/// `0x2aa5` Bond Management Feature
pub const BOND_MANAGEMENT_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2aa5);

/// Bluetooth characteristic UUID.
///
/// `0x2aa6` Central Address Resolution
pub const CENTRAL_ADDRESS_RESOLUTION: BluetoothUuid16 = BluetoothUuid16::new(0x2aa6);

/// Bluetooth characteristic UUID.
///
/// `0x2aa7` CGM Measurement
pub const CGM_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2aa7);

/// Bluetooth characteristic UUID.
///
/// `0x2aa8` CGM Feature
pub const CGM_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2aa8);

/// Bluetooth characteristic UUID.
///
/// `0x2aa9` CGM Status
pub const CGM_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2aa9);

/// Bluetooth characteristic UUID.
///
/// `0x2aaa` CGM Session Start Time
pub const CGM_SESSION_START_TIME: BluetoothUuid16 = BluetoothUuid16::new(0x2aaa);

/// Bluetooth characteristic UUID.
///
/// `0x2aab` CGM Session Run Time
pub const CGM_SESSION_RUN_TIME: BluetoothUuid16 = BluetoothUuid16::new(0x2aab);

/// Bluetooth characteristic UUID.
///
/// `0x2aac` CGM Specific Ops Control Point
pub const CGM_SPECIFIC_OPS_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2aac);

/// Bluetooth characteristic UUID.
///
/// `0x2aad` Indoor Positioning Configuration
pub const INDOOR_POSITIONING_CONFIGURATION: BluetoothUuid16 = BluetoothUuid16::new(0x2aad);

/// Bluetooth characteristic UUID.
///
/// `0x2aae` Latitude
pub const LATITUDE: BluetoothUuid16 = BluetoothUuid16::new(0x2aae);

/// Bluetooth characteristic UUID.
///
/// `0x2aaf` Longitude
pub const LONGITUDE: BluetoothUuid16 = BluetoothUuid16::new(0x2aaf);

/// Bluetooth characteristic UUID.
///
/// `0x2ab0` Local North Coordinate
pub const LOCAL_NORTH_COORDINATE: BluetoothUuid16 = BluetoothUuid16::new(0x2ab0);

/// Bluetooth characteristic UUID.
///
/// `0x2ab1` Local East Coordinate
pub const LOCAL_EAST_COORDINATE: BluetoothUuid16 = BluetoothUuid16::new(0x2ab1);

/// Bluetooth characteristic UUID.
///
/// `0x2ab2` Floor Number
pub const FLOOR_NUMBER: BluetoothUuid16 = BluetoothUuid16::new(0x2ab2);

/// Bluetooth characteristic UUID.
///
/// `0x2ab3` Altitude
pub const ALTITUDE: BluetoothUuid16 = BluetoothUuid16::new(0x2ab3);

/// Bluetooth characteristic UUID.
///
/// `0x2ab4` Uncertainty
pub const UNCERTAINTY: BluetoothUuid16 = BluetoothUuid16::new(0x2ab4);

/// Bluetooth characteristic UUID.
///
/// `0x2ab5` Location Name
pub const LOCATION_NAME: BluetoothUuid16 = BluetoothUuid16::new(0x2ab5);

/// Bluetooth characteristic UUID.
///
/// `0x2ab6` URI
pub const URI: BluetoothUuid16 = BluetoothUuid16::new(0x2ab6);

/// Bluetooth characteristic UUID.
///
/// `0x2ab7` HTTP Headers
pub const HTTP_HEADERS: BluetoothUuid16 = BluetoothUuid16::new(0x2ab7);

/// Bluetooth characteristic UUID.
///
/// `0x2ab8` HTTP Status Code
pub const HTTP_STATUS_CODE: BluetoothUuid16 = BluetoothUuid16::new(0x2ab8);

/// Bluetooth characteristic UUID.
///
/// `0x2ab9` HTTP Entity Body
pub const HTTP_ENTITY_BODY: BluetoothUuid16 = BluetoothUuid16::new(0x2ab9);

/// Bluetooth characteristic UUID.
///
/// `0x2aba` HTTP Control Point
pub const HTTP_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2aba);

/// Bluetooth characteristic UUID.
///
/// `0x2abb` HTTPS Security
pub const HTTPS_SECURITY: BluetoothUuid16 = BluetoothUuid16::new(0x2abb);

/// Bluetooth characteristic UUID.
///
/// `0x2abc` TDS Control Point
pub const TDS_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2abc);

/// Bluetooth characteristic UUID.
///
/// `0x2abd` OTS Feature
pub const OTS_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2abd);

/// Bluetooth characteristic UUID.
///
/// `0x2abe` Object Name
pub const OBJECT_NAME: BluetoothUuid16 = BluetoothUuid16::new(0x2abe);

/// Bluetooth characteristic UUID.
///
/// `0x2abf` Object Type
pub const OBJECT_TYPE: BluetoothUuid16 = BluetoothUuid16::new(0x2abf);

/// Bluetooth characteristic UUID.
///
/// `0x2ac0` Object Size
pub const OBJECT_SIZE: BluetoothUuid16 = BluetoothUuid16::new(0x2ac0);

/// Bluetooth characteristic UUID.
///
/// `0x2ac1` Object First-Created
pub const OBJECT_FIRST_CREATED: BluetoothUuid16 = BluetoothUuid16::new(0x2ac1);

/// Bluetooth characteristic UUID.
///
/// `0x2ac2` Object Last-Modified
pub const OBJECT_LAST_MODIFIED: BluetoothUuid16 = BluetoothUuid16::new(0x2ac2);

/// Bluetooth characteristic UUID.
///
/// `0x2ac3` Object ID
pub const OBJECT_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2ac3);

/// Bluetooth characteristic UUID.
///
/// `0x2ac4` Object Properties
pub const OBJECT_PROPERTIES: BluetoothUuid16 = BluetoothUuid16::new(0x2ac4);

/// Bluetooth characteristic UUID.
///
/// `0x2ac5` Object Action Control Point
pub const OBJECT_ACTION_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2ac5);

/// Bluetooth characteristic UUID.
///
/// `0x2ac6` Object List Control Point
pub const OBJECT_LIST_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2ac6);

/// Bluetooth characteristic UUID.
///
/// `0x2ac7` Object List Filter
pub const OBJECT_LIST_FILTER: BluetoothUuid16 = BluetoothUuid16::new(0x2ac7);

/// Bluetooth characteristic UUID.
///
/// `0x2ac8` Object Changed
pub const OBJECT_CHANGED: BluetoothUuid16 = BluetoothUuid16::new(0x2ac8);

/// Bluetooth characteristic UUID.
///
/// `0x2ac9` Resolvable Private Address Only
pub const RESOLVABLE_PRIVATE_ADDRESS_ONLY: BluetoothUuid16 = BluetoothUuid16::new(0x2ac9);

/// Bluetooth characteristic UUID.
///
/// `0x2acc` Fitness Machine Feature
pub const FITNESS_MACHINE_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2acc);

/// Bluetooth characteristic UUID.
///
/// `0x2acd` Treadmill Data
pub const TREADMILL_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2acd);

/// Bluetooth characteristic UUID.
///
/// `0x2ace` Cross Trainer Data
pub const CROSS_TRAINER_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2ace);

/// Bluetooth characteristic UUID.
///
/// `0x2acf` Step Climber Data
pub const STEP_CLIMBER_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2acf);

/// Bluetooth characteristic UUID.
///
/// `0x2ad0` Stair Climber Data
pub const STAIR_CLIMBER_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2ad0);

/// Bluetooth characteristic UUID.
///
/// `0x2ad1` Rower Data
pub const ROWER_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2ad1);

/// Bluetooth characteristic UUID.
///
/// `0x2ad2` Indoor Bike Data
pub const INDOOR_BIKE_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2ad2);

/// Bluetooth characteristic UUID.
///
/// `0x2ad3` Training Status
pub const TRAINING_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2ad3);

/// Bluetooth characteristic UUID.
///
/// `0x2ad4` Supported Speed Range
pub const SUPPORTED_SPEED_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2ad4);

/// Bluetooth characteristic UUID.
///
/// `0x2ad5` Supported Inclination Range
pub const SUPPORTED_INCLINATION_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2ad5);

/// Bluetooth characteristic UUID.
///
/// `0x2ad6` Supported Resistance Level Range
pub const SUPPORTED_RESISTANCE_LEVEL_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2ad6);

/// Bluetooth characteristic UUID.
///
/// `0x2ad7` Supported Heart Rate Range
pub const SUPPORTED_HEART_RATE_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2ad7);

/// Bluetooth characteristic UUID.
///
/// `0x2ad8` Supported Power Range
pub const SUPPORTED_POWER_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2ad8);

/// Bluetooth characteristic UUID.
///
/// `0x2ad9` Fitness Machine Control Point
pub const FITNESS_MACHINE_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2ad9);

/// Bluetooth characteristic UUID.
///
/// `0x2ada` Fitness Machine Status
pub const FITNESS_MACHINE_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2ada);

/// Bluetooth characteristic UUID.
///
/// `0x2adb` Mesh Provisioning Data In
pub const MESH_PROVISIONING_DATA_IN: BluetoothUuid16 = BluetoothUuid16::new(0x2adb);

/// Bluetooth characteristic UUID.
///
/// `0x2adc` Mesh Provisioning Data Out
pub const MESH_PROVISIONING_DATA_OUT: BluetoothUuid16 = BluetoothUuid16::new(0x2adc);

/// Bluetooth characteristic UUID.
///
/// `0x2add` Mesh Proxy Data In
pub const MESH_PROXY_DATA_IN: BluetoothUuid16 = BluetoothUuid16::new(0x2add);

/// Bluetooth characteristic UUID.
///
/// `0x2ade` Mesh Proxy Data Out
pub const MESH_PROXY_DATA_OUT: BluetoothUuid16 = BluetoothUuid16::new(0x2ade);

/// Bluetooth characteristic UUID.
///
/// `0x2ae0` Average Current
pub const AVERAGE_CURRENT: BluetoothUuid16 = BluetoothUuid16::new(0x2ae0);

/// Bluetooth characteristic UUID.
///
/// `0x2ae1` Average Voltage
pub const AVERAGE_VOLTAGE: BluetoothUuid16 = BluetoothUuid16::new(0x2ae1);

/// Bluetooth characteristic UUID.
///
/// `0x2ae2` Boolean
pub const BOOLEAN: BluetoothUuid16 = BluetoothUuid16::new(0x2ae2);

/// Bluetooth characteristic UUID.
///
/// `0x2ae3` Chromatic Distance from Planckian
pub const CHROMATIC_DISTANCE_FROM_PLANCKIAN: BluetoothUuid16 = BluetoothUuid16::new(0x2ae3);

/// Bluetooth characteristic UUID.
///
/// `0x2ae4` Chromaticity Coordinates
pub const CHROMATICITY_COORDINATES: BluetoothUuid16 = BluetoothUuid16::new(0x2ae4);

/// Bluetooth characteristic UUID.
///
/// `0x2ae5` Chromaticity in CCT and Duv Values
pub const CHROMATICITY_IN_CCT_AND_DUV_VALUES: BluetoothUuid16 = BluetoothUuid16::new(0x2ae5);

/// Bluetooth characteristic UUID.
///
/// `0x2ae6` Chromaticity Tolerance
pub const CHROMATICITY_TOLERANCE: BluetoothUuid16 = BluetoothUuid16::new(0x2ae6);

/// Bluetooth characteristic UUID.
///
/// `0x2ae7` CIE 13.3-1995 Color Rendering Index
pub const CIE_133_1995_COLOR_RENDERING_INDEX: BluetoothUuid16 = BluetoothUuid16::new(0x2ae7);

/// Bluetooth characteristic UUID.
///
/// `0x2ae8` Coefficient
pub const COEFFICIENT: BluetoothUuid16 = BluetoothUuid16::new(0x2ae8);

/// Bluetooth characteristic UUID.
///
/// `0x2ae9` Correlated Color Temperature
pub const CORRELATED_COLOR_TEMPERATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2ae9);

/// Bluetooth characteristic UUID.
///
/// `0x2aea` Count 16
pub const COUNT_16: BluetoothUuid16 = BluetoothUuid16::new(0x2aea);

/// Bluetooth characteristic UUID.
///
/// `0x2aeb` Count 24
pub const COUNT_24: BluetoothUuid16 = BluetoothUuid16::new(0x2aeb);

/// Bluetooth characteristic UUID.
///
/// `0x2aec` Country Code
pub const COUNTRY_CODE: BluetoothUuid16 = BluetoothUuid16::new(0x2aec);

/// Bluetooth characteristic UUID.
///
/// `0x2aed` Date UTC
pub const DATE_UTC: BluetoothUuid16 = BluetoothUuid16::new(0x2aed);

/// Bluetooth characteristic UUID.
///
/// `0x2aee` Electric Current
pub const ELECTRIC_CURRENT: BluetoothUuid16 = BluetoothUuid16::new(0x2aee);

/// Bluetooth characteristic UUID.
///
/// `0x2aef` Electric Current Range
pub const ELECTRIC_CURRENT_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2aef);

/// Bluetooth characteristic UUID.
///
/// `0x2af0` Electric Current Specification
pub const ELECTRIC_CURRENT_SPECIFICATION: BluetoothUuid16 = BluetoothUuid16::new(0x2af0);

/// Bluetooth characteristic UUID.
///
/// `0x2af1` Electric Current Statistics
pub const ELECTRIC_CURRENT_STATISTICS: BluetoothUuid16 = BluetoothUuid16::new(0x2af1);

/// Bluetooth characteristic UUID.
///
/// `0x2af2` Energy
pub const ENERGY: BluetoothUuid16 = BluetoothUuid16::new(0x2af2);

/// Bluetooth characteristic UUID.
///
/// `0x2af3` Energy in a Period of Day
pub const ENERGY_IN_A_PERIOD_OF_DAY: BluetoothUuid16 = BluetoothUuid16::new(0x2af3);

/// Bluetooth characteristic UUID.
///
/// `0x2af4` Event Statistics
pub const EVENT_STATISTICS: BluetoothUuid16 = BluetoothUuid16::new(0x2af4);

/// Bluetooth characteristic UUID.
///
/// `0x2af5` Fixed String 16
pub const FIXED_STRING_16: BluetoothUuid16 = BluetoothUuid16::new(0x2af5);

/// Bluetooth characteristic UUID.
///
/// `0x2af6` Fixed String 24
pub const FIXED_STRING_24: BluetoothUuid16 = BluetoothUuid16::new(0x2af6);

/// Bluetooth characteristic UUID.
///
/// `0x2af7` Fixed String 36
pub const FIXED_STRING_36: BluetoothUuid16 = BluetoothUuid16::new(0x2af7);

/// Bluetooth characteristic UUID.
///
/// `0x2af8` Fixed String 8
pub const FIXED_STRING_8: BluetoothUuid16 = BluetoothUuid16::new(0x2af8);

/// Bluetooth characteristic UUID.
///
/// `0x2af9` Generic Level
pub const GENERIC_LEVEL: BluetoothUuid16 = BluetoothUuid16::new(0x2af9);

/// Bluetooth characteristic UUID.
///
/// `0x2afa` Global Trade Item Number
pub const GLOBAL_TRADE_ITEM_NUMBER: BluetoothUuid16 = BluetoothUuid16::new(0x2afa);

/// Bluetooth characteristic UUID.
///
/// `0x2afb` Illuminance
pub const ILLUMINANCE: BluetoothUuid16 = BluetoothUuid16::new(0x2afb);

/// Bluetooth characteristic UUID.
///
/// `0x2afc` Luminous Efficacy
pub const LUMINOUS_EFFICACY: BluetoothUuid16 = BluetoothUuid16::new(0x2afc);

/// Bluetooth characteristic UUID.
///
/// `0x2afd` Luminous Energy
pub const LUMINOUS_ENERGY: BluetoothUuid16 = BluetoothUuid16::new(0x2afd);

/// Bluetooth characteristic UUID.
///
/// `0x2afe` Luminous Exposure
pub const LUMINOUS_EXPOSURE: BluetoothUuid16 = BluetoothUuid16::new(0x2afe);

/// Bluetooth characteristic UUID.
///
/// `0x2aff` Luminous Flux
pub const LUMINOUS_FLUX: BluetoothUuid16 = BluetoothUuid16::new(0x2aff);

/// Bluetooth characteristic UUID.
///
/// `0x2b00` Luminous Flux Range
pub const LUMINOUS_FLUX_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2b00);

/// Bluetooth characteristic UUID.
///
/// `0x2b01` Luminous Intensity
pub const LUMINOUS_INTENSITY: BluetoothUuid16 = BluetoothUuid16::new(0x2b01);

/// Bluetooth characteristic UUID.
///
/// `0x2b02` Mass Flow
pub const MASS_FLOW: BluetoothUuid16 = BluetoothUuid16::new(0x2b02);

/// Bluetooth characteristic UUID.
///
/// `0x2b03` Perceived Lightness
pub const PERCEIVED_LIGHTNESS: BluetoothUuid16 = BluetoothUuid16::new(0x2b03);

/// Bluetooth characteristic UUID.
///
/// `0x2b04` Percentage 8
pub const PERCENTAGE_8: BluetoothUuid16 = BluetoothUuid16::new(0x2b04);

/// Bluetooth characteristic UUID.
///
/// `0x2b05` Power
pub const POWER: BluetoothUuid16 = BluetoothUuid16::new(0x2b05);

/// Bluetooth characteristic UUID.
///
/// `0x2b06` Power Specification
pub const POWER_SPECIFICATION: BluetoothUuid16 = BluetoothUuid16::new(0x2b06);

/// Bluetooth characteristic UUID.
///
/// `0x2b07` Relative Runtime in a Current Range
pub const RELATIVE_RUNTIME_IN_A_CURRENT_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2b07);

/// Bluetooth characteristic UUID.
///
/// `0x2b08` Relative Runtime in a Generic Level Range
pub const RELATIVE_RUNTIME_IN_A_GENERIC_LEVEL_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2b08);

/// Bluetooth characteristic UUID.
///
/// `0x2b09` Relative Value in a Voltage Range
pub const RELATIVE_VALUE_IN_A_VOLTAGE_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2b09);

/// Bluetooth characteristic UUID.
///
/// `0x2b0a` Relative Value in an Illuminance Range
pub const RELATIVE_VALUE_IN_AN_ILLUMINANCE_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2b0a);

/// Bluetooth characteristic UUID.
///
/// `0x2b0b` Relative Value in a Period of Day
pub const RELATIVE_VALUE_IN_A_PERIOD_OF_DAY: BluetoothUuid16 = BluetoothUuid16::new(0x2b0b);

/// Bluetooth characteristic UUID.
///
/// `0x2b0c` Relative Value in a Temperature Range
pub const RELATIVE_VALUE_IN_A_TEMPERATURE_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2b0c);

/// Bluetooth characteristic UUID.
///
/// `0x2b0d` Temperature 8
pub const TEMPERATURE_8: BluetoothUuid16 = BluetoothUuid16::new(0x2b0d);

/// Bluetooth characteristic UUID.
///
/// `0x2b0e` Temperature 8 in a Period of Day
pub const TEMPERATURE_8_IN_A_PERIOD_OF_DAY: BluetoothUuid16 = BluetoothUuid16::new(0x2b0e);

/// Bluetooth characteristic UUID.
///
/// `0x2b0f` Temperature 8 Statistics
pub const TEMPERATURE_8_STATISTICS: BluetoothUuid16 = BluetoothUuid16::new(0x2b0f);

/// Bluetooth characteristic UUID.
///
/// `0x2b10` Temperature Range
pub const TEMPERATURE_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2b10);

/// Bluetooth characteristic UUID.
///
/// `0x2b11` Temperature Statistics
pub const TEMPERATURE_STATISTICS: BluetoothUuid16 = BluetoothUuid16::new(0x2b11);

/// Bluetooth characteristic UUID.
///
/// `0x2b12` Time Decihour 8
pub const TIME_DECIHOUR_8: BluetoothUuid16 = BluetoothUuid16::new(0x2b12);

/// Bluetooth characteristic UUID.
///
/// `0x2b13` Time Exponential 8
pub const TIME_EXPONENTIAL_8: BluetoothUuid16 = BluetoothUuid16::new(0x2b13);

/// Bluetooth characteristic UUID.
///
/// `0x2b14` Time Hour 24
pub const TIME_HOUR_24: BluetoothUuid16 = BluetoothUuid16::new(0x2b14);

/// Bluetooth characteristic UUID.
///
/// `0x2b15` Time Millisecond 24
pub const TIME_MILLISECOND_24: BluetoothUuid16 = BluetoothUuid16::new(0x2b15);

/// Bluetooth characteristic UUID.
///
/// `0x2b16` Time Second 16
pub const TIME_SECOND_16: BluetoothUuid16 = BluetoothUuid16::new(0x2b16);

/// Bluetooth characteristic UUID.
///
/// `0x2b17` Time Second 8
pub const TIME_SECOND_8: BluetoothUuid16 = BluetoothUuid16::new(0x2b17);

/// Bluetooth characteristic UUID.
///
/// `0x2b18` Voltage
pub const VOLTAGE: BluetoothUuid16 = BluetoothUuid16::new(0x2b18);

/// Bluetooth characteristic UUID.
///
/// `0x2b19` Voltage Specification
pub const VOLTAGE_SPECIFICATION: BluetoothUuid16 = BluetoothUuid16::new(0x2b19);

/// Bluetooth characteristic UUID.
///
/// `0x2b1a` Voltage Statistics
pub const VOLTAGE_STATISTICS: BluetoothUuid16 = BluetoothUuid16::new(0x2b1a);

/// Bluetooth characteristic UUID.
///
/// `0x2b1b` Volume Flow
pub const VOLUME_FLOW: BluetoothUuid16 = BluetoothUuid16::new(0x2b1b);

/// Bluetooth characteristic UUID.
///
/// `0x2b1c` Chromaticity Coordinate
pub const CHROMATICITY_COORDINATE: BluetoothUuid16 = BluetoothUuid16::new(0x2b1c);

/// Bluetooth characteristic UUID.
///
/// `0x2b1d` RC Feature
pub const RC_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2b1d);

/// Bluetooth characteristic UUID.
///
/// `0x2b1e` RC Settings
pub const RC_SETTINGS: BluetoothUuid16 = BluetoothUuid16::new(0x2b1e);

/// Bluetooth characteristic UUID.
///
/// `0x2b1f` Reconnection Configuration Control Point
pub const RECONNECTION_CONFIGURATION_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2b1f);

/// Bluetooth characteristic UUID.
///
/// `0x2b20` IDD Status Changed
pub const IDD_STATUS_CHANGED: BluetoothUuid16 = BluetoothUuid16::new(0x2b20);

/// Bluetooth characteristic UUID.
///
/// `0x2b21` IDD Status
pub const IDD_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2b21);

/// Bluetooth characteristic UUID.
///
/// `0x2b22` IDD Annunciation Status
pub const IDD_ANNUNCIATION_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2b22);

/// Bluetooth characteristic UUID.
///
/// `0x2b23` IDD Features
pub const IDD_FEATURES: BluetoothUuid16 = BluetoothUuid16::new(0x2b23);

/// Bluetooth characteristic UUID.
///
/// `0x2b24` IDD Status Reader Control Point
pub const IDD_STATUS_READER_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2b24);

/// Bluetooth characteristic UUID.
///
/// `0x2b25` IDD Command Control Point
pub const IDD_COMMAND_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2b25);

/// Bluetooth characteristic UUID.
///
/// `0x2b26` IDD Command Data
pub const IDD_COMMAND_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2b26);

/// Bluetooth characteristic UUID.
///
/// `0x2b27` IDD Record Access Control Point
pub const IDD_RECORD_ACCESS_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2b27);

/// Bluetooth characteristic UUID.
///
/// `0x2b28` IDD History Data
pub const IDD_HISTORY_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2b28);

/// Bluetooth characteristic UUID.
///
/// `0x2b29` Client Supported Features
pub const CLIENT_SUPPORTED_FEATURES: BluetoothUuid16 = BluetoothUuid16::new(0x2b29);

/// Bluetooth characteristic UUID.
///
/// `0x2b2a` Database Hash
pub const DATABASE_HASH: BluetoothUuid16 = BluetoothUuid16::new(0x2b2a);

/// Bluetooth characteristic UUID.
///
/// `0x2b2b` BSS Control Point
pub const BSS_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2b2b);

/// Bluetooth characteristic UUID.
///
/// `0x2b2c` BSS Response
pub const BSS_RESPONSE: BluetoothUuid16 = BluetoothUuid16::new(0x2b2c);

/// Bluetooth characteristic UUID.
///
/// `0x2b2d` Emergency ID
pub const EMERGENCY_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2b2d);

/// Bluetooth characteristic UUID.
///
/// `0x2b2e` Emergency Text
pub const EMERGENCY_TEXT: BluetoothUuid16 = BluetoothUuid16::new(0x2b2e);

/// Bluetooth characteristic UUID.
///
/// `0x2b2f` ACS Status
pub const ACS_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2b2f);

/// Bluetooth characteristic UUID.
///
/// `0x2b30` ACS Data In
pub const ACS_DATA_IN: BluetoothUuid16 = BluetoothUuid16::new(0x2b30);

/// Bluetooth characteristic UUID.
///
/// `0x2b31` ACS Data Out Notify
pub const ACS_DATA_OUT_NOTIFY: BluetoothUuid16 = BluetoothUuid16::new(0x2b31);

/// Bluetooth characteristic UUID.
///
/// `0x2b32` ACS Data Out Indicate
pub const ACS_DATA_OUT_INDICATE: BluetoothUuid16 = BluetoothUuid16::new(0x2b32);

/// Bluetooth characteristic UUID.
///
/// `0x2b33` ACS Control Point
pub const ACS_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2b33);

/// Bluetooth characteristic UUID.
///
/// `0x2b34` Enhanced Blood Pressure Measurement
pub const ENHANCED_BLOOD_PRESSURE_MEASUREMENT: BluetoothUuid16 = BluetoothUuid16::new(0x2b34);

/// Bluetooth characteristic UUID.
///
/// `0x2b35` Enhanced Intermediate Cuff Pressure
pub const ENHANCED_INTERMEDIATE_CUFF_PRESSURE: BluetoothUuid16 = BluetoothUuid16::new(0x2b35);

/// Bluetooth characteristic UUID.
///
/// `0x2b36` Blood Pressure Record
pub const BLOOD_PRESSURE_RECORD: BluetoothUuid16 = BluetoothUuid16::new(0x2b36);

/// Bluetooth characteristic UUID.
///
/// `0x2b37` Registered User
pub const REGISTERED_USER: BluetoothUuid16 = BluetoothUuid16::new(0x2b37);

/// Bluetooth characteristic UUID.
///
/// `0x2b38` BR-EDR Handover Data
pub const BR_EDR_HANDOVER_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2b38);

/// Bluetooth characteristic UUID.
///
/// `0x2b39` Bluetooth SIG Data
pub const BLUETOOTH_SIG_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2b39);

/// Bluetooth characteristic UUID.
///
/// `0x2b3a` Server Supported Features
pub const SERVER_SUPPORTED_FEATURES: BluetoothUuid16 = BluetoothUuid16::new(0x2b3a);

/// Bluetooth characteristic UUID.
///
/// `0x2b3b` Physical Activity Monitor Features
pub const PHYSICAL_ACTIVITY_MONITOR_FEATURES: BluetoothUuid16 = BluetoothUuid16::new(0x2b3b);

/// Bluetooth characteristic UUID.
///
/// `0x2b3c` General Activity Instantaneous Data
pub const GENERAL_ACTIVITY_INSTANTANEOUS_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2b3c);

/// Bluetooth characteristic UUID.
///
/// `0x2b3d` General Activity Summary Data
pub const GENERAL_ACTIVITY_SUMMARY_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2b3d);

/// Bluetooth characteristic UUID.
///
/// `0x2b3e` CardioRespiratory Activity Instantaneous Data
pub const CARDIORESPIRATORY_ACTIVITY_INSTANTANEOUS_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2b3e);

/// Bluetooth characteristic UUID.
///
/// `0x2b3f` CardioRespiratory Activity Summary Data
pub const CARDIORESPIRATORY_ACTIVITY_SUMMARY_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2b3f);

/// Bluetooth characteristic UUID.
///
/// `0x2b40` Step Counter Activity Summary Data
pub const STEP_COUNTER_ACTIVITY_SUMMARY_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2b40);

/// Bluetooth characteristic UUID.
///
/// `0x2b41` Sleep Activity Instantaneous Data
pub const SLEEP_ACTIVITY_INSTANTANEOUS_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2b41);

/// Bluetooth characteristic UUID.
///
/// `0x2b42` Sleep Activity Summary Data
pub const SLEEP_ACTIVITY_SUMMARY_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2b42);

/// Bluetooth characteristic UUID.
///
/// `0x2b43` Physical Activity Monitor Control Point
pub const PHYSICAL_ACTIVITY_MONITOR_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2b43);

/// Bluetooth characteristic UUID.
///
/// `0x2b44` Physical Activity Current Session
pub const PHYSICAL_ACTIVITY_CURRENT_SESSION: BluetoothUuid16 = BluetoothUuid16::new(0x2b44);

/// Bluetooth characteristic UUID.
///
/// `0x2b45` Physical Activity Session Descriptor
pub const PHYSICAL_ACTIVITY_SESSION_DESCRIPTOR: BluetoothUuid16 = BluetoothUuid16::new(0x2b45);

/// Bluetooth characteristic UUID.
///
/// `0x2b46` Preferred Units
pub const PREFERRED_UNITS: BluetoothUuid16 = BluetoothUuid16::new(0x2b46);

/// Bluetooth characteristic UUID.
///
/// `0x2b47` High Resolution Height
pub const HIGH_RESOLUTION_HEIGHT: BluetoothUuid16 = BluetoothUuid16::new(0x2b47);

/// Bluetooth characteristic UUID.
///
/// `0x2b48` Middle Name
pub const MIDDLE_NAME: BluetoothUuid16 = BluetoothUuid16::new(0x2b48);

/// Bluetooth characteristic UUID.
///
/// `0x2b49` Stride Length
pub const STRIDE_LENGTH: BluetoothUuid16 = BluetoothUuid16::new(0x2b49);

/// Bluetooth characteristic UUID.
///
/// `0x2b4a` Handedness
pub const HANDEDNESS: BluetoothUuid16 = BluetoothUuid16::new(0x2b4a);

/// Bluetooth characteristic UUID.
///
/// `0x2b4b` Device Wearing Position
pub const DEVICE_WEARING_POSITION: BluetoothUuid16 = BluetoothUuid16::new(0x2b4b);

/// Bluetooth characteristic UUID.
///
/// `0x2b4c` Four Zone Heart Rate Limits
pub const FOUR_ZONE_HEART_RATE_LIMITS: BluetoothUuid16 = BluetoothUuid16::new(0x2b4c);

/// Bluetooth characteristic UUID.
///
/// `0x2b4d` High Intensity Exercise Threshold
pub const HIGH_INTENSITY_EXERCISE_THRESHOLD: BluetoothUuid16 = BluetoothUuid16::new(0x2b4d);

/// Bluetooth characteristic UUID.
///
/// `0x2b4e` Activity Goal
pub const ACTIVITY_GOAL: BluetoothUuid16 = BluetoothUuid16::new(0x2b4e);

/// Bluetooth characteristic UUID.
///
/// `0x2b4f` Sedentary Interval Notification
pub const SEDENTARY_INTERVAL_NOTIFICATION: BluetoothUuid16 = BluetoothUuid16::new(0x2b4f);

/// Bluetooth characteristic UUID.
///
/// `0x2b50` Caloric Intake
pub const CALORIC_INTAKE: BluetoothUuid16 = BluetoothUuid16::new(0x2b50);

/// Bluetooth characteristic UUID.
///
/// `0x2b51` TMAP Role
pub const TMAP_ROLE: BluetoothUuid16 = BluetoothUuid16::new(0x2b51);

/// Bluetooth characteristic UUID.
///
/// `0x2b77` Audio Input State
pub const AUDIO_INPUT_STATE: BluetoothUuid16 = BluetoothUuid16::new(0x2b77);

/// Bluetooth characteristic UUID.
///
/// `0x2b78` Gain Settings Attribute
pub const GAIN_SETTINGS_ATTRIBUTE: BluetoothUuid16 = BluetoothUuid16::new(0x2b78);

/// Bluetooth characteristic UUID.
///
/// `0x2b79` Audio Input Type
pub const AUDIO_INPUT_TYPE: BluetoothUuid16 = BluetoothUuid16::new(0x2b79);

/// Bluetooth characteristic UUID.
///
/// `0x2b7a` Audio Input Status
pub const AUDIO_INPUT_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2b7a);

/// Bluetooth characteristic UUID.
///
/// `0x2b7b` Audio Input Control Point
pub const AUDIO_INPUT_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2b7b);

/// Bluetooth characteristic UUID.
///
/// `0x2b7c` Audio Input Description
pub const AUDIO_INPUT_DESCRIPTION: BluetoothUuid16 = BluetoothUuid16::new(0x2b7c);

/// Bluetooth characteristic UUID.
///
/// `0x2b7d` Volume State
pub const VOLUME_STATE: BluetoothUuid16 = BluetoothUuid16::new(0x2b7d);

/// Bluetooth characteristic UUID.
///
/// `0x2b7e` Volume Control Point
pub const VOLUME_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2b7e);

/// Bluetooth characteristic UUID.
///
/// `0x2b7f` Volume Flags
pub const VOLUME_FLAGS: BluetoothUuid16 = BluetoothUuid16::new(0x2b7f);

/// Bluetooth characteristic UUID.
///
/// `0x2b80` Volume Offset State
pub const VOLUME_OFFSET_STATE: BluetoothUuid16 = BluetoothUuid16::new(0x2b80);

/// Bluetooth characteristic UUID.
///
/// `0x2b81` Audio Location
pub const AUDIO_LOCATION: BluetoothUuid16 = BluetoothUuid16::new(0x2b81);

/// Bluetooth characteristic UUID.
///
/// `0x2b82` Volume Offset Control Point
pub const VOLUME_OFFSET_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2b82);

/// Bluetooth characteristic UUID.
///
/// `0x2b83` Audio Output Description
pub const AUDIO_OUTPUT_DESCRIPTION: BluetoothUuid16 = BluetoothUuid16::new(0x2b83);

/// Bluetooth characteristic UUID.
///
/// `0x2b84` Set Identity Resolving Key
pub const SET_IDENTITY_RESOLVING_KEY: BluetoothUuid16 = BluetoothUuid16::new(0x2b84);

/// Bluetooth characteristic UUID.
///
/// `0x2b85` Coordinated Set Size
pub const COORDINATED_SET_SIZE: BluetoothUuid16 = BluetoothUuid16::new(0x2b85);

/// Bluetooth characteristic UUID.
///
/// `0x2b86` Set Member Lock
pub const SET_MEMBER_LOCK: BluetoothUuid16 = BluetoothUuid16::new(0x2b86);

/// Bluetooth characteristic UUID.
///
/// `0x2b87` Set Member Rank
pub const SET_MEMBER_RANK: BluetoothUuid16 = BluetoothUuid16::new(0x2b87);

/// Bluetooth characteristic UUID.
///
/// `0x2b88` Encrypted Data Key Material
pub const ENCRYPTED_DATA_KEY_MATERIAL: BluetoothUuid16 = BluetoothUuid16::new(0x2b88);

/// Bluetooth characteristic UUID.
///
/// `0x2b89` Apparent Energy 32
pub const APPARENT_ENERGY_32: BluetoothUuid16 = BluetoothUuid16::new(0x2b89);

/// Bluetooth characteristic UUID.
///
/// `0x2b8a` Apparent Power
pub const APPARENT_POWER: BluetoothUuid16 = BluetoothUuid16::new(0x2b8a);

/// Bluetooth characteristic UUID.
///
/// `0x2b8b` Live Health Observations
pub const LIVE_HEALTH_OBSERVATIONS: BluetoothUuid16 = BluetoothUuid16::new(0x2b8b);

/// Bluetooth characteristic UUID.
///
/// `0x2b8c` CO\textsubscript{2} Concentration
pub const CO2_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2b8c);

/// Bluetooth characteristic UUID.
///
/// `0x2b8d` Cosine of the Angle
pub const COSINE_OF_THE_ANGLE: BluetoothUuid16 = BluetoothUuid16::new(0x2b8d);

/// Bluetooth characteristic UUID.
///
/// `0x2b8e` Device Time Feature
pub const DEVICE_TIME_FEATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2b8e);

/// Bluetooth characteristic UUID.
///
/// `0x2b8f` Device Time Parameters
pub const DEVICE_TIME_PARAMETERS: BluetoothUuid16 = BluetoothUuid16::new(0x2b8f);

/// Bluetooth characteristic UUID.
///
/// `0x2b90` Device Time
pub const DEVICE_TIME: BluetoothUuid16 = BluetoothUuid16::new(0x2b90);

/// Bluetooth characteristic UUID.
///
/// `0x2b91` Device Time Control Point
pub const DEVICE_TIME_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2b91);

/// Bluetooth characteristic UUID.
///
/// `0x2b92` Time Change Log Data
pub const TIME_CHANGE_LOG_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2b92);

/// Bluetooth characteristic UUID.
///
/// `0x2b93` Media Player Name
pub const MEDIA_PLAYER_NAME: BluetoothUuid16 = BluetoothUuid16::new(0x2b93);

/// Bluetooth characteristic UUID.
///
/// `0x2b94` Media Player Icon Object ID
pub const MEDIA_PLAYER_ICON_OBJECT_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2b94);

/// Bluetooth characteristic UUID.
///
/// `0x2b95` Media Player Icon URL
pub const MEDIA_PLAYER_ICON_URL: BluetoothUuid16 = BluetoothUuid16::new(0x2b95);

/// Bluetooth characteristic UUID.
///
/// `0x2b96` Track Changed
pub const TRACK_CHANGED: BluetoothUuid16 = BluetoothUuid16::new(0x2b96);

/// Bluetooth characteristic UUID.
///
/// `0x2b97` Track Title
pub const TRACK_TITLE: BluetoothUuid16 = BluetoothUuid16::new(0x2b97);

/// Bluetooth characteristic UUID.
///
/// `0x2b98` Track Duration
pub const TRACK_DURATION: BluetoothUuid16 = BluetoothUuid16::new(0x2b98);

/// Bluetooth characteristic UUID.
///
/// `0x2b99` Track Position
pub const TRACK_POSITION: BluetoothUuid16 = BluetoothUuid16::new(0x2b99);

/// Bluetooth characteristic UUID.
///
/// `0x2b9a` Playback Speed
pub const PLAYBACK_SPEED: BluetoothUuid16 = BluetoothUuid16::new(0x2b9a);

/// Bluetooth characteristic UUID.
///
/// `0x2b9b` Seeking Speed
pub const SEEKING_SPEED: BluetoothUuid16 = BluetoothUuid16::new(0x2b9b);

/// Bluetooth characteristic UUID.
///
/// `0x2b9c` Current Track Segments Object ID
pub const CURRENT_TRACK_SEGMENTS_OBJECT_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2b9c);

/// Bluetooth characteristic UUID.
///
/// `0x2b9d` Current Track Object ID
pub const CURRENT_TRACK_OBJECT_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2b9d);

/// Bluetooth characteristic UUID.
///
/// `0x2b9e` Next Track Object ID
pub const NEXT_TRACK_OBJECT_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2b9e);

/// Bluetooth characteristic UUID.
///
/// `0x2b9f` Parent Group Object ID
pub const PARENT_GROUP_OBJECT_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2b9f);

/// Bluetooth characteristic UUID.
///
/// `0x2ba0` Current Group Object ID
pub const CURRENT_GROUP_OBJECT_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2ba0);

/// Bluetooth characteristic UUID.
///
/// `0x2ba1` Playing Order
pub const PLAYING_ORDER: BluetoothUuid16 = BluetoothUuid16::new(0x2ba1);

/// Bluetooth characteristic UUID.
///
/// `0x2ba2` Playing Orders Supported
pub const PLAYING_ORDERS_SUPPORTED: BluetoothUuid16 = BluetoothUuid16::new(0x2ba2);

/// Bluetooth characteristic UUID.
///
/// `0x2ba3` Media State
pub const MEDIA_STATE: BluetoothUuid16 = BluetoothUuid16::new(0x2ba3);

/// Bluetooth characteristic UUID.
///
/// `0x2ba4` Media Control Point
pub const MEDIA_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2ba4);

/// Bluetooth characteristic UUID.
///
/// `0x2ba5` Media Control Point Opcodes Supported
pub const MEDIA_CONTROL_POINT_OPCODES_SUPPORTED: BluetoothUuid16 = BluetoothUuid16::new(0x2ba5);

/// Bluetooth characteristic UUID.
///
/// `0x2ba6` Search Results Object ID
pub const SEARCH_RESULTS_OBJECT_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2ba6);

/// Bluetooth characteristic UUID.
///
/// `0x2ba7` Search Control Point
pub const SEARCH_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2ba7);

/// Bluetooth characteristic UUID.
///
/// `0x2ba8` Energy 32
pub const ENERGY_32: BluetoothUuid16 = BluetoothUuid16::new(0x2ba8);

/// Bluetooth characteristic UUID.
///
/// `0x2bad` Constant Tone Extension Enable
pub const CONSTANT_TONE_EXTENSION_ENABLE: BluetoothUuid16 = BluetoothUuid16::new(0x2bad);

/// Bluetooth characteristic UUID.
///
/// `0x2bae` Advertising Constant Tone Extension Minimum Length
pub const ADVERTISING_CONSTANT_TONE_EXTENSION_MINIMUM_LENGTH: BluetoothUuid16 = BluetoothUuid16::new(0x2bae);

/// Bluetooth characteristic UUID.
///
/// `0x2baf` Advertising Constant Tone Extension Minimum Transmit Count
pub const ADVERTISING_CONSTANT_TONE_EXTENSION_MINIMUM_TRANSMIT_COUNT: BluetoothUuid16 = BluetoothUuid16::new(0x2baf);

/// Bluetooth characteristic UUID.
///
/// `0x2bb0` Advertising Constant Tone Extension Transmit Duration
pub const ADVERTISING_CONSTANT_TONE_EXTENSION_TRANSMIT_DURATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bb0);

/// Bluetooth characteristic UUID.
///
/// `0x2bb1` Advertising Constant Tone Extension Interval
pub const ADVERTISING_CONSTANT_TONE_EXTENSION_INTERVAL: BluetoothUuid16 = BluetoothUuid16::new(0x2bb1);

/// Bluetooth characteristic UUID.
///
/// `0x2bb2` Advertising Constant Tone Extension PHY
pub const ADVERTISING_CONSTANT_TONE_EXTENSION_PHY: BluetoothUuid16 = BluetoothUuid16::new(0x2bb2);

/// Bluetooth characteristic UUID.
///
/// `0x2bb3` Bearer Provider Name
pub const BEARER_PROVIDER_NAME: BluetoothUuid16 = BluetoothUuid16::new(0x2bb3);

/// Bluetooth characteristic UUID.
///
/// `0x2bb4` Bearer UCI
pub const BEARER_UCI: BluetoothUuid16 = BluetoothUuid16::new(0x2bb4);

/// Bluetooth characteristic UUID.
///
/// `0x2bb5` Bearer Technology
pub const BEARER_TECHNOLOGY: BluetoothUuid16 = BluetoothUuid16::new(0x2bb5);

/// Bluetooth characteristic UUID.
///
/// `0x2bb6` Bearer URI Schemes Supported List
pub const BEARER_URI_SCHEMES_SUPPORTED_LIST: BluetoothUuid16 = BluetoothUuid16::new(0x2bb6);

/// Bluetooth characteristic UUID.
///
/// `0x2bb7` Bearer Signal Strength
pub const BEARER_SIGNAL_STRENGTH: BluetoothUuid16 = BluetoothUuid16::new(0x2bb7);

/// Bluetooth characteristic UUID.
///
/// `0x2bb8` Bearer Signal Strength Reporting Interval
pub const BEARER_SIGNAL_STRENGTH_REPORTING_INTERVAL: BluetoothUuid16 = BluetoothUuid16::new(0x2bb8);

/// Bluetooth characteristic UUID.
///
/// `0x2bb9` Bearer List Current Calls
pub const BEARER_LIST_CURRENT_CALLS: BluetoothUuid16 = BluetoothUuid16::new(0x2bb9);

/// Bluetooth characteristic UUID.
///
/// `0x2bba` Content Control ID
pub const CONTENT_CONTROL_ID: BluetoothUuid16 = BluetoothUuid16::new(0x2bba);

/// Bluetooth characteristic UUID.
///
/// `0x2bbb` Status Flags
pub const STATUS_FLAGS: BluetoothUuid16 = BluetoothUuid16::new(0x2bbb);

/// Bluetooth characteristic UUID.
///
/// `0x2bbc` Incoming Call Target Bearer URI
pub const INCOMING_CALL_TARGET_BEARER_URI: BluetoothUuid16 = BluetoothUuid16::new(0x2bbc);

/// Bluetooth characteristic UUID.
///
/// `0x2bbd` Call State
pub const CALL_STATE: BluetoothUuid16 = BluetoothUuid16::new(0x2bbd);

/// Bluetooth characteristic UUID.
///
/// `0x2bbe` Call Control Point
pub const CALL_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2bbe);

/// Bluetooth characteristic UUID.
///
/// `0x2bbf` Call Control Point Optional Opcodes
pub const CALL_CONTROL_POINT_OPTIONAL_OPCODES: BluetoothUuid16 = BluetoothUuid16::new(0x2bbf);

/// Bluetooth characteristic UUID.
///
/// `0x2bc0` Termination Reason
pub const TERMINATION_REASON: BluetoothUuid16 = BluetoothUuid16::new(0x2bc0);

/// Bluetooth characteristic UUID.
///
/// `0x2bc1` Incoming Call
pub const INCOMING_CALL: BluetoothUuid16 = BluetoothUuid16::new(0x2bc1);

/// Bluetooth characteristic UUID.
///
/// `0x2bc2` Call Friendly Name
pub const CALL_FRIENDLY_NAME: BluetoothUuid16 = BluetoothUuid16::new(0x2bc2);

/// Bluetooth characteristic UUID.
///
/// `0x2bc3` Mute
pub const MUTE: BluetoothUuid16 = BluetoothUuid16::new(0x2bc3);

/// Bluetooth characteristic UUID.
///
/// `0x2bc4` Sink ASE
pub const SINK_ASE: BluetoothUuid16 = BluetoothUuid16::new(0x2bc4);

/// Bluetooth characteristic UUID.
///
/// `0x2bc5` Source ASE
pub const SOURCE_ASE: BluetoothUuid16 = BluetoothUuid16::new(0x2bc5);

/// Bluetooth characteristic UUID.
///
/// `0x2bc6` ASE Control Point
pub const ASE_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2bc6);

/// Bluetooth characteristic UUID.
///
/// `0x2bc7` Broadcast Audio Scan Control Point
pub const BROADCAST_AUDIO_SCAN_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2bc7);

/// Bluetooth characteristic UUID.
///
/// `0x2bc8` Broadcast Receive State
pub const BROADCAST_RECEIVE_STATE: BluetoothUuid16 = BluetoothUuid16::new(0x2bc8);

/// Bluetooth characteristic UUID.
///
/// `0x2bc9` Sink PAC
pub const SINK_PAC: BluetoothUuid16 = BluetoothUuid16::new(0x2bc9);

/// Bluetooth characteristic UUID.
///
/// `0x2bca` Sink Audio Locations
pub const SINK_AUDIO_LOCATIONS: BluetoothUuid16 = BluetoothUuid16::new(0x2bca);

/// Bluetooth characteristic UUID.
///
/// `0x2bcb` Source PAC
pub const SOURCE_PAC: BluetoothUuid16 = BluetoothUuid16::new(0x2bcb);

/// Bluetooth characteristic UUID.
///
/// `0x2bcc` Source Audio Locations
pub const SOURCE_AUDIO_LOCATIONS: BluetoothUuid16 = BluetoothUuid16::new(0x2bcc);

/// Bluetooth characteristic UUID.
///
/// `0x2bcd` Available Audio Contexts
pub const AVAILABLE_AUDIO_CONTEXTS: BluetoothUuid16 = BluetoothUuid16::new(0x2bcd);

/// Bluetooth characteristic UUID.
///
/// `0x2bce` Supported Audio Contexts
pub const SUPPORTED_AUDIO_CONTEXTS: BluetoothUuid16 = BluetoothUuid16::new(0x2bce);

/// Bluetooth characteristic UUID.
///
/// `0x2bcf` Ammonia Concentration
pub const AMMONIA_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bcf);

/// Bluetooth characteristic UUID.
///
/// `0x2bd0` Carbon Monoxide Concentration
pub const CARBON_MONOXIDE_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bd0);

/// Bluetooth characteristic UUID.
///
/// `0x2bd1` Methane Concentration
pub const METHANE_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bd1);

/// Bluetooth characteristic UUID.
///
/// `0x2bd2` Nitrogen Dioxide Concentration
pub const NITROGEN_DIOXIDE_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bd2);

/// Bluetooth characteristic UUID.
///
/// `0x2bd3` Non-Methane Volatile Organic Compounds Concentration
pub const NON_METHANE_VOLATILE_ORGANIC_COMPOUNDS_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bd3);

/// Bluetooth characteristic UUID.
///
/// `0x2bd4` Ozone Concentration
pub const OZONE_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bd4);

/// Bluetooth characteristic UUID.
///
/// `0x2bd5` Particulate Matter - PM1 Concentration
pub const PARTICULATE_MATTER_PM1_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bd5);

/// Bluetooth characteristic UUID.
///
/// `0x2bd6` Particulate Matter - PM2.5 Concentration
pub const PARTICULATE_MATTER_PM25_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bd6);

/// Bluetooth characteristic UUID.
///
/// `0x2bd7` Particulate Matter - PM10 Concentration
pub const PARTICULATE_MATTER_PM10_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bd7);

/// Bluetooth characteristic UUID.
///
/// `0x2bd8` Sulfur Dioxide Concentration
pub const SULFUR_DIOXIDE_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bd8);

/// Bluetooth characteristic UUID.
///
/// `0x2bd9` Sulfur Hexafluoride Concentration
pub const SULFUR_HEXAFLUORIDE_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bd9);

/// Bluetooth characteristic UUID.
///
/// `0x2bda` Hearing Aid Features
pub const HEARING_AID_FEATURES: BluetoothUuid16 = BluetoothUuid16::new(0x2bda);

/// Bluetooth characteristic UUID.
///
/// `0x2bdb` Hearing Aid Preset Control Point
pub const HEARING_AID_PRESET_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2bdb);

/// Bluetooth characteristic UUID.
///
/// `0x2bdc` Active Preset Index
pub const ACTIVE_PRESET_INDEX: BluetoothUuid16 = BluetoothUuid16::new(0x2bdc);

/// Bluetooth characteristic UUID.
///
/// `0x2bdd` Stored Health Observations
pub const STORED_HEALTH_OBSERVATIONS: BluetoothUuid16 = BluetoothUuid16::new(0x2bdd);

/// Bluetooth characteristic UUID.
///
/// `0x2bde` Fixed String 64
pub const FIXED_STRING_64: BluetoothUuid16 = BluetoothUuid16::new(0x2bde);

/// Bluetooth characteristic UUID.
///
/// `0x2bdf` High Temperature
pub const HIGH_TEMPERATURE: BluetoothUuid16 = BluetoothUuid16::new(0x2bdf);

/// Bluetooth characteristic UUID.
///
/// `0x2be0` High Voltage
pub const HIGH_VOLTAGE: BluetoothUuid16 = BluetoothUuid16::new(0x2be0);

/// Bluetooth characteristic UUID.
///
/// `0x2be1` Light Distribution
pub const LIGHT_DISTRIBUTION: BluetoothUuid16 = BluetoothUuid16::new(0x2be1);

/// Bluetooth characteristic UUID.
///
/// `0x2be2` Light Output
pub const LIGHT_OUTPUT: BluetoothUuid16 = BluetoothUuid16::new(0x2be2);

/// Bluetooth characteristic UUID.
///
/// `0x2be3` Light Source Type
pub const LIGHT_SOURCE_TYPE: BluetoothUuid16 = BluetoothUuid16::new(0x2be3);

/// Bluetooth characteristic UUID.
///
/// `0x2be4` Noise
pub const NOISE: BluetoothUuid16 = BluetoothUuid16::new(0x2be4);

/// Bluetooth characteristic UUID.
///
/// `0x2be5` Relative Runtime in a Correlated Color Temperature Range
pub const RELATIVE_RUNTIME_IN_A_CORRELATED_COLOR_TEMPERATURE_RANGE: BluetoothUuid16 = BluetoothUuid16::new(0x2be5);

/// Bluetooth characteristic UUID.
///
/// `0x2be6` Time Second 32
pub const TIME_SECOND_32: BluetoothUuid16 = BluetoothUuid16::new(0x2be6);

/// Bluetooth characteristic UUID.
///
/// `0x2be7` VOC Concentration
pub const VOC_CONCENTRATION: BluetoothUuid16 = BluetoothUuid16::new(0x2be7);

/// Bluetooth characteristic UUID.
///
/// `0x2be8` Voltage Frequency
pub const VOLTAGE_FREQUENCY: BluetoothUuid16 = BluetoothUuid16::new(0x2be8);

/// Bluetooth characteristic UUID.
///
/// `0x2be9` Battery Critical Status
pub const BATTERY_CRITICAL_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2be9);

/// Bluetooth characteristic UUID.
///
/// `0x2bea` Battery Health Status
pub const BATTERY_HEALTH_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2bea);

/// Bluetooth characteristic UUID.
///
/// `0x2beb` Battery Health Information
pub const BATTERY_HEALTH_INFORMATION: BluetoothUuid16 = BluetoothUuid16::new(0x2beb);

/// Bluetooth characteristic UUID.
///
/// `0x2bec` Battery Information
pub const BATTERY_INFORMATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bec);

/// Bluetooth characteristic UUID.
///
/// `0x2bed` Battery Level Status
pub const BATTERY_LEVEL_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2bed);

/// Bluetooth characteristic UUID.
///
/// `0x2bee` Battery Time Status
pub const BATTERY_TIME_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2bee);

/// Bluetooth characteristic UUID.
///
/// `0x2bef` Estimated Service Date
pub const ESTIMATED_SERVICE_DATE: BluetoothUuid16 = BluetoothUuid16::new(0x2bef);

/// Bluetooth characteristic UUID.
///
/// `0x2bf0` Battery Energy Status
pub const BATTERY_ENERGY_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2bf0);

/// Bluetooth characteristic UUID.
///
/// `0x2bf1` Observation Schedule Changed
pub const OBSERVATION_SCHEDULE_CHANGED: BluetoothUuid16 = BluetoothUuid16::new(0x2bf1);

/// Bluetooth characteristic UUID.
///
/// `0x2bf2` Current Elapsed Time
pub const CURRENT_ELAPSED_TIME: BluetoothUuid16 = BluetoothUuid16::new(0x2bf2);

/// Bluetooth characteristic UUID.
///
/// `0x2bf3` Health Sensor Features
pub const HEALTH_SENSOR_FEATURES: BluetoothUuid16 = BluetoothUuid16::new(0x2bf3);

/// Bluetooth characteristic UUID.
///
/// `0x2bf4` GHS Control Point
pub const GHS_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2bf4);

/// Bluetooth characteristic UUID.
///
/// `0x2bf5` LE GATT Security Levels
pub const LE_GATT_SECURITY_LEVELS: BluetoothUuid16 = BluetoothUuid16::new(0x2bf5);

/// Bluetooth characteristic UUID.
///
/// `0x2bf6` ESL Address
pub const ESL_ADDRESS: BluetoothUuid16 = BluetoothUuid16::new(0x2bf6);

/// Bluetooth characteristic UUID.
///
/// `0x2bf7` AP Sync Key Material
pub const AP_SYNC_KEY_MATERIAL: BluetoothUuid16 = BluetoothUuid16::new(0x2bf7);

/// Bluetooth characteristic UUID.
///
/// `0x2bf8` ESL Response Key Material
pub const ESL_RESPONSE_KEY_MATERIAL: BluetoothUuid16 = BluetoothUuid16::new(0x2bf8);

/// Bluetooth characteristic UUID.
///
/// `0x2bf9` ESL Current Absolute Time
pub const ESL_CURRENT_ABSOLUTE_TIME: BluetoothUuid16 = BluetoothUuid16::new(0x2bf9);

/// Bluetooth characteristic UUID.
///
/// `0x2bfa` ESL Display Information
pub const ESL_DISPLAY_INFORMATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bfa);

/// Bluetooth characteristic UUID.
///
/// `0x2bfb` ESL Image Information
pub const ESL_IMAGE_INFORMATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bfb);

/// Bluetooth characteristic UUID.
///
/// `0x2bfc` ESL Sensor Information
pub const ESL_SENSOR_INFORMATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bfc);

/// Bluetooth characteristic UUID.
///
/// `0x2bfd` ESL LED Information
pub const ESL_LED_INFORMATION: BluetoothUuid16 = BluetoothUuid16::new(0x2bfd);

/// Bluetooth characteristic UUID.
///
/// `0x2bfe` ESL Control Point
pub const ESL_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2bfe);

/// Bluetooth characteristic UUID.
///
/// `0x2bff` UDI for Medical Devices
pub const UDI_FOR_MEDICAL_DEVICES: BluetoothUuid16 = BluetoothUuid16::new(0x2bff);

/// Bluetooth characteristic UUID.
///
/// `0x2c00` GMAP Role
pub const GMAP_ROLE: BluetoothUuid16 = BluetoothUuid16::new(0x2c00);

/// Bluetooth characteristic UUID.
///
/// `0x2c01` UGG Features
pub const UGG_FEATURES: BluetoothUuid16 = BluetoothUuid16::new(0x2c01);

/// Bluetooth characteristic UUID.
///
/// `0x2c02` UGT Features
pub const UGT_FEATURES: BluetoothUuid16 = BluetoothUuid16::new(0x2c02);

/// Bluetooth characteristic UUID.
///
/// `0x2c03` BGS Features
pub const BGS_FEATURES: BluetoothUuid16 = BluetoothUuid16::new(0x2c03);

/// Bluetooth characteristic UUID.
///
/// `0x2c04` BGR Features
pub const BGR_FEATURES: BluetoothUuid16 = BluetoothUuid16::new(0x2c04);

/// Bluetooth characteristic UUID.
///
/// `0x2c05` Percentage 8 Steps
pub const PERCENTAGE_8_STEPS: BluetoothUuid16 = BluetoothUuid16::new(0x2c05);

/// Bluetooth characteristic UUID.
///
/// `0x2c06` Acceleration
pub const ACCELERATION: BluetoothUuid16 = BluetoothUuid16::new(0x2c06);

/// Bluetooth characteristic UUID.
///
/// `0x2c07` Force
pub const FORCE: BluetoothUuid16 = BluetoothUuid16::new(0x2c07);

/// Bluetooth characteristic UUID.
///
/// `0x2c08` Linear Position
pub const LINEAR_POSITION: BluetoothUuid16 = BluetoothUuid16::new(0x2c08);

/// Bluetooth characteristic UUID.
///
/// `0x2c09` Rotational Speed
pub const ROTATIONAL_SPEED: BluetoothUuid16 = BluetoothUuid16::new(0x2c09);

/// Bluetooth characteristic UUID.
///
/// `0x2c0a` Length
pub const LENGTH: BluetoothUuid16 = BluetoothUuid16::new(0x2c0a);

/// Bluetooth characteristic UUID.
///
/// `0x2c0b` Torque
pub const TORQUE: BluetoothUuid16 = BluetoothUuid16::new(0x2c0b);

/// Bluetooth characteristic UUID.
///
/// `0x2c0c` IMD Status
pub const IMD_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2c0c);

/// Bluetooth characteristic UUID.
///
/// `0x2c0d` IMDS Descriptor Value Changed
pub const IMDS_DESCRIPTOR_VALUE_CHANGED: BluetoothUuid16 = BluetoothUuid16::new(0x2c0d);

/// Bluetooth characteristic UUID.
///
/// `0x2c0e` First Use Date
pub const FIRST_USE_DATE: BluetoothUuid16 = BluetoothUuid16::new(0x2c0e);

/// Bluetooth characteristic UUID.
///
/// `0x2c0f` Life Cycle Data
pub const LIFE_CYCLE_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2c0f);

/// Bluetooth characteristic UUID.
///
/// `0x2c10` Work Cycle Data
pub const WORK_CYCLE_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2c10);

/// Bluetooth characteristic UUID.
///
/// `0x2c11` Service Cycle Data
pub const SERVICE_CYCLE_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2c11);

/// Bluetooth characteristic UUID.
///
/// `0x2c12` IMD Control
pub const IMD_CONTROL: BluetoothUuid16 = BluetoothUuid16::new(0x2c12);

/// Bluetooth characteristic UUID.
///
/// `0x2c13` IMD Historical Data
pub const IMD_HISTORICAL_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2c13);

/// Bluetooth characteristic UUID.
///
/// `0x2c14` RAS Features
pub const RAS_FEATURES: BluetoothUuid16 = BluetoothUuid16::new(0x2c14);

/// Bluetooth characteristic UUID.
///
/// `0x2c15` Real-time Ranging Data
pub const REAL_TIME_RANGING_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2c15);

/// Bluetooth characteristic UUID.
///
/// `0x2c16` On-demand Ranging Data
pub const ON_DEMAND_RANGING_DATA: BluetoothUuid16 = BluetoothUuid16::new(0x2c16);

/// Bluetooth characteristic UUID.
///
/// `0x2c17` RAS Control Point
pub const RAS_CONTROL_POINT: BluetoothUuid16 = BluetoothUuid16::new(0x2c17);

/// Bluetooth characteristic UUID.
///
/// `0x2c18` Ranging Data Ready
pub const RANGING_DATA_READY: BluetoothUuid16 = BluetoothUuid16::new(0x2c18);

/// Bluetooth characteristic UUID.
///
/// `0x2c19` Ranging Data Overwritten
pub const RANGING_DATA_OVERWRITTEN: BluetoothUuid16 = BluetoothUuid16::new(0x2c19);

/// Bluetooth characteristic UUID.
///
/// `0x2c1b` Humidity 8
pub const HUMIDITY_8: BluetoothUuid16 = BluetoothUuid16::new(0x2c1b);

/// Bluetooth characteristic UUID.
///
/// `0x2c1c` Illuminance 16
pub const ILLUMINANCE_16: BluetoothUuid16 = BluetoothUuid16::new(0x2c1c);

/// Bluetooth characteristic UUID.
///
/// `0x2c1d` Acceleration 3D
pub const ACCELERATION_3D: BluetoothUuid16 = BluetoothUuid16::new(0x2c1d);

/// Bluetooth characteristic UUID.
///
/// `0x2c1e` Precise Acceleration 3D
pub const PRECISE_ACCELERATION_3D: BluetoothUuid16 = BluetoothUuid16::new(0x2c1e);

/// Bluetooth characteristic UUID.
///
/// `0x2c1f` Acceleration Detection Status
pub const ACCELERATION_DETECTION_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2c1f);

/// Bluetooth characteristic UUID.
///
/// `0x2c20` Door/Window Status
pub const DOORWINDOW_STATUS: BluetoothUuid16 = BluetoothUuid16::new(0x2c20);

/// Bluetooth characteristic UUID.
///
/// `0x2c21` Pushbutton Status 8
pub const PUSHBUTTON_STATUS_8: BluetoothUuid16 = BluetoothUuid16::new(0x2c21);

/// Bluetooth characteristic UUID.
///
/// `0x2c22` Contact Status 8
pub const CONTACT_STATUS_8: BluetoothUuid16 = BluetoothUuid16::new(0x2c22);

/// Bluetooth characteristic UUID.
///
/// `0x2c23` HID ISO Properties
pub const HID_ISO_PROPERTIES: BluetoothUuid16 = BluetoothUuid16::new(0x2c23);

/// Bluetooth characteristic UUID.
///
/// `0x2c24` LE HID Operation Mode
pub const LE_HID_OPERATION_MODE: BluetoothUuid16 = BluetoothUuid16::new(0x2c24);