An open API service indexing awesome lists of open source software.

https://github.com/pimatic/pimatic-mpd

pimatic plugin for controlling the Music Player Daemon
https://github.com/pimatic/pimatic-mpd

Last synced: about 1 year ago
JSON representation

pimatic plugin for controlling the Music Player Daemon

Awesome Lists containing this project

README

          

pimatic-mpd
===========

pimatic plugin for controlling the [Music Player Daemon](http://www.musicpd.org/).

###device config example:

```json
{
"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