How I can improve refresh delay of temperature sensor?
I find this example in homematic integration documentation:
template:
- binary_sensor:
- name: "Homematic is sending updates"
state: >-
{{ (now() - states.sensor.office_voltage.last_changed).seconds < 600 }}
automation:
- alias: "Homematic Reconnect"
trigger:
platform: state
entity_id: binary_sensor.homematic_is_sending_updates
to: "off"
action:
# Reconnect, if sensor has not been updated for over 10 minutes
service: homematic.reconnect
Fo test I try to manualy start service: homematic.reconnect
, but I get no response from temeratue sensors (no refresh)?