27 lines
471 B
Python
27 lines
471 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: UTF-8 -*-
|
||
|
import os
|
||
|
import report
|
||
|
|
||
|
__BASEPATH__ = os.path.abspath(os.path.dirname(__file__))
|
||
|
|
||
|
MQTT_USER = "user"
|
||
|
MQTT_PASS = "pass"
|
||
|
MQTT_SERVER = "host"
|
||
|
|
||
|
TOPIC = 'topic'
|
||
|
PAYLOAD = b'payload'
|
||
|
COMMAND = "aplay ring.wav -D plughw:UACDemoV10,0"
|
||
|
|
||
|
#
|
||
|
# Logging
|
||
|
#
|
||
|
APP_NAME = "exec_command"
|
||
|
LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
|
||
|
LOGLVL = 'DEBUG'
|
||
|
|
||
|
LOGHOST = 'cutelog'
|
||
|
LOGPORT = 19996
|
||
|
|
||
|
formatter = report.SHORT_FMT
|