diff --git a/source/components/index.markdown b/source/components/index.markdown index bf39e5bbfad..561e6aaf3c1 100644 --- a/source/components/index.markdown +++ b/source/components/index.markdown @@ -221,6 +221,11 @@ Entities are things that you want to observe within Home Assistant. Support for
+iTunes itself can not be remotely controlled. In order to control your iTunes, +you'll need to install middleware named `itunes-api`. `itunes-api` is a simple REST +server that talks to a local instance of iTunes via Applescript. It's very easy to set up +and run. You can find more about it on it's [GitHub repo](https://github.com/maddox/itunes-api). +
+ + +To add iTunes to your installation, add the following to your `configuration.yaml` file: + +``` +# Example configuration.yaml entry +media_player: + platform: itunes + name: iTunes + host: http://192.168.1.50 + port: 8181 +``` + +Configuration variables: + +- **host** *Required*: The URL of the itunes-api API, eg. http://192.168.1.50 +- **port** *Optional*: The PORT that itunes-api is running on. diff --git a/source/images/supported_brands/itunes.png b/source/images/supported_brands/itunes.png new file mode 100644 index 00000000000..f61681b0d1e Binary files /dev/null and b/source/images/supported_brands/itunes.png differ