2023-10-04 16:15:23 +02:00
|
|
|
import geo
|
2023-10-31 09:03:13 +01:00
|
|
|
import logging
|
2023-10-04 16:15:23 +02:00
|
|
|
import report
|
|
|
|
from topics import *
|
|
|
|
|
2023-10-31 09:03:13 +01:00
|
|
|
DEBUG = False # False: logging to stdout with given LOGLEVEL - True: logging all to localhost:19996 and warnings or higher to stdout
|
|
|
|
LOGLEVEL = logging.INFO
|
|
|
|
|
2023-10-04 16:15:23 +02:00
|
|
|
GEO_POSITION = geo.gps.coordinate(lat=49.519167, lon=9.3672222)
|
|
|
|
|
|
|
|
APP_NAME = "smart_brain"
|
|
|
|
|
|
|
|
MQTT_SERVER = "<hostname>"
|
|
|
|
MQTT_PORT = 1883
|
|
|
|
MQTT_USER = "<username>"
|
|
|
|
MQTT_PASSWORD = "<password>"
|
|
|
|
|
|
|
|
|
|
|
|
CHRISTMAS = True
|
|
|
|
|
|
|
|
#
|
|
|
|
# PARAMETERS
|
|
|
|
#
|
|
|
|
USER_ON_TIME_STAIRWAYS = 100
|
2023-10-08 21:05:34 +02:00
|
|
|
|
2023-10-31 08:53:43 +01:00
|
|
|
DEFAULT_TEMPERATURE = 21.5
|