station-meteo/station-esp8266/config_template.py

18 lines
254 B
Python
Raw Normal View History

2020-03-24 22:49:55 +01:00
"""Fichier de configuration
"""
CLIENT_ID = "Test"
LOCATION = "On desk"
2020-03-24 22:49:55 +01:00
MQTT_HOST = "192.168.0.1"
2020-03-24 22:49:55 +01:00
MQTT_PORT = 1883
MQTT_USERNAME = "user"
MQTT_PASSWD = "passwd"
2020-03-24 22:49:55 +01:00
WIFI_SSID = "my_wifi_ssid"
WIFI_PSK = "my_wifi_wpa_key"
REFRESH_RATE = 5
ALTITUDE = 150