From 3828afc5665f0fc60645c73960c3b7af7bf28af8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 2 Jun 2015 08:52:46 +0200 Subject: [PATCH] add mpd page --- source/components/media_player.mpd.markdown | 24 +++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 source/components/media_player.mpd.markdown diff --git a/source/components/media_player.mpd.markdown b/source/components/media_player.mpd.markdown new file mode 100644 index 00000000000..0233ecd36a7 --- /dev/null +++ b/source/components/media_player.mpd.markdown @@ -0,0 +1,24 @@ +--- +layout: page +title: "Music Player Daemon support" +description: "Instructions how to integrate Music Player Daemon into Home Assistant." +date: 2015-06-02 08:00 +sidebar: false +comments: false +sharing: true +footer: true +--- + + +The mpd platform allows you to control a [Music Player Daemon](http://www.musicpd.org/) from Home Assistant. Unfortunatly you will not be able to manipulate the playlist (add or delete songs) or add transitions between the songs. + +To add MPD to your installation, add the following to your `configuration.yaml` file: + +``` +media_player: + platform: mpd + server: 127.0.0.1 + port: 6600 + location: bedroom +``` +