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
Please ensure all dependencies are available on the CircuitPython filesystem.
58
56
This is easily achieved by downloading
59
57
`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_.
60
58
61
-
**Board Compatibility:** The following built-in modules must be available: gc, json, ssl, time
59
+
**Board Compatibility:** The following built-in modules must be available: gc, json, time
62
60
63
61
Usage Example
64
62
=============
@@ -74,8 +72,6 @@ To create an Azure IoT Hub instance or an Azure IoT Central app, you will need a
74
72
ESP32 AirLift Networking
75
73
========================
76
74
77
-
*NOTE* currently the ESP32 AirLift is not supported due to the requirment of `ssl`, which is only on boards with native WiFi.
78
-
79
75
To use this library, you will need to create an ESP32_SPI WifiManager, connected to WiFi. You will also need to set the current time, as this is used to generate time-based authentication keys. One way to do this is with the following code:
80
76
81
77
.. code-block:: python
@@ -96,7 +92,7 @@ To use this library, with boards that have native networking support, you need t
96
92
97
93
.. code-block:: python
98
94
99
-
pool =socketpool.SocketPool(wifi.radio)
95
+
pool =adafruit_connection_manager.get_radio_socketpool(wifi.radio)
100
96
ntp = adafruit_ntp.NTP(pool, tz_offset=0)
101
97
102
98
#NOTE: This changes the system time so make sure you aren't assuming that time
0 commit comments