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
While trying to advertise something using start_advertising() I constantly ran into an error:
...
File "adafruit_ble/init.py", line 191, in start_advertising
TypeError: extra keyword arguments given
After comparing the documentation of CircuitPython 5.3.x and the current version (6.x.x) regarding the underlying call to start_advertisingof Adapter5.3.x / 6.x.x
I realized that Release 7.2.0 of this library introduced an incompatibility with CircuitPython 5.3.x:
Which has too many parameters for CircuitPython 5.3.x
Unfortunately I'm new to (Circuit)Python so I don't know if it would be possible to have a library that is compatible with both versions of CircuitPython.
I also unterstand that (for now) I have to use Version 7.1.0 to be compatible with CircuitPython 5.3.1
The text was updated successfully, but these errors were encountered:
While trying to advertise something using
start_advertising()
I constantly ran into an error:After comparing the documentation of CircuitPython 5.3.x and the current version (6.x.x) regarding the underlying call to
start_advertising
ofAdapter
5.3.x / 6.x.xI realized that Release 7.2.0 of this library introduced an incompatibility with CircuitPython 5.3.x:
Adafruit_CircuitPython_BLE/adafruit_ble/__init__.py
Lines 186 to 191 in 9af3aff
Which has too many parameters for CircuitPython 5.3.x
Unfortunately I'm new to (Circuit)Python so I don't know if it would be possible to have a library that is compatible with both versions of CircuitPython.
I also unterstand that (for now) I have to use Version 7.1.0 to be compatible with CircuitPython 5.3.1
The text was updated successfully, but these errors were encountered: