Skip to content

Releases: adafruit/Adafruit_CircuitPython_ESP32SPI

Adding MAC_address_actual property

28 Feb 04:11
fbbe977

Choose a tag to compare

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

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

Read the docs for info on how to use it.

Add Itsy AirLift to example

03 Feb 15:27
f523b23

Choose a tag to compare

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

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

Read the docs for info on how to use it.

3.1.1 - Changed CI from Travis to GitHub Actions

17 Jan 02:14

Choose a tag to compare

This release includes:

  • Migrating this repository from Travis to GitHub Actions. This has no effect on the behavior of the code itself.

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

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

Read the docs for info on how to use it.

Digital and Analog Read

23 Oct 16:58
c68c642

Choose a tag to compare

  • #80 Added set_analog_read and set_digital_read command handlers for the digital/analog read functions in Adafruit's fork of nina-fw, v1.5.0. Thanks @anecdata!

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

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

Read the docs for info on how to use it.

Stricter certificate/private key file validation

15 Oct 15:56
098431f

Choose a tag to compare

  • Check for correct PEM file header text in set_certificate/set_private_key.

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

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

Read the docs for info on how to use it.

Expose if certificate/key have been set

10 Oct 15:49
602250a

Choose a tag to compare

Adding set_psk/set_crt to if a user has set a certificate and/or psk prior to establishing an authenticated connection with a server.

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

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

Read the docs for info on how to use it.

Allow user-defined X.509 Certificates for server authentication

08 Oct 21:19
379eed6

Choose a tag to compare

Adds set_certificate and set_private_key methods to ESP32SPI to reflect the updated WiFiSSLClient in nina-fw.

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

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

Read the docs for info on how to use it.

BSSID Property, scan_network finds network BSSID and Channel

25 Sep 15:12
83fe4b3

Choose a tag to compare

  • Exposes property for the network's BSSID, thanks @anecdata
  • Adds handlers in scan_networks for obtaining network BSSID and channel, thanks @anecdata

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

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

Read the docs for info on how to use it.

Fix Get_Time Error

16 Sep 13:08
424c489

Choose a tag to compare

  • Raises an error on invalid get_time() calls.

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

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

Read the docs for info on how to use it.

Use socket.recv

29 Aug 21:53
c28977f

Choose a tag to compare

This release switches from socket.read to socket.recv to match the CircuitPython Socket API and the CPython Socket API.

  • Calls tosocket.read will still work with this release but is deprecated, and will be removed in a future release.

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

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

Read the docs for info on how to use it.