salon: kontrola zasilania głośników

Póki nie działa audio przez HDMI z amdgpu i są podłączone
zewnętrze głośniki, niech będą wyłączone gdy nie gra ani Kodi,
ani QuodLibet
This commit is contained in:
2021-01-26 16:43:57 +01:00
parent 4cbf74ac08
commit cf7a218384
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
rule "Zasilanie głośników"
when
Item Kodi_State received update or
Item Mpd_quodlibet_StartStop received update
then
if (Kodi_State.state == "Play" || Mpd_quodlibet_StartStop.state == ON) {
sOWFS03.sendCommand(ON)
} else if (Kodi_State.state == "Stop" && Mpd_quodlibet_StartStop.state == OFF) {
sOWFS03.sendCommand(OFF)
}
end