Adafruit_CircuitPython_ESP_.../examples/esp_atcontrol_secrets.py
2020-03-15 17:22:41 -04:00

11 lines
397 B
Python

# This file is where you keep secret settings, passwords, and tokens!
# If you put them in the code you risk committing that info or sharing it
secrets = {
"ssid": "my access point",
"password": "my password",
"timezone": -5, # this is offset from UTC
"github_token": "abcdefghij0123456789",
"adafruit_io_user": "myusername",
"adafruit_io_key": "abcdefghij0123456789",
}