
* Automatically create linkable headers
* Visually improve position of linkable header chain icon
* Do not auto link headers on homepage
* Remove linkable_title everywhere
* 🚑 Re-instante linkable_title plugin as NOOP
2.2 KiB
layout | title | description | date | sidebar | comments | sharing | footer | logo | ha_category | ha_release | ha_iot_class | redirect_from | ||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
page | Channels | Instructions on how to integrate Channels into Home Assistant. | 2018-03-06 11:00 | true | false | true | true | channels.png |
|
0.65 | Local Polling |
|
The Channels platform allows you to control Channels from Home Assistant. Play, pause, seek, or skip commercials on an instance of Channels that is running on your network.
Your favorite channels will appear as sources in the Source List in Home Assistant.
To add Channels to your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
media_player:
- platform: channels
name: Family Room Channels
host: 192.168.1.50
{% configuration %} host: description: The IP address of the device running Channels, e.g., 192.168.1.50. required: true type: string port: description: The port where Channels is accessible. required: false default: 57000 type: integer name: description: The name of the Channels instance in Home Assistant, e.g., Family Room Channels. required: false default: Channels type: string {% endconfiguration %}
Service channels_seek_forward
Seek forward by the number of seconds currently set in settings on the instance of Channels.
Service data attribute | Optional | Description |
---|---|---|
entity_id |
no | String that points at entity_id of Channels app. |
Service channels_seek_backward
Seek backward by the number of seconds currently set in settings on the instance of Channels.
Service data attribute | Optional | Description |
---|---|---|
entity_id |
no | String that points at entity_id of Channels app. |
Service channels_seek_by
Seek forward or backward by a provided number of seconds.
Service data attribute | Optional | Description |
---|---|---|
entity_id |
no | String that points at entity_id of Channels app. |
seconds |
no | Number of seconds to seek in the timeline by. Negative seconds seeks backwards. |