12 lines
356 B
Python
12 lines
356 B
Python
# SPDX-FileCopyrightText: 2020 Liz Clark for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
secrets = {
|
|
'ssid' : 'your-ssid-here',
|
|
'password' : 'your-password-here',
|
|
'openweather_token' : 'your-openweather-token-here',
|
|
'aio_username' : "your-aio-username-here",
|
|
'aio_key' : 'your-aio-key-here',
|
|
'location' : 'New York, US'
|
|
}
|