Created
April 27, 2023 00:12
-
-
Save joeycastillo/edbf0b6d0b717315eff45d722795cdc5 to your computer and use it in GitHub Desktop.
Typical secrets.py file for a CircuitPython project
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
secrets = { | |
"ssid" : "YOUR_WIFI_NETWORK", | |
"password" : "YOUR_WIFI_PASSWORD", | |
"aio_username" : "ADAFRUIT_IO_USERNAME", | |
"aio_key" : "ADAFRUIT_IO_KEY", | |
"timezone" : "America/Chicago", # http://worldtimeapi.org/timezones | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment