Module spotify_state -> mqtt
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.
123456789101112131415161718192021222324 |
- #!/usr/bin/env python
- # -*- coding: UTF-8 -*-
- import os
- import report
-
- MQTT_USER = "user"
- MQTT_PASS = "pass"
- MQTT_SERVER = "localhost"
- MQTT_TOPIC = "hifi/spotify"
-
- DEVICE_NAME = "Multimedia"
-
- #
- # Logging
- #
- __BASEPATH__ = os.path.abspath(os.path.dirname(__file__))
- APP_NAME = "spotify"
- LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
- LOGLVL = 'DEBUG'
-
- LOGHOST = 'cutelog'
- LOGPORT = 19996
-
- formatter = report.SHORT_FMT
|