-
Couldn't load subscription status.
- Fork 58
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
_MANUFACTURING_DATA_ADT and _ADAFRUIT_COMPANY_ID are defined in
Adafruit_CircuitPython_BLE/adafruit_ble/advertising/adafruit.py
Lines 43 to 44 in 5d58457
| _MANUFACTURING_DATA_ADT = const(0xFF) | |
| _ADAFRUIT_COMPANY_ID = const(0x0822) |
0xFF and 0x0822, respectively. The underscore prefix in conjunction with the use of const() (@dhalbert clarified this) makes them truly private and unusable from elsewhere.
These reference values would be useful to expose from somewhere in adafruit_ble library for other code which is creating packets, e.g.
These currently have their own local variables with these values.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request