11 lines
326 B
Python
11 lines
326 B
Python
# SPDX-FileCopyrightText: 2020 Anne Barela for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
secrets = {
|
|
'ssid' : '_your_wifi_ssid_',
|
|
'password' : '_your_wifi_password_',
|
|
'broker' : '_your_mqtt_broker_url_or_ip',
|
|
'user' : '_your_mqtt_broker_username_',
|
|
'pass' : '_your_mqtt_broker_password_'
|
|
}
|