Make titles linkable

This commit is contained in:
Fabian Affolter 2015-12-08 09:53:19 +01:00
parent cf8f436680
commit 193cc41d45
4 changed files with 8 additions and 12 deletions

View File

@ -9,7 +9,7 @@ sharing: true
footer: true footer: true
--- ---
### Rainy Day Light ### ### {% linkable_title Rainy Day Light %}
This requires a [forecast.io](components/sensor.forecast/) sensor with the condition `weather_precip` that tells if it's raining or not. This requires a [forecast.io](components/sensor.forecast/) sensor with the condition `weather_precip` that tells if it's raining or not.

View File

@ -9,7 +9,7 @@ sharing: true
footer: true footer: true
--- ---
### Basic example for use_trigger_values ### ### {% linkable_title Basic example for use_trigger_values %}
Turn on lights during daytime when it's dark enough < 200 lux. Turn on lights during daytime when it's dark enough < 200 lux.

View File

@ -11,13 +11,10 @@ footer: true
Like it how the lights dim up/down at the movies? Do it at home as well! Like it how the lights dim up/down at the movies? Do it at home as well!
This example uses the media player, Philips Hue (transitions) and the sun component. This example uses the media player, Philips Hue (transitions) and the sun component. We'll use actions to detect media player state changes and scenes to control multiple lights, color settings and transition between scenes.
We'll use actions to detect media player state changes and scenes to control multiple
lights, color settings and transition between scenes.
#### Scenes #### {% linkable_title Scenes %}
One scene for normal light, one for when movies are on. One scene for normal light, one for when movies are on. A 2 second transition gives a nice 'feel' to the switch.
A 2 second transition gives a nice 'feel' to the switch.
```yaml ```yaml
scene: scene:
@ -48,9 +45,8 @@ scene:
``` ```
#### Automation #### {% linkable_title Automation %}
The paused/stopped state is best matched using "from: 'playing'". The paused/stopped state is best matched using "from: 'playing'". Adding in the sun condition as we only want this when it's dark.
Adding in the sun condition as we only want this when it's dark.
```yaml ```yaml
automation: automation:

View File

@ -9,7 +9,7 @@ sharing: true
footer: true footer: true
--- ---
#### Turn on lights with a resettable off timer #### #### {% linkable_title Turn on lights with a resettable off timer %}
This recipe will turn on a light when there is motion and turn off the light when ten minutes has passed without any motion events . This recipe will turn on a light when there is motion and turn off the light when ten minutes has passed without any motion events .