Add configuration details

This commit is contained in:
Fabian Affolter 2015-10-09 23:33:30 +02:00
parent 6fdf74c450
commit 958816a764

View File

@ -10,16 +10,21 @@ footer: true
--- ---
<img src='/images/supported_brands/plex.png' class='brand pull-right' /> <img src='/images/supported_brands/plex.png' class='brand pull-right' />
The Plex platform allows you to connect a [Plex Media Server](https://plex.tv) to Home Assistant. The Plex platform allows you to connect a [Plex Media Server](https://plex.tv) to Home Assistant. It will allow you to control media playback and see the current playing item.
It will allow you to control media playback and see the current playing item.
To add Plex to your installation, add the following to your `configuration.yaml` file:
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
media_player: media_player:
platform: plex platform: plex
# The name of the backend device (Under Plex Media Server > settings > server)
name: plex_server name: plex_server
user: your_username user: YOUR_USERNAME
password: your_secure_password password: YOUR_PASSWORD
``` ```
Configuration variables:
- **name** *Required*: The name of the backend device (Under Plex Media Server > settings > server)
- **user** *Required*: The username for your Pley server.
- **password** *Required*: The password for your Plex server.