Skip to content

Instantly share code, notes, and snippets.

@joeycastillo
Created April 27, 2023 00:12
Show Gist options
  • Save joeycastillo/edbf0b6d0b717315eff45d722795cdc5 to your computer and use it in GitHub Desktop.
Save joeycastillo/edbf0b6d0b717315eff45d722795cdc5 to your computer and use it in GitHub Desktop.
Typical secrets.py file for a CircuitPython project
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