14 lines
410 B
Python
14 lines
410 B
Python
# SPDX-FileCopyrightText: 2019 Dave Astels for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# 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": b"My_SSID",
|
|
"password": b"My_WIFI_Password",
|
|
"timezone": "Area/City",
|
|
"aio_username": "my_username",
|
|
"aio_key": "my_key",
|
|
}
|