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
Traceback (most recent call last): File "code.py", line 12, in <module> File "/lib/adafruit_ble/services/nordic.py", line 55, in __init__ File "/lib/adafruit_ble/services/__init__.py", line 49, in __init__ NotImplementedError:
Version / modle:
Adafruit CircuitPython 7.3.1 on 2022-06-22; ProS3 with ESP32S3
Code(color picker example):
import board
import neopixel
from adafruit_bluefruit_connect.packet import Packet
from adafruit_bluefruit_connect.color_packet import ColorPacket
from adafruit_ble import BLERadio
from adafruit_ble.advertising.standard import ProvideServicesAdvertisement
from adafruit_ble.services.nordic import UARTService
ble = BLERadio()
uart_service = UARTService()
advertisement = ProvideServicesAdvertisement(uart_service)
pixels = neopixel.NeoPixel(board.NEOPIXEL, 10, brightness=0.1)
while True:
# Advertise when not connected.
ble.start_advertising(advertisement)
while not ble.connected:
pass
ble.stop_advertising()
while ble.connected:
if uart_service.in_waiting:
packet = Packet.from_stream(uart_service)
if isinstance(packet, ColorPacket):
print(packet.color)
pixels.fill(packet.color)
The text was updated successfully, but these errors were encountered:
ESP32 Pro S3 using CircuitPython
Error Message:
Traceback (most recent call last): File "code.py", line 12, in <module> File "/lib/adafruit_ble/services/nordic.py", line 55, in __init__ File "/lib/adafruit_ble/services/__init__.py", line 49, in __init__ NotImplementedError:
Version / modle:
Adafruit CircuitPython 7.3.1 on 2022-06-22; ProS3 with ESP32S3
Code(color picker example):
The text was updated successfully, but these errors were encountered: