mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 07:17:14 +00:00
Fix file extension of configuration file (#6238)
This commit is contained in:
parent
6890775752
commit
4349f7d8aa
@ -39,7 +39,7 @@ Configuration variables:
|
|||||||
A full configuration example could look like this:
|
A full configuration example could look like this:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
binary_sensor:
|
binary_sensor:
|
||||||
- platform: pilight
|
- platform: pilight
|
||||||
name: 'Motion'
|
name: 'Motion'
|
||||||
|
@ -19,14 +19,16 @@ The `aladdin_connect` cover platform lets you control Genie Aladdin Connect gara
|
|||||||
Only doors that are owned by your Aladdin Connect account will be available. Doors that your account has been granted shared access to are not yet supported.
|
Only doors that are owned by your Aladdin Connect account will be available. Doors that your account has been granted shared access to are not yet supported.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To use your Aladdin Connect cover in your installation, add the following to your `configuration.yaml` file:
|
To use your Aladdin Connect cover in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
cover:
|
cover:
|
||||||
- platform: aladdin_connect
|
- platform: aladdin_connect
|
||||||
username: user@email.com
|
username: YOUR_USERNAME
|
||||||
password: password
|
password: YOUR_PASSWORD
|
||||||
```
|
```
|
||||||
|
|
||||||
{% configuration %}
|
{% configuration %}
|
||||||
|
@ -101,8 +101,9 @@ In this section you will find some real life examples of how to use this lock.
|
|||||||
|
|
||||||
The example below shows a full configuration for a MQTT lock.
|
The example below shows a full configuration for a MQTT lock.
|
||||||
|
|
||||||
|
{% raw %}
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
lock:
|
lock:
|
||||||
- platform: mqtt
|
- platform: mqtt
|
||||||
name: Frontdoor
|
name: Frontdoor
|
||||||
@ -113,8 +114,9 @@ lock:
|
|||||||
optimistic: false
|
optimistic: false
|
||||||
qos: 1
|
qos: 1
|
||||||
retain: true
|
retain: true
|
||||||
value_template: '{% raw %}{{ value.x }}{% endraw %}'
|
value_template: '{{ value.x }}'
|
||||||
```
|
```
|
||||||
|
{% endraw %}
|
||||||
|
|
||||||
Keep an eye on retaining messages to keep the state as you don't want to unlock your door by accident when you restart something.
|
Keep an eye on retaining messages to keep the state as you don't want to unlock your door by accident when you restart something.
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ This section shows a real life example how to use values of a weather station.
|
|||||||
|
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: pilight
|
- platform: pilight
|
||||||
name: 'Temperature'
|
name: 'Temperature'
|
||||||
|
@ -50,7 +50,7 @@ In this section you find some real life examples of how to use this sensor.
|
|||||||
### {% linkable_title Get Episodes airing in next 2 days %}
|
### {% linkable_title Get Episodes airing in next 2 days %}
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: radarr
|
- platform: radarr
|
||||||
api_key: YOUR_API_KEY
|
api_key: YOUR_API_KEY
|
||||||
@ -65,7 +65,7 @@ sensor:
|
|||||||
SSL may run on a different port than the default (7878). The SSL port can be bound to any port in Radarr, so it should be set in the config here (unless it is changed to 7878).
|
SSL may run on a different port than the default (7878). The SSL port can be bound to any port in Radarr, so it should be set in the config here (unless it is changed to 7878).
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: radarr
|
- platform: radarr
|
||||||
api_key: YOUR_API_KEY
|
api_key: YOUR_API_KEY
|
||||||
@ -80,7 +80,7 @@ sensor:
|
|||||||
### {% linkable_title Get disk space for all storage locations %}
|
### {% linkable_title Get disk space for all storage locations %}
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: radarr
|
- platform: radarr
|
||||||
api_key: YOUR_API_KEY
|
api_key: YOUR_API_KEY
|
||||||
@ -94,7 +94,7 @@ sensor:
|
|||||||
The storage locations Radarr returns are in the system page and in some cases this can list duplicates if sub paths are mounted separately. By listing paths to include, you can choose what data is reported by the sensor.
|
The storage locations Radarr returns are in the system page and in some cases this can list duplicates if sub paths are mounted separately. By listing paths to include, you can choose what data is reported by the sensor.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: radarr
|
- platform: radarr
|
||||||
api_key: YOUR_API_KEY
|
api_key: YOUR_API_KEY
|
||||||
@ -112,7 +112,7 @@ The Radarr API returns available space in bytes, but this sensor will default to
|
|||||||
*This calculation is done using base 2 math, and may differ from systems calculating using base 10 math.*
|
*This calculation is done using base 2 math, and may differ from systems calculating using base 10 math.*
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: radarr
|
- platform: radarr
|
||||||
api_key: YOUR_API_KEY
|
api_key: YOUR_API_KEY
|
||||||
|
@ -53,7 +53,7 @@ In this section you find some real life examples of how to use this sensor.
|
|||||||
### {% linkable_title Get Episodes airing in next 2 days %}
|
### {% linkable_title Get Episodes airing in next 2 days %}
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: sonarr
|
- platform: sonarr
|
||||||
api_key: YOUR_API_KEY
|
api_key: YOUR_API_KEY
|
||||||
@ -68,7 +68,7 @@ sensor:
|
|||||||
SSL may run on a different port than the default (8989). The SSL port can be bound to any port in Sonarr, so it should be set in the config here (unless it is changed to 8989). See the [Sonarr site](https://github.com/Sonarr/Sonarr/wiki/SSL) for details on SSL in Sonarr.
|
SSL may run on a different port than the default (8989). The SSL port can be bound to any port in Sonarr, so it should be set in the config here (unless it is changed to 8989). See the [Sonarr site](https://github.com/Sonarr/Sonarr/wiki/SSL) for details on SSL in Sonarr.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: sonarr
|
- platform: sonarr
|
||||||
api_key: YOUR_API_KEY
|
api_key: YOUR_API_KEY
|
||||||
@ -83,7 +83,7 @@ sensor:
|
|||||||
### {% linkable_title Get disk space for all storage locations %}
|
### {% linkable_title Get disk space for all storage locations %}
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: sonarr
|
- platform: sonarr
|
||||||
api_key: YOUR_API_KEY
|
api_key: YOUR_API_KEY
|
||||||
@ -97,7 +97,7 @@ sensor:
|
|||||||
The storage locations Sonarr returns are in the system page and in some cases this can list duplicates if sub paths are mounted separately. By listing paths to include, you can choose what data is reported by the sensor.
|
The storage locations Sonarr returns are in the system page and in some cases this can list duplicates if sub paths are mounted separately. By listing paths to include, you can choose what data is reported by the sensor.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: sonarr
|
- platform: sonarr
|
||||||
api_key: YOUR_API_KEY
|
api_key: YOUR_API_KEY
|
||||||
@ -115,7 +115,7 @@ The Sonarr API returns available space in bytes, but this sensor will default to
|
|||||||
*This calculation is done using base 2 math, and may differ from systems calculating using base 10 math.*
|
*This calculation is done using base 2 math, and may differ from systems calculating using base 10 math.*
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: sonarr
|
- platform: sonarr
|
||||||
api_key: YOUR_API_KEY
|
api_key: YOUR_API_KEY
|
||||||
|
Loading…
x
Reference in New Issue
Block a user