Module to run and control leyk lightning
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
12345678910111213141516171819202122 |
- #!/usr/bin/env python
- # -*- coding: UTF-8 -*-
- import os
- import report
-
- MQTT_USER = "user"
- MQTT_PASS = "password"
- MQTT_SERVER = "host"
- MQTT_TOPIC = "leyk"
-
- #
- # Logging
- #
- __BASEPATH__ = os.path.abspath(os.path.dirname(__file__))
- APP_NAME = "leyk"
- LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
- LOGLVL = 'DEBUG'
-
- LOGHOST = 'cutelog'
- LOGPORT = 19996
-
- formatter = report.SHORT_FMT
|