You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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?