27 рядки
506 B
Python
27 рядки
506 B
Python
import geo
|
|
import logging
|
|
import report
|
|
from topics import *
|
|
|
|
DEBUG = False # False: logging to stdout with given LOGLEVEL - True: logging all to localhost:19996 and warnings or higher to stdout
|
|
LOGLEVEL = logging.INFO
|
|
|
|
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
|
|
|
|
DEFAULT_TEMPERATURE = 21.5
|