Adafruit_CircuitPython_ESP3.../examples/esp32spi_secrets.py
2019-02-23 17:23:51 -05:00

10 lines
334 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' : 'yourssid',
'password' : 'yourpassword',
'timezone' : -5, # this is offset from UTC
'aio_username' : 'youraiousername',
'aio_key' : 'youraiokey',
}