Is there a way to force the scrape sensor to update manually?
I’ve tried the homeassistant.update_entity in /developer-tools/service, but this isn’t updating the sensor value.
Thank you!
Is there a way to force the scrape sensor to update manually?
I’ve tried the homeassistant.update_entity in /developer-tools/service, but this isn’t updating the sensor value.
Thank you!
Just came across this and maybe you have solved it, but could be useful for others looking for a solution:
automation:
- alias: 'Update hourly sensors'
id: update_hourly_sensors
mode: single
trigger:
- platform: time_pattern
minutes: 1 # update hourly at xx:01
action:
- service: homeassistant.update_entity
target:
entity_id:
- sensor.<your_1st_scrape_sensor_here>
- sensor.<your_2nd_scrape_sensor_here>