YOU NEED
SECRETS AND RUNNING CODE
> Pi Pico W
The secrets.py file contains anything we want to keep secret – Wi-Fi, API keys, timezone data and so on. Create a new file in Thonny and add the following (replace the Wi-Fi details with your own): secrets = { ‘ssid’ : ‘YOUR WIFI ACCESS POINT’, ‘password’ : ‘YOUR WIFI PASSWORD’, } Save the file as secrets.py to the root of CIRCUITPY, not inside /lib/. Go back to code.py and click STOP, then click RUN to start the code. The Python shell should report that you are connected to the router, and provide an IP address.
OUR EXPERT
> NeoPixels (WS2812B) RGB LED Ring