Skip to content

Releases: adafruit/Adafruit_CircuitPython_BLE

7.3.3 - Fixed issue with Black and Pylint versions in the pre-commit config

10 Feb 22:28
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-ble.

Read the docs for info on how to use it.

7.3.2 - Moved to pre-commit, added licensing info

20 Jan 22:34
22fcea4
Compare
Choose a tag to compare

pre-commit has been added to the GitHub Actions workflow in this repository. pre-commit allows you to run multiple checks, such as black and checking the REUSE licensing compliance, both locally and on GitHub Actions with one command.

You can run pre-commit locally with pre-commit run --all-files

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-ble.

Read the docs for info on how to use it.

7.3.1 - Extended hid descriptor maximum to allow for international keyboard

25 Sep 16:38
8bb1210
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-ble.

Read the docs for info on how to use it.

7.3.0 - Added HCI support

10 Sep 16:36
b6ad8c9
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-ble.

Read the docs for info on how to use it.

Remove timeout as arg on 5.x for BLERadio.start_advertising()

23 Aug 14:26
20f21e7
Compare
Choose a tag to compare

Do not use timeout arg in start_advertising() on 5.x. Thanks @roamingthings!

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-ble.

Read the docs for info on how to use it.

BLERadio advertising timeout, .advertising, ReportOut.report

19 Aug 12:29
9af3aff
Compare
Choose a tag to compare
  • add timeout to BLERadio.start_advertising
  • add BLERadio.advertising property
  • add ReportOut.report property to get keyboard leds info

Thanks @xiongyihui (#98)!

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-ble.

Read the docs for info on how to use it.

Preserve ordering of ManufacturerDataField objects in ManufacturerData

18 Aug 03:39
aee83fb
Compare
Choose a tag to compare

Use an OrderedDict to preserve the ordering of ManufacturerDataField objects in ManufacturerData. They will appear in the order they are set.

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-ble.

Read the docs for info on how to use it.

7.0.3 - Added READ & NOTIFY permissions to battery service

16 Jul 17:48
41f7a35
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-ble.

Read the docs for info on how to use it.

7.0.2 - Fixed discord invite link

09 Jul 21:02
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-ble.

Read the docs for info on how to use it.

Filter scan correctly when one advertising class has no prefixes

28 Jun 14:34
7b06c53
Compare
Choose a tag to compare

start_scan() did not handle the case of mixing an Advertisement class with no prefixes with classes with some prefixes. This is used in examples/ble_detailed_scan.py.

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-ble.

Read the docs for info on how to use it.