mopidy-raspberrypi-gpio/mopidy_raspberry_gpio/frontend.py

91 lines
2.7 KiB
Python
Raw Permalink Normal View History

2019-11-21 20:06:13 +01:00
import logging
import pykka
from mopidy import core
logger = logging.getLogger(__name__)
class RaspberryGPIOFrontend(pykka.ThreadingActor, core.CoreListener):
def __init__(self, config, core):
super().__init__()
import RPi.GPIO as GPIO
self.core = core
self.config = config["raspberry-gpio"]
self.pin_settings = {}
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
# Iterate through any bcmN pins in the config
# and set them up as inputs with edge detection
for key in self.config:
if key.startswith("bcm"):
pin = int(key.replace("bcm", ""))
settings = self.config[key]
if settings is None:
continue
pull = GPIO.PUD_UP
edge = GPIO.FALLING
if settings.active == "active_high":
pull = GPIO.PUD_DOWN
edge = GPIO.RISING
GPIO.setup(pin, GPIO.IN, pull_up_down=pull)
GPIO.add_event_detect(
pin,
edge,
callback=self.gpio_event,
bouncetime=settings.bouncetime,
)
self.pin_settings[pin] = settings
def gpio_event(self, pin):
settings = self.pin_settings[pin]
2020-03-25 12:42:57 +01:00
self.dispatch_input(settings)
2019-11-21 20:06:13 +01:00
2020-03-25 12:42:57 +01:00
def dispatch_input(self, settings):
handler_name = f"handle_{settings.event}"
2019-11-21 20:06:13 +01:00
try:
2020-03-25 13:31:22 +01:00
getattr(self, handler_name)(settings.options)
2019-11-21 20:06:13 +01:00
except AttributeError:
raise RuntimeError(
2020-03-25 12:42:57 +01:00
f"Could not find input handler for event: {settings.event}"
2019-11-21 20:06:13 +01:00
)
2020-03-25 12:42:57 +01:00
def handle_play_pause(self, config):
if self.core.playback.get_state().get() == core.PlaybackState.PLAYING:
2019-11-21 20:06:13 +01:00
self.core.playback.pause()
else:
self.core.playback.play()
2020-07-14 15:50:24 +02:00
def handle_play_stop(self, config):
if self.core.playback.get_state().get() == core.PlaybackState.PLAYING:
self.core.playback.stop()
else:
self.core.playback.play()
2019-11-21 20:06:13 +01:00
2020-03-25 12:42:57 +01:00
def handle_next(self, config):
2019-11-21 20:06:13 +01:00
self.core.playback.next()
2020-03-25 12:42:57 +01:00
def handle_prev(self, config):
2019-11-21 20:06:13 +01:00
self.core.playback.previous()
2020-03-25 12:42:57 +01:00
def handle_volume_up(self, config):
step = int(config.get("step", 5))
volume = self.core.mixer.get_volume().get()
2020-03-25 12:42:57 +01:00
volume += step
2019-11-21 20:06:13 +01:00
volume = min(volume, 100)
self.core.mixer.set_volume(volume)
2019-11-21 20:06:13 +01:00
2020-03-25 12:42:57 +01:00
def handle_volume_down(self, config):
step = int(config.get("step", 5))
volume = self.core.mixer.get_volume().get()
2020-03-25 12:42:57 +01:00
volume -= step
2019-11-21 20:06:13 +01:00
volume = max(volume, 0)
self.core.mixer.set_volume(volume)