Hello, i have this automation
alias: New automation
description: ""
triggers:
- trigger: state
entity_id:
- input_number.birou
conditions: []
actions:
- action: rest_command.borou_sus
metadata: {}
data:
value: "{{ states('input_number.birou') }}"
mode: single
I want that when i movie the slider, the rest_command is runned and give the value of the input slider as parameter
this is the rest command
borou_sus:
url: "http://192.168.1.130/setHeight?height={{value}}"
method: get
in traces i see the right value(screenshot), but when i receive the request the value is 90 everytime...
what is wrong?