Control for Window lights
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- import geo
- import logging
-
- DEBUG = False # False: logging to stdout with given LOGLEVEL - True: logging all to localhost:19996 and warnings or higher to stdout
- LOGLEVEL = logging.DEBUG # INFO
-
- GEO_POSITION = geo.gps.coordinate(lat=49.519167, lon=9.3672222)
-
- APP_NAME = "smart_enlife"
-
- MQTT_SERVER = "mqtt.home"
- MQTT_PORT = 1883
- MQTT_USER = "smarthome"
- MQTT_PASSWORD = ""
|