🚜 Merges/Redirects Random component pages (#9231)

This commit is contained in:
Klaas Schoute 2019-04-17 21:56:22 +02:00 committed by Fabian Affolter
parent da15152086
commit fb47ac749d
2 changed files with 31 additions and 42 deletions

View File

@ -1,35 +0,0 @@
---
layout: page
title: "Random Binary Sensor"
description: "Instructions on how to integrate random state sensors into Home Assistant."
date: 2017-10-27 08:00
sidebar: true
comments: false
sharing: true
footer: true
logo: home-assistant.png
ha_category: Utility
ha_iot_class: Local Polling
ha_release: 0.57
ha_qa_scale: internal
---
The `random` binary sensor platform is creating random states (`true`, 1, `on` or `false`, 0, `off`). This can be useful if you want to test automation rules. It generates a new state every time it is polled.
## {% linkable_title Configuration %}
To enable the random binary sensor, add the following lines to your `configuration.yaml` file:
```yaml
# Example configuration.yaml entry
binary_sensor:
- platform: random
```
{% configuration %}
name:
description: Name to use in the frontend.
required: false
type: string
default: Random Binary Sensor
{% endconfiguration %}

View File

@ -1,24 +1,48 @@
---
layout: page
title: "Random Sensor"
description: "Instructions on how to integrate random number sensors into Home Assistant."
title: "Random"
description: "Instructions on how to integrate random numbers into Home Assistant."
date: 2016-10-30 12:10
sidebar: true
comments: false
sharing: true
footer: true
logo: home-assistant.png
ha_category: Utility
ha_category:
- Utility
- Sensor
- Binary Sensor
ha_iot_class: Local Polling
ha_release: 0.32
ha_qa_scale: internal
redirect_from:
- /components/sensor.random/
- /components/sensor.random/
- /components/binary_sensor.random/
---
The `random` sensor platform is creating random sensor values (integers) out of a given range. Returned values form a [discrete uniform distribution](https://en.wikipedia.org/wiki/Discrete_uniform_distribution), meaning that each integer value in the range configured is equally likely to be drawn. This can be useful if you want to test automation rules. It generates a new value every time it is polled.
## {% linkable_title Binary Sensor %}
## {% linkable_title Configuration %}
The `random` binary sensor platform is creating random states (`true`, 1, `on` or `false`, 0, `off`). This can be useful if you want to test automation rules. It generates a new state every time it is polled.
To enable the random binary sensor, add the following lines to your `configuration.yaml` file:
```yaml
# Example configuration.yaml entry
binary_sensor:
- platform: random
```
{% configuration %}
name:
description: Name to use in the frontend.
required: false
type: string
default: Random Binary Sensor
{% endconfiguration %}
## {% linkable_title Sensor %}
The `random` sensor platform is creating random sensor values (integers) out of a given range. Returned values form a [discrete uniform distribution](https://en.wikipedia.org/wiki/Discrete_uniform_distribution), meaning that each integer value in the range configured is equally likely to be drawn. This can be useful if you want to test automation rules. It generates a new value every time it is polled.
To enable the random sensor, add the following lines to your `configuration.yaml` file:
@ -48,4 +72,4 @@ unit_of_measurement:
description: Defines the units of measurement of the sensor, if any.
required: false
type: string
{% endconfiguration %}
{% endconfiguration %}