Ok, but keep in mind 99% of all examples in the World Wide Web just add (for example) “set temperature point” (i.e. Homematic IP device) as a binding to the sliders.
Please correct me if I am wrong, but… as far as I guess, the binding in the habpanel is a two-way-binding by default (see AngularJS examples/documentation), so changing of one side will inform the other and vice-versa.
Anyway, a small example case will looks like this.
Items:
Number dummySliderProxy
Rules:
rule "dummySliderProxy"
when
Item dummySliderProxy changed
then
logInfo("dummySliderProxy", dummySliderProxy.state.toString)
end
The console log:
2021-11-09 20:28:31.191 [INFO ] [b.core.model.script.dummySliderProxy] - 27
2021-11-09 20:28:40.227 [INFO ] [b.core.model.script.dummySliderProxy] - 55
2021-11-09 20:28:43.591 [INFO ] [b.core.model.script.dummySliderProxy] - 74
2021-11-09 20:28:46.561 [INFO ] [b.core.model.script.dummySliderProxy] - 20
2021-11-09 20:28:49.444 [INFO ] [b.core.model.script.dummySliderProxy] - 39
2021-11-09 20:28:53.141 [INFO ] [b.core.model.script.dummySliderProxy] - 56
The habpanel’s standard slider and my configuration:
The screen record:
((click for play))

Thats all standard stuff which I use, just added by few clicks. Am I doing something wrong?
Really, what are all the people do to get this working smoothly?
