I have an automation that is meant to change the camera mode, the triggers work fine, but it just won’t change the options
This is the list directly as it appears in the device configuration:
And this is the action from the automation:
service: input_select.select_option
data:
option: Always Disable
target:
entity_id: select.front_yard_infrared_mode
I feel like im missing something incredibly obvious here.
jchh
((not John))
2
Try putting quotes around the option:
data:
option: "Always Disable"
koying
(Chris B)
3
Your entity is not an input_select
, so the service is select.select_option
I’ve seen a couple like this.
I just created a feature request to harmonize the services between normal devices and helpers.
2 Likes
Breenzy
4
THANKYOU!
And obviously all my googling of “input select” would never resolve my issue.
I agree it’s very confusing.