Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Define scan configuration parameter for variable time between executions
YAML configuration: ``` sensor: - platform: ssh host: !secret proxmox_host name: 'NUC CPU Temp' username: !secret proxmox_user password: !secret proxmox_pass command: "sensors | grep 'Package id 0:' | cut -c17-20" value_template: >- {%- set line = value.split("\r\n") -%} {{ line[1] }} unit_of_measurement: "ºC" # Time between executions, in seconds scan: '900' ```
- Loading branch information