This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# esp32s2-test.py -- small WiFi test program for ESP32-S2 CircuitPython 6 | |
# taken from https://www.reddit.com/r/circuitpython/comments/ianpm8/using_wifi_when_running_on_esp32s2saola1_board/ | |
# | |
import time | |
import ipaddress | |
import wifi | |
import socketpool | |
import ssl | |
import adafruit_requests |