Documentation update

Mainly for the HTTP 410 error case.
This commit is contained in:
Philip Abbey
2025-11-02 12:20:46 +00:00
parent f9253e8cf0
commit 8360a3e4a2
3 changed files with 11 additions and 5 deletions

View File

@@ -96,19 +96,19 @@ For copy and paste, the Jinja2 fields are as follows:
1. Template rendering with conversion to dB:
```
```jinja
{{ state_attr('media_player.amplifier','volume_level') * 100 -80 }}
```
2. Conversion from dB to range 0.0 to 1.0:
```
```jinja
{{ (value+80)/100 }}
```
3. Availability template:
```
```jinja
{{ not is_state('media_player.amplifier','unavailable') }}
```