Hello,
I’m currently trying to move one of my IP cameras to different PTZ points via Node-Red.
The points are saved in the camera. I can set the points without any problems using automation in HomeAssistant itself. Here’s the automation:
When trying to get a service call to run from Node-RED, it is very useful to first try it in Home Assistant Developer Tools > Service. You have done this, and it shows that the service you are trying to call is
“select.select_option”
In the Call Service node, this translates to
Domain: select
Service: select_option
I can see this service in Home Assistant, and it selects an option from a drop down list.
In the Call Service node you have used domain: input_select, which is very different and deals with media players. It is confusing as both domains have the same service (select_option).
Try using “select” in the Domain. Everything else looks OK.