Don't refer to deprecated Hyperion effect names (#16363)

This commit is contained in:
Dermot Duffy 2021-04-20 10:57:40 -07:00 committed by GitHub
parent b612ea8b5d
commit b6fbeb61a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,10 +46,10 @@ added/removed from Home Assistant.
The effect list is dynamically pulled from the Hyperion server. The following The effect list is dynamically pulled from the Hyperion server. The following
extra effects will be available: extra effects will be available:
- BOBLIGHTSERVER: Use a Boblight-Server configured in Hyperion. - 'Boblight Server': Use a 'Boblight Server' configured in Hyperion.
- GRABBER: Use a 'Platform Capture' grabber that is configured in Hyperion. - 'Platform Capture': Use a 'Platform Capture' grabber that is configured in Hyperion.
- V4L: Use a 'USB Capture' V4L device that is configured in Hyperion. - 'USB Capture': Use a 'USB Capture' device that is configured in Hyperion.
- Solid: Use a solid color only. - 'Solid': Use a solid color only.
## Advanced Entities ## Advanced Entities
@ -114,7 +114,7 @@ To have the lights playing an effect when pausing, idle or turn off a media play
effect: "Full color mood blobs" effect: "Full color mood blobs"
``` ```
To capture the screen when playing something on a media_player you can use this example: To capture the screen on a USB capture device, when playing something on a media_player, you can use this example:
```yaml ```yaml
- alias: "Set hyperion when playback starts" - alias: "Set hyperion when playback starts"
@ -127,5 +127,5 @@ To capture the screen when playing something on a media_player you can use this
target: target:
entity_id: light.hyperion entity_id: light.hyperion
data: data:
effect: V4L effect: "USB Capture"
``` ```