Explorar el Código

Processor usage reduction

master
Dirk Alders hace 11 meses
padre
commit
ae44e9495e
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3
    1
      bt-audioparser/bt-audioparser.py

+ 3
- 1
bt-audioparser/bt-audioparser.py Ver fichero

@@ -4,6 +4,7 @@ import mqtt
4 4
 import report
5 5
 import select
6 6
 from systemd import journal
7
+import time
7 8
 
8 9
 
9 10
 try:
@@ -53,4 +54,5 @@ if __name__ == "__main__":
53 54
                         if PLAY in entry['MESSAGE']:
54 55
                             playing = True
55 56
                             send_state_msg_mqtt(mc, playing)
56
-                    logger.debug(str(entry['__REALTIME_TIMESTAMP'] )+ ' ' + entry['MESSAGE'])
57
+                    logger.debug(str(entry['__REALTIME_TIMESTAMP'] )+ ' ' + entry['MESSAGE'])
58
+        time.sleep(0.1)

Loading…
Cancelar
Guardar