Michael

Results 24 comments of Michael

Hi, i do have apparently the same issue. I run it in a docker image on an ubuntu 18.04 LTS host. ` docker run -d \ --name=tvhProxy \ --restart=always \...

Have you ever thougt to set a timer, when a command comes? When a new command comes, you could quit the first timer... The callback of the timer could actually...

I changed this, and now the sliders as well work like a charm for me... :-) ``` javascript var brightnessTimer; MiLightAccessory.prototype.setBrightness = function(level, callback) { clearTimeout(brightnessTimer); brightnessTimer = setTimeout(setBrightnessTimer, 100,...

:-) I failed in accessing the delay, thought about this. Another (better?) option would be to check the chain of open promises, but this was several levels to hard....

In case you did not find it by yourself: my coding proposal has a nasty stupid bug: If e.g. a scene macro sends several brightness commands to different bulbs, only...

@dotsam, Ok, i fixed that and added the delay from config. Now i have no Issues on scene macros AND a smooth slider behavior. :-) ``` javascript var brightnessTimer =...

Here https://community.openhab.org/t/http-binding-for-homepilot-wrong/81669/5 i found the same issue. In my cuase PUT is mandatory. It would be nice, if somebody could have a look and fix that; does not look impossible...

I have to confess to have the same problem - which kills the project a bit. For me it worked well for several weeks, but now it will not last...

i hacked this at the end of my main, works great ``` // Define a tuple structure to hold sensor values and corresponding brightness levels typedef struct { int sensorValue;...

It should be just somewhere within the loop…