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.

config.py 504B

123456789101112131415161718192021222324
  1. #!/usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. import os
  4. import report
  5. MQTT_USER = "<mqtt_smarthome_username>"
  6. MQTT_PASS = "<mqtt_smarthome_password>"
  7. MQTT_SERVER = "<mqtt_smarthome_hostname>"
  8. MQTT_TOPIC = "<mqtt_spotify_topic>"
  9. DEVICE_NAME = "Multimedia"
  10. #
  11. # Logging
  12. #
  13. __BASEPATH__ = os.path.abspath(os.path.dirname(__file__))
  14. APP_NAME = "spotify"
  15. LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
  16. LOGLVL = 'DEBUG'
  17. LOGHOST = 'cutelog'
  18. LOGPORT = 19996
  19. formatter = report.SHORT_FMT