#!/usr/bin/env python # -*- coding: UTF-8 -*- import os import report from remotes import yamaha_ras5 as amplifier from remotes import technics_eur642100 as cd_player __BASEPATH__ = os.path.abspath(os.path.dirname(__file__)) MQTT_SERVER = "" MQTT_USER = "" MQTT_PASS = "" MQTT_TOPIC = "" SUPPORTED_REMOTES = { amplifier.NAME: amplifier.ALL, cd_player.NAME: cd_player.ALL } # # Logging # APP_NAME = "remote_control" LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout' LOGLVL = 'INFO' LOGHOST = 'cutelog' LOGPORT = 19996 formatter = report.SHORT_FMT