Hi there, I’m trying to send some data to my WLED panel and I’m following these instructions:
I had this working at one time, then I changed the name of the rest command in configuration.yaml and the automation, now I cannot get it working again, even when I change back to the initial name. I have restarted HA multiple times, but I still get an error “Error: Action rest_command.panel_set_temp not found”.
This is the snippit from my configuration.yaml
rest_command:
panel_set_temp:
url: http://172.16.16.237/json/state
method: POST
content-type: 'application/json'
payload: '{"seg": [{"id": 1,"n": "{{text}}"} ]}'
my automation is:
actions:
- data:
text: M {{states("sensor.outdoor_temperature") | round(0)}}F
action: rest_command.panel_set_temp
mode: single
Any thoughts on how to get my rest_commands to be recognized by HA?
Thanks!