Adafruit_Learning_System_Gu.../IoT_Environment_Sensor/secrets.py
2022-02-23 13:10:19 -05:00

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",
}