Hello,
I have setup ,after the new Core update to 2021.5.0 , the Open UV integration as described here … OpenUV - Home Assistant
- alias: "Update OpenUV every 30 minutes during the daytime"
trigger:
platform: time_pattern
minutes: "/30"
condition:
condition: and
conditions:
- condition: sun
after: sunrise
- condition: sun
before: sunset
action:
service: openuv.update_data
The automation “automation.update_openuv_every_30_minutes_during_the_daytime” has been created
But the automation fails due to this error “Unable to find service openuv.update_data”
2021-05-07 16:30:00 INFO (MainThread) [homeassistant.components.automation.update_openuv_every_30_minutes_during_the_daytime] Update OpenUV every 30 minutes during the daytime: Running automation actions
2021-05-07 16:30:00 INFO (MainThread) [homeassistant.components.automation.update_openuv_every_30_minutes_during_the_daytime] Update OpenUV every 30 minutes during the daytime: Executing step call service
2021-05-07 16:30:00 ERROR (MainThread) [homeassistant.components.automation.update_openuv_every_30_minutes_during_the_daytime] Update OpenUV every 30 minutes during the daytime: Error executing script. Service not found for call_service at pos 1: Unable to find service openuv.update_data
2021-05-07 16:30:00 ERROR (MainThread) [homeassistant.components.automation.update_openuv_every_30_minutes_during_the_daytime] Error while executing automation automation.update_openuv_every_30_minutes_during_the_daytime: Unable to find service openuv.update_data
This service "openuv.update_data " is also not available in Developer Tools/Service Tab
Is it a known issue ?
Thank you