Skip to content
Snippets Groups Projects
Commit 8f638c2d authored by Jess Ward's avatar Jess Ward
Browse files

added logging information for status

parent e0c73a61
No related branches found
No related tags found
No related merge requests found
import asyncio
import logging
import time
import RPi.GPIO as GPIO
from snap import get_snapcast_client
......@@ -13,6 +14,8 @@ def dark_mute():
# Snapcast library only supports asynchronous so need to wrap in async loop
loop = asyncio.new_event_loop()
client = get_snapcast_client(loop)
logger = logging.getLogger('darkmute')
logging.basicConfig(level=logging.INFO)
GPIO.setmode(GPIO.BOARD)
try:
while True:
......@@ -20,8 +23,10 @@ def dark_mute():
if brightness < MUTE_BRIGHTNESS:
# client.muted did not work so need client.set_muted
# loop used here and also passed into snap.py to get server
logger.info('muting client')
loop.run_until_complete(client.set_muted(True))
else:
logger.info('unmuting client')
loop.run_until_complete(client.set_muted(False))
except KeyboardInterrupt:
pass
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment