Adafruit_CircuitPython_ESP3.../examples/esp32spi_secrets.py
2019-03-05 21:19:20 -08:00

10 lines
366 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' : "America/New_York", # Check http://worldtimeapi.org/timezones
'aio_username' : 'youraiousername',
'aio_key' : 'youraiokey',
}