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
//! UUIDs for the categories 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 Appearance UUID.
///
/// `0x0000` Generic Unknown
pub const UNKNOWN: BluetoothUuid16 = super::from_category(0x0000, 0x0000);

/// Bluetooth Appearance UUID.
///
/// `0x0040` Generic Phone
pub const PHONE: BluetoothUuid16 = super::from_category(0x0001, 0x0000);

pub mod computer {
    //! Appearance computer with subcategories.
    //!
    //! Generic variant named `GENERIC_COMPUTER`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0080` Generic Computer
    pub const GENERIC_COMPUTER: BluetoothUuid16 = from_category(0x0002, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0081` Computer | Desktop Workstation
    pub const DESKTOP_WORKSTATION: BluetoothUuid16 = from_category(0x0002, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0082` Computer | Server-class Computer
    pub const SERVER_CLASS_COMPUTER: BluetoothUuid16 = from_category(0x0002, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0083` Computer | Laptop
    pub const LAPTOP: BluetoothUuid16 = from_category(0x0002, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0084` Computer | Handheld PC/PDA (clamshell)
    pub const HANDHELD_PCPDA_CLAMSHELL: BluetoothUuid16 = from_category(0x0002, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0085` Computer | Palm-size PC/PDA
    pub const PALM_SIZE_PCPDA: BluetoothUuid16 = from_category(0x0002, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0086` Computer | Wearable computer (watch size)
    pub const WEARABLE_COMPUTER_WATCH_SIZE: BluetoothUuid16 = from_category(0x0002, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0087` Computer | Tablet
    pub const TABLET: BluetoothUuid16 = from_category(0x0002, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0088` Computer | Docking Station
    pub const DOCKING_STATION: BluetoothUuid16 = from_category(0x0002, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0089` Computer | All in One
    pub const ALL_IN_ONE: BluetoothUuid16 = from_category(0x0002, 0x0009);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x008a` Computer | Blade Server
    pub const BLADE_SERVER: BluetoothUuid16 = from_category(0x0002, 0x000a);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x008b` Computer | Convertible
    pub const CONVERTIBLE: BluetoothUuid16 = from_category(0x0002, 0x000b);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x008c` Computer | Detachable
    pub const DETACHABLE: BluetoothUuid16 = from_category(0x0002, 0x000c);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x008d` Computer | IoT Gateway
    pub const IOT_GATEWAY: BluetoothUuid16 = from_category(0x0002, 0x000d);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x008e` Computer | Mini PC
    pub const MINI_PC: BluetoothUuid16 = from_category(0x0002, 0x000e);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x008f` Computer | Stick PC
    pub const STICK_PC: BluetoothUuid16 = from_category(0x0002, 0x000f);
}

pub mod watch {
    //! Appearance watch with subcategories.
    //!
    //! Generic variant named `GENERIC_WATCH`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x00c0` Generic Watch
    pub const GENERIC_WATCH: BluetoothUuid16 = from_category(0x0003, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x00c1` Watch | Sports Watch
    pub const SPORTS_WATCH: BluetoothUuid16 = from_category(0x0003, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x00c2` Watch | Smartwatch
    pub const SMARTWATCH: BluetoothUuid16 = from_category(0x0003, 0x0002);
}

/// Bluetooth Appearance UUID.
///
/// `0x0100` Generic Clock
pub const CLOCK: BluetoothUuid16 = super::from_category(0x0004, 0x0000);

/// Bluetooth Appearance UUID.
///
/// `0x0140` Generic Display
pub const DISPLAY: BluetoothUuid16 = super::from_category(0x0005, 0x0000);

/// Bluetooth Appearance UUID.
///
/// `0x0180` Generic Remote Control
pub const REMOTE_CONTROL: BluetoothUuid16 = super::from_category(0x0006, 0x0000);

/// Bluetooth Appearance UUID.
///
/// `0x01c0` Generic Eye-glasses
pub const EYE_GLASSES: BluetoothUuid16 = super::from_category(0x0007, 0x0000);

/// Bluetooth Appearance UUID.
///
/// `0x0200` Generic Tag
pub const TAG: BluetoothUuid16 = super::from_category(0x0008, 0x0000);

/// Bluetooth Appearance UUID.
///
/// `0x0240` Generic Keyring
pub const KEYRING: BluetoothUuid16 = super::from_category(0x0009, 0x0000);

/// Bluetooth Appearance UUID.
///
/// `0x0280` Generic Media Player
pub const MEDIA_PLAYER: BluetoothUuid16 = super::from_category(0x000a, 0x0000);

/// Bluetooth Appearance UUID.
///
/// `0x02c0` Generic Barcode Scanner
pub const BARCODE_SCANNER: BluetoothUuid16 = super::from_category(0x000b, 0x0000);

pub mod thermometer {
    //! Appearance thermometer with subcategories.
    //!
    //! Generic variant named `GENERIC_THERMOMETER`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0300` Generic Thermometer
    pub const GENERIC_THERMOMETER: BluetoothUuid16 = from_category(0x000c, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0301` Thermometer | Ear Thermometer
    pub const EAR_THERMOMETER: BluetoothUuid16 = from_category(0x000c, 0x0001);
}

pub mod heart_rate_sensor {
    //! Appearance heart_rate_sensor with subcategories.
    //!
    //! Generic variant named `GENERIC_HEART_RATE_SENSOR`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0340` Generic Heart Rate Sensor
    pub const GENERIC_HEART_RATE_SENSOR: BluetoothUuid16 = from_category(0x000d, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0341` Heart Rate Sensor | Heart Rate Belt
    pub const HEART_RATE_BELT: BluetoothUuid16 = from_category(0x000d, 0x0001);
}

pub mod blood_pressure {
    //! Appearance blood_pressure with subcategories.
    //!
    //! Generic variant named `GENERIC_BLOOD_PRESSURE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0380` Generic Blood Pressure
    pub const GENERIC_BLOOD_PRESSURE: BluetoothUuid16 = from_category(0x000e, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0381` Blood Pressure | Arm Blood Pressure
    pub const ARM_BLOOD_PRESSURE: BluetoothUuid16 = from_category(0x000e, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0382` Blood Pressure | Wrist Blood Pressure
    pub const WRIST_BLOOD_PRESSURE: BluetoothUuid16 = from_category(0x000e, 0x0002);
}

pub mod human_interface_device {
    //! Appearance human_interface_device with subcategories.
    //!
    //! Generic variant named `GENERIC_HUMAN_INTERFACE_DEVICE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x03c0` Generic Human Interface Device
    pub const GENERIC_HUMAN_INTERFACE_DEVICE: BluetoothUuid16 = from_category(0x000f, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x03c1` Human Interface Device | Keyboard
    pub const KEYBOARD: BluetoothUuid16 = from_category(0x000f, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x03c2` Human Interface Device | Mouse
    pub const MOUSE: BluetoothUuid16 = from_category(0x000f, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x03c3` Human Interface Device | Joystick
    pub const JOYSTICK: BluetoothUuid16 = from_category(0x000f, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x03c4` Human Interface Device | Gamepad
    pub const GAMEPAD: BluetoothUuid16 = from_category(0x000f, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x03c5` Human Interface Device | Digitizer Tablet
    pub const DIGITIZER_TABLET: BluetoothUuid16 = from_category(0x000f, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x03c6` Human Interface Device | Card Reader
    pub const CARD_READER: BluetoothUuid16 = from_category(0x000f, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x03c7` Human Interface Device | Digital Pen
    pub const DIGITAL_PEN: BluetoothUuid16 = from_category(0x000f, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x03c8` Human Interface Device | Barcode Scanner
    pub const BARCODE_SCANNER: BluetoothUuid16 = from_category(0x000f, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x03c9` Human Interface Device | Touchpad
    pub const TOUCHPAD: BluetoothUuid16 = from_category(0x000f, 0x0009);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x03ca` Human Interface Device | Presentation Remote
    pub const PRESENTATION_REMOTE: BluetoothUuid16 = from_category(0x000f, 0x000a);
}

/// Bluetooth Appearance UUID.
///
/// `0x0400` Generic Glucose Meter
pub const GLUCOSE_METER: BluetoothUuid16 = super::from_category(0x0010, 0x0000);

pub mod running_walking_sensor {
    //! Appearance running_walking_sensor with subcategories.
    //!
    //! Generic variant named `GENERIC_RUNNING_WALKING_SENSOR`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0440` Generic Running Walking Sensor
    pub const GENERIC_RUNNING_WALKING_SENSOR: BluetoothUuid16 = from_category(0x0011, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0441` Running Walking Sensor | In-Shoe Running Walking Sensor
    pub const IN_SHOE_RUNNING_WALKING_SENSOR: BluetoothUuid16 = from_category(0x0011, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0442` Running Walking Sensor | On-Shoe Running Walking Sensor
    pub const ON_SHOE_RUNNING_WALKING_SENSOR: BluetoothUuid16 = from_category(0x0011, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0443` Running Walking Sensor | On-Hip Running Walking Sensor
    pub const ON_HIP_RUNNING_WALKING_SENSOR: BluetoothUuid16 = from_category(0x0011, 0x0003);
}

pub mod cycling {
    //! Appearance cycling with subcategories.
    //!
    //! Generic variant named `GENERIC_CYCLING`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0480` Generic Cycling
    pub const GENERIC_CYCLING: BluetoothUuid16 = from_category(0x0012, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0481` Cycling | Cycling Computer
    pub const CYCLING_COMPUTER: BluetoothUuid16 = from_category(0x0012, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0482` Cycling | Speed Sensor
    pub const SPEED_SENSOR: BluetoothUuid16 = from_category(0x0012, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0483` Cycling | Cadence Sensor
    pub const CADENCE_SENSOR: BluetoothUuid16 = from_category(0x0012, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0484` Cycling | Power Sensor
    pub const POWER_SENSOR: BluetoothUuid16 = from_category(0x0012, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0485` Cycling | Speed and Cadence Sensor
    pub const SPEED_AND_CADENCE_SENSOR: BluetoothUuid16 = from_category(0x0012, 0x0005);
}

pub mod control_device {
    //! Appearance control_device with subcategories.
    //!
    //! Generic variant named `GENERIC_CONTROL_DEVICE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04c0` Generic Control Device
    pub const GENERIC_CONTROL_DEVICE: BluetoothUuid16 = from_category(0x0013, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04c1` Control Device | Switch
    pub const SWITCH: BluetoothUuid16 = from_category(0x0013, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04c2` Control Device | Multi-switch
    pub const MULTI_SWITCH: BluetoothUuid16 = from_category(0x0013, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04c3` Control Device | Button
    pub const BUTTON: BluetoothUuid16 = from_category(0x0013, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04c4` Control Device | Slider
    pub const SLIDER: BluetoothUuid16 = from_category(0x0013, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04c5` Control Device | Rotary Switch
    pub const ROTARY_SWITCH: BluetoothUuid16 = from_category(0x0013, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04c6` Control Device | Touch Panel
    pub const TOUCH_PANEL: BluetoothUuid16 = from_category(0x0013, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04c7` Control Device | Single Switch
    pub const SINGLE_SWITCH: BluetoothUuid16 = from_category(0x0013, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04c8` Control Device | Double Switch
    pub const DOUBLE_SWITCH: BluetoothUuid16 = from_category(0x0013, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04c9` Control Device | Triple Switch
    pub const TRIPLE_SWITCH: BluetoothUuid16 = from_category(0x0013, 0x0009);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04ca` Control Device | Battery Switch
    pub const BATTERY_SWITCH: BluetoothUuid16 = from_category(0x0013, 0x000a);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04cb` Control Device | Energy Harvesting Switch
    pub const ENERGY_HARVESTING_SWITCH: BluetoothUuid16 = from_category(0x0013, 0x000b);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04cc` Control Device | Push Button
    pub const PUSH_BUTTON: BluetoothUuid16 = from_category(0x0013, 0x000c);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x04cd` Control Device | Dial
    pub const DIAL: BluetoothUuid16 = from_category(0x0013, 0x000d);
}

pub mod network_device {
    //! Appearance network_device with subcategories.
    //!
    //! Generic variant named `GENERIC_NETWORK_DEVICE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0500` Generic Network Device
    pub const GENERIC_NETWORK_DEVICE: BluetoothUuid16 = from_category(0x0014, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0501` Network Device | Access Point
    pub const ACCESS_POINT: BluetoothUuid16 = from_category(0x0014, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0502` Network Device | Mesh Device
    pub const MESH_DEVICE: BluetoothUuid16 = from_category(0x0014, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0503` Network Device | Mesh Network Proxy
    pub const MESH_NETWORK_PROXY: BluetoothUuid16 = from_category(0x0014, 0x0003);
}

pub mod sensor {
    //! Appearance sensor with subcategories.
    //!
    //! Generic variant named `GENERIC_SENSOR`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0540` Generic Sensor
    pub const GENERIC_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0541` Sensor | Motion Sensor
    pub const MOTION_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0542` Sensor | Air quality Sensor
    pub const AIR_QUALITY_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0543` Sensor | Temperature Sensor
    pub const TEMPERATURE_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0544` Sensor | Humidity Sensor
    pub const HUMIDITY_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0545` Sensor | Leak Sensor
    pub const LEAK_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0546` Sensor | Smoke Sensor
    pub const SMOKE_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0547` Sensor | Occupancy Sensor
    pub const OCCUPANCY_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0548` Sensor | Contact Sensor
    pub const CONTACT_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0549` Sensor | Carbon Monoxide Sensor
    pub const CARBON_MONOXIDE_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0009);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x054a` Sensor | Carbon Dioxide Sensor
    pub const CARBON_DIOXIDE_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x000a);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x054b` Sensor | Ambient Light Sensor
    pub const AMBIENT_LIGHT_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x000b);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x054c` Sensor | Energy Sensor
    pub const ENERGY_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x000c);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x054d` Sensor | Color Light Sensor
    pub const COLOR_LIGHT_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x000d);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x054e` Sensor | Rain Sensor
    pub const RAIN_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x000e);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x054f` Sensor | Fire Sensor
    pub const FIRE_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x000f);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0550` Sensor | Wind Sensor
    pub const WIND_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0010);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0551` Sensor | Proximity Sensor
    pub const PROXIMITY_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0011);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0552` Sensor | Multi-Sensor
    pub const MULTI_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0012);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0553` Sensor | Flush Mounted Sensor
    pub const FLUSH_MOUNTED_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0013);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0554` Sensor | Ceiling Mounted Sensor
    pub const CEILING_MOUNTED_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0014);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0555` Sensor | Wall Mounted Sensor
    pub const WALL_MOUNTED_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0015);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0556` Sensor | Multisensor
    pub const MULTISENSOR: BluetoothUuid16 = from_category(0x0015, 0x0016);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0557` Sensor | Energy Meter
    pub const ENERGY_METER: BluetoothUuid16 = from_category(0x0015, 0x0017);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0558` Sensor | Flame Detector
    pub const FLAME_DETECTOR: BluetoothUuid16 = from_category(0x0015, 0x0018);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0559` Sensor | Vehicle Tire Pressure Sensor
    pub const VEHICLE_TIRE_PRESSURE_SENSOR: BluetoothUuid16 = from_category(0x0015, 0x0019);
}

pub mod light_fixtures {
    //! Appearance light_fixtures with subcategories.
    //!
    //! Generic variant named `GENERIC_LIGHT_FIXTURES`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0580` Generic Light Fixtures
    pub const GENERIC_LIGHT_FIXTURES: BluetoothUuid16 = from_category(0x0016, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0581` Light Fixtures | Wall Light
    pub const WALL_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0582` Light Fixtures | Ceiling Light
    pub const CEILING_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0583` Light Fixtures | Floor Light
    pub const FLOOR_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0584` Light Fixtures | Cabinet Light
    pub const CABINET_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0585` Light Fixtures | Desk Light
    pub const DESK_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0586` Light Fixtures | Troffer Light
    pub const TROFFER_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0587` Light Fixtures | Pendant Light
    pub const PENDANT_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0588` Light Fixtures | In-ground Light
    pub const IN_GROUND_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0589` Light Fixtures | Flood Light
    pub const FLOOD_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0009);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x058a` Light Fixtures | Underwater Light
    pub const UNDERWATER_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x000a);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x058b` Light Fixtures | Bollard with Light
    pub const BOLLARD_WITH_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x000b);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x058c` Light Fixtures | Pathway Light
    pub const PATHWAY_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x000c);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x058d` Light Fixtures | Garden Light
    pub const GARDEN_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x000d);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x058e` Light Fixtures | Pole-top Light
    pub const POLE_TOP_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x000e);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x058f` Light Fixtures | Spotlight
    pub const SPOTLIGHT: BluetoothUuid16 = from_category(0x0016, 0x000f);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0590` Light Fixtures | Linear Light
    pub const LINEAR_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0010);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0591` Light Fixtures | Street Light
    pub const STREET_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0011);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0592` Light Fixtures | Shelves Light
    pub const SHELVES_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0012);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0593` Light Fixtures | Bay Light
    pub const BAY_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0013);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0594` Light Fixtures | Emergency Exit Light
    pub const EMERGENCY_EXIT_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0014);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0595` Light Fixtures | Light Controller
    pub const LIGHT_CONTROLLER: BluetoothUuid16 = from_category(0x0016, 0x0015);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0596` Light Fixtures | Light Driver
    pub const LIGHT_DRIVER: BluetoothUuid16 = from_category(0x0016, 0x0016);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0597` Light Fixtures | Bulb
    pub const BULB: BluetoothUuid16 = from_category(0x0016, 0x0017);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0598` Light Fixtures | Low-bay Light
    pub const LOW_BAY_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0018);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0599` Light Fixtures | High-bay Light
    pub const HIGH_BAY_LIGHT: BluetoothUuid16 = from_category(0x0016, 0x0019);
}

pub mod fan {
    //! Appearance fan with subcategories.
    //!
    //! Generic variant named `GENERIC_FAN`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x05c0` Generic Fan
    pub const GENERIC_FAN: BluetoothUuid16 = from_category(0x0017, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x05c1` Fan | Ceiling Fan
    pub const CEILING_FAN: BluetoothUuid16 = from_category(0x0017, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x05c2` Fan | Axial Fan
    pub const AXIAL_FAN: BluetoothUuid16 = from_category(0x0017, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x05c3` Fan | Exhaust Fan
    pub const EXHAUST_FAN: BluetoothUuid16 = from_category(0x0017, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x05c4` Fan | Pedestal Fan
    pub const PEDESTAL_FAN: BluetoothUuid16 = from_category(0x0017, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x05c5` Fan | Desk Fan
    pub const DESK_FAN: BluetoothUuid16 = from_category(0x0017, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x05c6` Fan | Wall Fan
    pub const WALL_FAN: BluetoothUuid16 = from_category(0x0017, 0x0006);
}

pub mod hvac {
    //! Appearance hvac with subcategories.
    //!
    //! Generic variant named `GENERIC_HVAC`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0600` Generic HVAC
    pub const GENERIC_HVAC: BluetoothUuid16 = from_category(0x0018, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0601` HVAC | Thermostat
    pub const THERMOSTAT: BluetoothUuid16 = from_category(0x0018, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0602` HVAC | Humidifier
    pub const HUMIDIFIER: BluetoothUuid16 = from_category(0x0018, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0603` HVAC | De-humidifier
    pub const DE_HUMIDIFIER: BluetoothUuid16 = from_category(0x0018, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0604` HVAC | Heater
    pub const HEATER: BluetoothUuid16 = from_category(0x0018, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0605` HVAC | Radiator
    pub const RADIATOR: BluetoothUuid16 = from_category(0x0018, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0606` HVAC | Boiler
    pub const BOILER: BluetoothUuid16 = from_category(0x0018, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0607` HVAC | Heat Pump
    pub const HEAT_PUMP: BluetoothUuid16 = from_category(0x0018, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0608` HVAC | Infrared Heater
    pub const INFRARED_HEATER: BluetoothUuid16 = from_category(0x0018, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0609` HVAC | Radiant Panel Heater
    pub const RADIANT_PANEL_HEATER: BluetoothUuid16 = from_category(0x0018, 0x0009);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x060a` HVAC | Fan Heater
    pub const FAN_HEATER: BluetoothUuid16 = from_category(0x0018, 0x000a);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x060b` HVAC | Air Curtain
    pub const AIR_CURTAIN: BluetoothUuid16 = from_category(0x0018, 0x000b);
}

/// Bluetooth Appearance UUID.
///
/// `0x0640` Generic Air Conditioning
pub const AIR_CONDITIONING: BluetoothUuid16 = super::from_category(0x0019, 0x0000);

/// Bluetooth Appearance UUID.
///
/// `0x0680` Generic Humidifier
pub const HUMIDIFIER: BluetoothUuid16 = super::from_category(0x001a, 0x0000);

pub mod heating {
    //! Appearance heating with subcategories.
    //!
    //! Generic variant named `GENERIC_HEATING`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x06c0` Generic Heating
    pub const GENERIC_HEATING: BluetoothUuid16 = from_category(0x001b, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x06c1` Heating | Radiator
    pub const RADIATOR: BluetoothUuid16 = from_category(0x001b, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x06c2` Heating | Boiler
    pub const BOILER: BluetoothUuid16 = from_category(0x001b, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x06c3` Heating | Heat Pump
    pub const HEAT_PUMP: BluetoothUuid16 = from_category(0x001b, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x06c4` Heating | Infrared Heater
    pub const INFRARED_HEATER: BluetoothUuid16 = from_category(0x001b, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x06c5` Heating | Radiant Panel Heater
    pub const RADIANT_PANEL_HEATER: BluetoothUuid16 = from_category(0x001b, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x06c6` Heating | Fan Heater
    pub const FAN_HEATER: BluetoothUuid16 = from_category(0x001b, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x06c7` Heating | Air Curtain
    pub const AIR_CURTAIN: BluetoothUuid16 = from_category(0x001b, 0x0007);
}

pub mod access_control {
    //! Appearance access_control with subcategories.
    //!
    //! Generic variant named `GENERIC_ACCESS_CONTROL`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0700` Generic Access Control
    pub const GENERIC_ACCESS_CONTROL: BluetoothUuid16 = from_category(0x001c, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0701` Access Control | Access Door
    pub const ACCESS_DOOR: BluetoothUuid16 = from_category(0x001c, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0702` Access Control | Garage Door
    pub const GARAGE_DOOR: BluetoothUuid16 = from_category(0x001c, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0703` Access Control | Emergency Exit Door
    pub const EMERGENCY_EXIT_DOOR: BluetoothUuid16 = from_category(0x001c, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0704` Access Control | Access Lock
    pub const ACCESS_LOCK: BluetoothUuid16 = from_category(0x001c, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0705` Access Control | Elevator
    pub const ELEVATOR: BluetoothUuid16 = from_category(0x001c, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0706` Access Control | Window
    pub const WINDOW: BluetoothUuid16 = from_category(0x001c, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0707` Access Control | Entrance Gate
    pub const ENTRANCE_GATE: BluetoothUuid16 = from_category(0x001c, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0708` Access Control | Door Lock
    pub const DOOR_LOCK: BluetoothUuid16 = from_category(0x001c, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0709` Access Control | Locker
    pub const LOCKER: BluetoothUuid16 = from_category(0x001c, 0x0009);
}

pub mod motorized_device {
    //! Appearance motorized_device with subcategories.
    //!
    //! Generic variant named `GENERIC_MOTORIZED_DEVICE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0740` Generic Motorized Device
    pub const GENERIC_MOTORIZED_DEVICE: BluetoothUuid16 = from_category(0x001d, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0741` Motorized Device | Motorized Gate
    pub const MOTORIZED_GATE: BluetoothUuid16 = from_category(0x001d, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0742` Motorized Device | Awning
    pub const AWNING: BluetoothUuid16 = from_category(0x001d, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0743` Motorized Device | Blinds or Shades
    pub const BLINDS_OR_SHADES: BluetoothUuid16 = from_category(0x001d, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0744` Motorized Device | Curtains
    pub const CURTAINS: BluetoothUuid16 = from_category(0x001d, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0745` Motorized Device | Screen
    pub const SCREEN: BluetoothUuid16 = from_category(0x001d, 0x0005);
}

pub mod power_device {
    //! Appearance power_device with subcategories.
    //!
    //! Generic variant named `GENERIC_POWER_DEVICE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0780` Generic Power Device
    pub const GENERIC_POWER_DEVICE: BluetoothUuid16 = from_category(0x001e, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0781` Power Device | Power Outlet
    pub const POWER_OUTLET: BluetoothUuid16 = from_category(0x001e, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0782` Power Device | Power Strip
    pub const POWER_STRIP: BluetoothUuid16 = from_category(0x001e, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0783` Power Device | Plug
    pub const PLUG: BluetoothUuid16 = from_category(0x001e, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0784` Power Device | Power Supply
    pub const POWER_SUPPLY: BluetoothUuid16 = from_category(0x001e, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0785` Power Device | LED Driver
    pub const LED_DRIVER: BluetoothUuid16 = from_category(0x001e, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0786` Power Device | Fluorescent Lamp Gear
    pub const FLUORESCENT_LAMP_GEAR: BluetoothUuid16 = from_category(0x001e, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0787` Power Device | HID Lamp Gear
    pub const HID_LAMP_GEAR: BluetoothUuid16 = from_category(0x001e, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0788` Power Device | Charge Case
    pub const CHARGE_CASE: BluetoothUuid16 = from_category(0x001e, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0789` Power Device | Power Bank
    pub const POWER_BANK: BluetoothUuid16 = from_category(0x001e, 0x0009);
}

pub mod light_source {
    //! Appearance light_source with subcategories.
    //!
    //! Generic variant named `GENERIC_LIGHT_SOURCE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x07c0` Generic Light Source
    pub const GENERIC_LIGHT_SOURCE: BluetoothUuid16 = from_category(0x001f, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x07c1` Light Source | Incandescent Light Bulb
    pub const INCANDESCENT_LIGHT_BULB: BluetoothUuid16 = from_category(0x001f, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x07c2` Light Source | LED Lamp
    pub const LED_LAMP: BluetoothUuid16 = from_category(0x001f, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x07c3` Light Source | HID Lamp
    pub const HID_LAMP: BluetoothUuid16 = from_category(0x001f, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x07c4` Light Source | Fluorescent Lamp
    pub const FLUORESCENT_LAMP: BluetoothUuid16 = from_category(0x001f, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x07c5` Light Source | LED Array
    pub const LED_ARRAY: BluetoothUuid16 = from_category(0x001f, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x07c6` Light Source | Multi-Color LED Array
    pub const MULTI_COLOR_LED_ARRAY: BluetoothUuid16 = from_category(0x001f, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x07c7` Light Source | Low voltage halogen
    pub const LOW_VOLTAGE_HALOGEN: BluetoothUuid16 = from_category(0x001f, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x07c8` Light Source | Organic light emitting diode (OLED)
    pub const ORGANIC_LIGHT_EMITTING_DIODE_OLED: BluetoothUuid16 = from_category(0x001f, 0x0008);
}

pub mod window_covering {
    //! Appearance window_covering with subcategories.
    //!
    //! Generic variant named `GENERIC_WINDOW_COVERING`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0800` Generic Window Covering
    pub const GENERIC_WINDOW_COVERING: BluetoothUuid16 = from_category(0x0020, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0801` Window Covering | Window Shades
    pub const WINDOW_SHADES: BluetoothUuid16 = from_category(0x0020, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0802` Window Covering | Window Blinds
    pub const WINDOW_BLINDS: BluetoothUuid16 = from_category(0x0020, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0803` Window Covering | Window Awning
    pub const WINDOW_AWNING: BluetoothUuid16 = from_category(0x0020, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0804` Window Covering | Window Curtain
    pub const WINDOW_CURTAIN: BluetoothUuid16 = from_category(0x0020, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0805` Window Covering | Exterior Shutter
    pub const EXTERIOR_SHUTTER: BluetoothUuid16 = from_category(0x0020, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0806` Window Covering | Exterior Screen
    pub const EXTERIOR_SCREEN: BluetoothUuid16 = from_category(0x0020, 0x0006);
}

pub mod audio_sink {
    //! Appearance audio_sink with subcategories.
    //!
    //! Generic variant named `GENERIC_AUDIO_SINK`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0840` Generic Audio Sink
    pub const GENERIC_AUDIO_SINK: BluetoothUuid16 = from_category(0x0021, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0841` Audio Sink | Standalone Speaker
    pub const STANDALONE_SPEAKER: BluetoothUuid16 = from_category(0x0021, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0842` Audio Sink | Soundbar
    pub const SOUNDBAR: BluetoothUuid16 = from_category(0x0021, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0843` Audio Sink | Bookshelf Speaker
    pub const BOOKSHELF_SPEAKER: BluetoothUuid16 = from_category(0x0021, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0844` Audio Sink | Standmounted Speaker
    pub const STANDMOUNTED_SPEAKER: BluetoothUuid16 = from_category(0x0021, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0845` Audio Sink | Speakerphone
    pub const SPEAKERPHONE: BluetoothUuid16 = from_category(0x0021, 0x0005);
}

pub mod audio_source {
    //! Appearance audio_source with subcategories.
    //!
    //! Generic variant named `GENERIC_AUDIO_SOURCE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0880` Generic Audio Source
    pub const GENERIC_AUDIO_SOURCE: BluetoothUuid16 = from_category(0x0022, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0881` Audio Source | Microphone
    pub const MICROPHONE: BluetoothUuid16 = from_category(0x0022, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0882` Audio Source | Alarm
    pub const ALARM: BluetoothUuid16 = from_category(0x0022, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0883` Audio Source | Bell
    pub const BELL: BluetoothUuid16 = from_category(0x0022, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0884` Audio Source | Horn
    pub const HORN: BluetoothUuid16 = from_category(0x0022, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0885` Audio Source | Broadcasting Device
    pub const BROADCASTING_DEVICE: BluetoothUuid16 = from_category(0x0022, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0886` Audio Source | Service Desk
    pub const SERVICE_DESK: BluetoothUuid16 = from_category(0x0022, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0887` Audio Source | Kiosk
    pub const KIOSK: BluetoothUuid16 = from_category(0x0022, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0888` Audio Source | Broadcasting Room
    pub const BROADCASTING_ROOM: BluetoothUuid16 = from_category(0x0022, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0889` Audio Source | Auditorium
    pub const AUDITORIUM: BluetoothUuid16 = from_category(0x0022, 0x0009);
}

pub mod motorized_vehicle {
    //! Appearance motorized_vehicle with subcategories.
    //!
    //! Generic variant named `GENERIC_MOTORIZED_VEHICLE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08c0` Generic Motorized Vehicle
    pub const GENERIC_MOTORIZED_VEHICLE: BluetoothUuid16 = from_category(0x0023, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08c1` Motorized Vehicle | Car
    pub const CAR: BluetoothUuid16 = from_category(0x0023, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08c2` Motorized Vehicle | Large Goods Vehicle
    pub const LARGE_GOODS_VEHICLE: BluetoothUuid16 = from_category(0x0023, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08c3` Motorized Vehicle | 2-Wheeled Vehicle
    pub const _2_WHEELED_VEHICLE: BluetoothUuid16 = from_category(0x0023, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08c4` Motorized Vehicle | Motorbike
    pub const MOTORBIKE: BluetoothUuid16 = from_category(0x0023, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08c5` Motorized Vehicle | Scooter
    pub const SCOOTER: BluetoothUuid16 = from_category(0x0023, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08c6` Motorized Vehicle | Moped
    pub const MOPED: BluetoothUuid16 = from_category(0x0023, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08c7` Motorized Vehicle | 3-Wheeled Vehicle
    pub const _3_WHEELED_VEHICLE: BluetoothUuid16 = from_category(0x0023, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08c8` Motorized Vehicle | Light Vehicle
    pub const LIGHT_VEHICLE: BluetoothUuid16 = from_category(0x0023, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08c9` Motorized Vehicle | Quad Bike
    pub const QUAD_BIKE: BluetoothUuid16 = from_category(0x0023, 0x0009);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08ca` Motorized Vehicle | Minibus
    pub const MINIBUS: BluetoothUuid16 = from_category(0x0023, 0x000a);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08cb` Motorized Vehicle | Bus
    pub const BUS: BluetoothUuid16 = from_category(0x0023, 0x000b);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08cc` Motorized Vehicle | Trolley
    pub const TROLLEY: BluetoothUuid16 = from_category(0x0023, 0x000c);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08cd` Motorized Vehicle | Agricultural Vehicle
    pub const AGRICULTURAL_VEHICLE: BluetoothUuid16 = from_category(0x0023, 0x000d);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08ce` Motorized Vehicle | Camper / Caravan
    pub const CAMPER_CARAVAN: BluetoothUuid16 = from_category(0x0023, 0x000e);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x08cf` Motorized Vehicle | Recreational Vehicle / Motor Home
    pub const RECREATIONAL_VEHICLE_MOTOR_HOME: BluetoothUuid16 = from_category(0x0023, 0x000f);
}

pub mod domestic_appliance {
    //! Appearance domestic_appliance with subcategories.
    //!
    //! Generic variant named `GENERIC_DOMESTIC_APPLIANCE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0900` Generic Domestic Appliance
    pub const GENERIC_DOMESTIC_APPLIANCE: BluetoothUuid16 = from_category(0x0024, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0901` Domestic Appliance | Refrigerator
    pub const REFRIGERATOR: BluetoothUuid16 = from_category(0x0024, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0902` Domestic Appliance | Freezer
    pub const FREEZER: BluetoothUuid16 = from_category(0x0024, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0903` Domestic Appliance | Oven
    pub const OVEN: BluetoothUuid16 = from_category(0x0024, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0904` Domestic Appliance | Microwave
    pub const MICROWAVE: BluetoothUuid16 = from_category(0x0024, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0905` Domestic Appliance | Toaster
    pub const TOASTER: BluetoothUuid16 = from_category(0x0024, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0906` Domestic Appliance | Washing Machine
    pub const WASHING_MACHINE: BluetoothUuid16 = from_category(0x0024, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0907` Domestic Appliance | Dryer
    pub const DRYER: BluetoothUuid16 = from_category(0x0024, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0908` Domestic Appliance | Coffee maker
    pub const COFFEE_MAKER: BluetoothUuid16 = from_category(0x0024, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0909` Domestic Appliance | Clothes iron
    pub const CLOTHES_IRON: BluetoothUuid16 = from_category(0x0024, 0x0009);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x090a` Domestic Appliance | Curling iron
    pub const CURLING_IRON: BluetoothUuid16 = from_category(0x0024, 0x000a);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x090b` Domestic Appliance | Hair dryer
    pub const HAIR_DRYER: BluetoothUuid16 = from_category(0x0024, 0x000b);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x090c` Domestic Appliance | Vacuum cleaner
    pub const VACUUM_CLEANER: BluetoothUuid16 = from_category(0x0024, 0x000c);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x090d` Domestic Appliance | Robotic vacuum cleaner
    pub const ROBOTIC_VACUUM_CLEANER: BluetoothUuid16 = from_category(0x0024, 0x000d);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x090e` Domestic Appliance | Rice cooker
    pub const RICE_COOKER: BluetoothUuid16 = from_category(0x0024, 0x000e);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x090f` Domestic Appliance | Clothes steamer
    pub const CLOTHES_STEAMER: BluetoothUuid16 = from_category(0x0024, 0x000f);
}

pub mod wearable_audio_device {
    //! Appearance wearable_audio_device with subcategories.
    //!
    //! Generic variant named `GENERIC_WEARABLE_AUDIO_DEVICE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0940` Generic Wearable Audio Device
    pub const GENERIC_WEARABLE_AUDIO_DEVICE: BluetoothUuid16 = from_category(0x0025, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0941` Wearable Audio Device | Earbud
    pub const EARBUD: BluetoothUuid16 = from_category(0x0025, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0942` Wearable Audio Device | Headset
    pub const HEADSET: BluetoothUuid16 = from_category(0x0025, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0943` Wearable Audio Device | Headphones
    pub const HEADPHONES: BluetoothUuid16 = from_category(0x0025, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0944` Wearable Audio Device | Neck Band
    pub const NECK_BAND: BluetoothUuid16 = from_category(0x0025, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0945` Wearable Audio Device | Left Earbud
    pub const LEFT_EARBUD: BluetoothUuid16 = from_category(0x0025, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0946` Wearable Audio Device | Right Earbud
    pub const RIGHT_EARBUD: BluetoothUuid16 = from_category(0x0025, 0x0006);
}

pub mod aircraft {
    //! Appearance aircraft with subcategories.
    //!
    //! Generic variant named `GENERIC_AIRCRAFT`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0980` Generic Aircraft
    pub const GENERIC_AIRCRAFT: BluetoothUuid16 = from_category(0x0026, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0981` Aircraft | Light Aircraft
    pub const LIGHT_AIRCRAFT: BluetoothUuid16 = from_category(0x0026, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0982` Aircraft | Microlight
    pub const MICROLIGHT: BluetoothUuid16 = from_category(0x0026, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0983` Aircraft | Paraglider
    pub const PARAGLIDER: BluetoothUuid16 = from_category(0x0026, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0984` Aircraft | Large Passenger Aircraft
    pub const LARGE_PASSENGER_AIRCRAFT: BluetoothUuid16 = from_category(0x0026, 0x0004);
}

pub mod av_equipment {
    //! Appearance av_equipment with subcategories.
    //!
    //! Generic variant named `GENERIC_AV_EQUIPMENT`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x09c0` Generic AV Equipment
    pub const GENERIC_AV_EQUIPMENT: BluetoothUuid16 = from_category(0x0027, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x09c1` AV Equipment | Amplifier
    pub const AMPLIFIER: BluetoothUuid16 = from_category(0x0027, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x09c2` AV Equipment | Receiver
    pub const RECEIVER: BluetoothUuid16 = from_category(0x0027, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x09c3` AV Equipment | Radio
    pub const RADIO: BluetoothUuid16 = from_category(0x0027, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x09c4` AV Equipment | Tuner
    pub const TUNER: BluetoothUuid16 = from_category(0x0027, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x09c5` AV Equipment | Turntable
    pub const TURNTABLE: BluetoothUuid16 = from_category(0x0027, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x09c6` AV Equipment | CD Player
    pub const CD_PLAYER: BluetoothUuid16 = from_category(0x0027, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x09c7` AV Equipment | DVD Player
    pub const DVD_PLAYER: BluetoothUuid16 = from_category(0x0027, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x09c8` AV Equipment | Bluray Player
    pub const BLURAY_PLAYER: BluetoothUuid16 = from_category(0x0027, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x09c9` AV Equipment | Optical Disc Player
    pub const OPTICAL_DISC_PLAYER: BluetoothUuid16 = from_category(0x0027, 0x0009);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x09ca` AV Equipment | Set-Top Box
    pub const SET_TOP_BOX: BluetoothUuid16 = from_category(0x0027, 0x000a);
}

pub mod display_equipment {
    //! Appearance display_equipment with subcategories.
    //!
    //! Generic variant named `GENERIC_DISPLAY_EQUIPMENT`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0a00` Generic Display Equipment
    pub const GENERIC_DISPLAY_EQUIPMENT: BluetoothUuid16 = from_category(0x0028, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0a01` Display Equipment | Television
    pub const TELEVISION: BluetoothUuid16 = from_category(0x0028, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0a02` Display Equipment | Monitor
    pub const MONITOR: BluetoothUuid16 = from_category(0x0028, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0a03` Display Equipment | Projector
    pub const PROJECTOR: BluetoothUuid16 = from_category(0x0028, 0x0003);
}

pub mod hearing_aid {
    //! Appearance hearing_aid with subcategories.
    //!
    //! Generic variant named `GENERIC_HEARING_AID`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0a40` Generic Hearing aid
    pub const GENERIC_HEARING_AID: BluetoothUuid16 = from_category(0x0029, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0a41` Hearing aid | In-ear hearing aid
    pub const IN_EAR_HEARING_AID: BluetoothUuid16 = from_category(0x0029, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0a42` Hearing aid | Behind-ear hearing aid
    pub const BEHIND_EAR_HEARING_AID: BluetoothUuid16 = from_category(0x0029, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0a43` Hearing aid | Cochlear Implant
    pub const COCHLEAR_IMPLANT: BluetoothUuid16 = from_category(0x0029, 0x0003);
}

pub mod gaming {
    //! Appearance gaming with subcategories.
    //!
    //! Generic variant named `GENERIC_GAMING`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0a80` Generic Gaming
    pub const GENERIC_GAMING: BluetoothUuid16 = from_category(0x002a, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0a81` Gaming | Home Video Game Console
    pub const HOME_VIDEO_GAME_CONSOLE: BluetoothUuid16 = from_category(0x002a, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0a82` Gaming | Portable handheld console
    pub const PORTABLE_HANDHELD_CONSOLE: BluetoothUuid16 = from_category(0x002a, 0x0002);
}

pub mod signage {
    //! Appearance signage with subcategories.
    //!
    //! Generic variant named `GENERIC_SIGNAGE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0ac0` Generic Signage
    pub const GENERIC_SIGNAGE: BluetoothUuid16 = from_category(0x002b, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0ac1` Signage | Digital Signage
    pub const DIGITAL_SIGNAGE: BluetoothUuid16 = from_category(0x002b, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0ac2` Signage | Electronic Label
    pub const ELECTRONIC_LABEL: BluetoothUuid16 = from_category(0x002b, 0x0002);
}

pub mod pulse_oximeter {
    //! Appearance pulse_oximeter with subcategories.
    //!
    //! Generic variant named `GENERIC_PULSE_OXIMETER`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0c40` Generic Pulse Oximeter
    pub const GENERIC_PULSE_OXIMETER: BluetoothUuid16 = from_category(0x0031, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0c41` Pulse Oximeter | Fingertip Pulse Oximeter
    pub const FINGERTIP_PULSE_OXIMETER: BluetoothUuid16 = from_category(0x0031, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0c42` Pulse Oximeter | Wrist Worn Pulse Oximeter
    pub const WRIST_WORN_PULSE_OXIMETER: BluetoothUuid16 = from_category(0x0031, 0x0002);
}

/// Bluetooth Appearance UUID.
///
/// `0x0c80` Generic Weight Scale
pub const WEIGHT_SCALE: BluetoothUuid16 = super::from_category(0x0032, 0x0000);

pub mod personal_mobility_device {
    //! Appearance personal_mobility_device with subcategories.
    //!
    //! Generic variant named `GENERIC_PERSONAL_MOBILITY_DEVICE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0cc0` Generic Personal Mobility Device
    pub const GENERIC_PERSONAL_MOBILITY_DEVICE: BluetoothUuid16 = from_category(0x0033, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0cc1` Personal Mobility Device | Powered Wheelchair
    pub const POWERED_WHEELCHAIR: BluetoothUuid16 = from_category(0x0033, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0cc2` Personal Mobility Device | Mobility Scooter
    pub const MOBILITY_SCOOTER: BluetoothUuid16 = from_category(0x0033, 0x0002);
}

/// Bluetooth Appearance UUID.
///
/// `0x0d00` Generic Continuous Glucose Monitor
pub const CONTINUOUS_GLUCOSE_MONITOR: BluetoothUuid16 = super::from_category(0x0034, 0x0000);

pub mod insulin_pump {
    //! Appearance insulin_pump with subcategories.
    //!
    //! Generic variant named `GENERIC_INSULIN_PUMP`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0d40` Generic Insulin Pump
    pub const GENERIC_INSULIN_PUMP: BluetoothUuid16 = from_category(0x0035, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0d41` Insulin Pump | Insulin Pump, durable pump
    pub const INSULIN_PUMP_DURABLE_PUMP: BluetoothUuid16 = from_category(0x0035, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0d44` Insulin Pump | Insulin Pump, patch pump
    pub const INSULIN_PUMP_PATCH_PUMP: BluetoothUuid16 = from_category(0x0035, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0d48` Insulin Pump | Insulin Pen
    pub const INSULIN_PEN: BluetoothUuid16 = from_category(0x0035, 0x0008);
}

/// Bluetooth Appearance UUID.
///
/// `0x0d80` Generic Medication Delivery
pub const MEDICATION_DELIVERY: BluetoothUuid16 = super::from_category(0x0036, 0x0000);

pub mod spirometer {
    //! Appearance spirometer with subcategories.
    //!
    //! Generic variant named `GENERIC_SPIROMETER`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0dc0` Generic Spirometer
    pub const GENERIC_SPIROMETER: BluetoothUuid16 = from_category(0x0037, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x0dc1` Spirometer | Handheld Spirometer
    pub const HANDHELD_SPIROMETER: BluetoothUuid16 = from_category(0x0037, 0x0001);
}

pub mod outdoor_sports_activity {
    //! Appearance outdoor_sports_activity with subcategories.
    //!
    //! Generic variant named `GENERIC_OUTDOOR_SPORTS_ACTIVITY`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x1440` Generic Outdoor Sports Activity
    pub const GENERIC_OUTDOOR_SPORTS_ACTIVITY: BluetoothUuid16 = from_category(0x0051, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x1441` Outdoor Sports Activity | Location Display
    pub const LOCATION_DISPLAY: BluetoothUuid16 = from_category(0x0051, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x1442` Outdoor Sports Activity | Location and Navigation Display
    pub const LOCATION_AND_NAVIGATION_DISPLAY: BluetoothUuid16 = from_category(0x0051, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x1443` Outdoor Sports Activity | Location Pod
    pub const LOCATION_POD: BluetoothUuid16 = from_category(0x0051, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x1444` Outdoor Sports Activity | Location and Navigation Pod
    pub const LOCATION_AND_NAVIGATION_POD: BluetoothUuid16 = from_category(0x0051, 0x0004);
}

pub mod industrial_measurement_device {
    //! Appearance industrial_measurement_device with subcategories.
    //!
    //! Generic variant named `GENERIC_INDUSTRIAL_MEASUREMENT_DEVICE`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x1480` Generic Industrial Measurement Device
    pub const GENERIC_INDUSTRIAL_MEASUREMENT_DEVICE: BluetoothUuid16 = from_category(0x0052, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x1481` Industrial Measurement Device | Torque Testing Device
    pub const TORQUE_TESTING_DEVICE: BluetoothUuid16 = from_category(0x0052, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x1482` Industrial Measurement Device | Caliper
    pub const CALIPER: BluetoothUuid16 = from_category(0x0052, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x1483` Industrial Measurement Device | Dial Indicator
    pub const DIAL_INDICATOR: BluetoothUuid16 = from_category(0x0052, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x1484` Industrial Measurement Device | Micrometer
    pub const MICROMETER: BluetoothUuid16 = from_category(0x0052, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x1485` Industrial Measurement Device | Height Gauge
    pub const HEIGHT_GAUGE: BluetoothUuid16 = from_category(0x0052, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x1486` Industrial Measurement Device | Force Gauge
    pub const FORCE_GAUGE: BluetoothUuid16 = from_category(0x0052, 0x0006);
}

pub mod industrial_tools {
    //! Appearance industrial_tools with subcategories.
    //!
    //! Generic variant named `GENERIC_INDUSTRIAL_TOOLS`.

    use super::super::{BluetoothUuid16, from_category};

    /// Bluetooth Appearance UUID.
    ///
    /// `0x14c0` Generic Industrial Tools
    pub const GENERIC_INDUSTRIAL_TOOLS: BluetoothUuid16 = from_category(0x0053, 0x0000);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x14c1` Industrial Tools | Machine Tool Holder
    pub const MACHINE_TOOL_HOLDER: BluetoothUuid16 = from_category(0x0053, 0x0001);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x14c2` Industrial Tools | Generic Clamping Device
    pub const GENERIC_CLAMPING_DEVICE: BluetoothUuid16 = from_category(0x0053, 0x0002);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x14c3` Industrial Tools | Clamping Jaws/Jaw Chuck
    pub const CLAMPING_JAWSJAW_CHUCK: BluetoothUuid16 = from_category(0x0053, 0x0003);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x14c4` Industrial Tools | Clamping (Collet) Chuck
    pub const CLAMPING_COLLET_CHUCK: BluetoothUuid16 = from_category(0x0053, 0x0004);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x14c5` Industrial Tools | Clamping Mandrel
    pub const CLAMPING_MANDREL: BluetoothUuid16 = from_category(0x0053, 0x0005);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x14c6` Industrial Tools | Vise
    pub const VISE: BluetoothUuid16 = from_category(0x0053, 0x0006);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x14c7` Industrial Tools | Zero-Point Clamping System
    pub const ZERO_POINT_CLAMPING_SYSTEM: BluetoothUuid16 = from_category(0x0053, 0x0007);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x14c8` Industrial Tools | Torque Wrench
    pub const TORQUE_WRENCH: BluetoothUuid16 = from_category(0x0053, 0x0008);

    /// Bluetooth Appearance UUID.
    ///
    /// `0x14c9` Industrial Tools | Torque Screwdriver
    pub const TORQUE_SCREWDRIVER: BluetoothUuid16 = from_category(0x0053, 0x0009);
}