11 lines
397 B
Python
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",
|
|
}
|