mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-04 01:58:57 +00:00
892 B
892 B
layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_iot_class, ha_release
layout | title | description | date | sidebar | comments | sharing | footer | logo | ha_category | ha_iot_class | ha_release |
---|---|---|---|---|---|---|---|---|---|---|---|
page | Random Sensor | Instructions how to integrate random number sensors into Home Assistant. | 2016-10-30 12:10 | true | false | true | true | home-assistant.png | Sensor | Local Polling | 0.32 |
The random
sensor platform is creating random sensor values (integers) out of a given range. This can be useful if you want to test automation rules.
To enable the random sensor, add the following lines to your configuration.yaml
:
# Example configuration.yaml entry
sensor:
- platform: random
Configuration variables:
- name (Optional): Name of the sensor to use in the frontend. Defaults to
Random Sensor
. - minimum (Optional): Lower limit for the values. Defaults to
0
. - maximum (Optional): Upper limit for the values. Defaults to
20
.