pimatic-mpd

pimatic plugin for controlling the Music Player Daemon

Usage no npm install needed!

<script type="module">
  import pimaticMpd from 'https://cdn.skypack.dev/pimatic-mpd';
</script>

README

pimatic-mpd

pimatic plugin for controlling the Music Player Daemon.

device config example:

{
  "id": "mpd-player",
  "name": "Music",
  "class": "MpdPlayer",
  "host": "192.168.1.2",
  "port": 6600
}

device rules examples:

Play music
if smartphone is present then play mpd-player

Pause music
if smartphone is absent then pause mpd-player

Stop music
if smartphone is absent then stop mpd-player

Change volume
if buttonVolumeLow is pressed then change volume of mpd-player to 5

Next song
if buttonNext is pressed then play next song Music

Previous song
if buttonPrev is pressed then play previous song Music

Currently no predicates for the mpd plugin. If you would like to do something when the state changes u could use the attribute predicate.
if $mpd-player.state equals "play" then switch speakers on
if $mpd-player.state equals "pause" then switch speakers off