12 lines
343 B
Python
12 lines
343 B
Python
# SPDX-FileCopyrightText: 2019 Kattni Rembor 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' : 'CHANGE ME',
|
|
'password' : 'CHANGE ME',
|
|
'zip' : 'CHANGE ME',
|
|
}
|