Open
Description
I am working with Adafruit_CircuitPython_BLE on a MacBook running Monterey 12.3. The code below is an example from the Adafruit library (ble_advertising_simpletest.py).
`from adafruit_ble import BLERadio
from adafruit_ble.advertising import Advertisement
ble = BLERadio()
advertisement = Advertisement()
advertisement.short_name = "HELLO"
advertisement.connectable = True
while True:
print(advertisement)
ble.start_advertising(advertisement, scan_response=b"")
while not ble.connected:
pass
print("connected")
while ble.connected:
pass
`
When I get to the "ble.start_advertising" line I get the "NotImplementedError".
The MacBook should support BLE since it communicates with my iPhone, right?
Metadata
Metadata
Assignees
Labels
No labels