mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
Allow configuration of update_interval (#8720)
* ness_alarm: Allow configuration of update_interval * update_interval -> scan_interval
This commit is contained in:
parent
3a58c5f92b
commit
b6a562171b
@ -59,6 +59,11 @@ port:
|
|||||||
description: The port on which the IP232 module listens for clients.
|
description: The port on which the IP232 module listens for clients.
|
||||||
required: true
|
required: true
|
||||||
type: integer
|
type: integer
|
||||||
|
scan_interval:
|
||||||
|
description: "Time interval between updates. Supported formats: `scan_interval: 'HH:MM:SS'`, `scan_interval: 'HH:MM'` and Time period dictionary (see example below)."
|
||||||
|
required: false
|
||||||
|
default: '00:01:00'
|
||||||
|
type: time
|
||||||
zones:
|
zones:
|
||||||
description: List of zones to add
|
description: List of zones to add
|
||||||
required: false
|
required: false
|
||||||
@ -79,6 +84,18 @@ zones:
|
|||||||
type: string
|
type: string
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
#### {% linkable_title Time period dictionary example %}
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
scan_interval:
|
||||||
|
# At least one of these must be specified:
|
||||||
|
days: 0
|
||||||
|
hours: 0
|
||||||
|
minutes: 0
|
||||||
|
seconds: 10
|
||||||
|
milliseconds: 0
|
||||||
|
```
|
||||||
|
|
||||||
## {% linkable_title Services %}
|
## {% linkable_title Services %}
|
||||||
|
|
||||||
### {% linkable_title Service `aux` %}
|
### {% linkable_title Service `aux` %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user