I do not own shares, nor do I get commission
You may want to take at shelly.cloud.
I own several Shelly 1: on/off via the wallswitch and via Domoticz.
Note: MQTT may be necessary...
Search found 5 matches
- Sunday 01 May 2022 16:49
- Forum: Other questions and discussions
- Topic: Homemade (wall) remote switch
- Replies: 0
- Views: 192
- Wednesday 20 February 2019 15:13
- Forum: Show your projects
- Topic: Nefit / Buderus data/control via Arduino / ESP8266 to Domoticz (directly without OpenTherm module or Easy)
- Replies: 247
- Views: 72993
Re: Nefit / Buderus data/control via Arduino / ESP8266 to Domoticz (directly without OpenTherm module or Easy)
For those interested (this is a Domoticz forum, isn't it...): I have just released an early version of a Python plugin for the EMS-ESP.
It can currently be found as a pull request on Proddy's Github.
It can currently be found as a pull request on Proddy's Github.
- Tuesday 08 January 2019 12:39
- Forum: ESP8266
- Topic: [ESP8266] Commercial H801 WiFi RGB-dimmer topic
- Replies: 119
- Views: 81874
Re: [ESP8266] Commercial H801 WiFi RGB-dimmer topic
I've done a bit of digging... The base problem lies with Tasmota. Due to the way it handles things, little changes in colors/channels may occur. This is reflected in the return MQTT-message issued by the H801. Tasmota says of this behaviour "it's a feature, not a bug"... :? A possible way around it ...
- Monday 31 December 2018 21:03
- Forum: ESP8266
- Topic: [ESP8266] Commercial H801 WiFi RGB-dimmer topic
- Replies: 119
- Views: 81874
Re: [ESP8266] Commercial H801 WiFi RGB-dimmer topic
Thanks. It may well have to do with conversion from % (0-100) to hex (00-FF) and back. Changing your lines: color["r"] = int(colors[0] * 255 / 100) to color["r"] = int((colors[0] + 1) * 255 / 100) (for all 5 color channels) reduces the problem but doesn't entirely eliminate it. Is it possible to ...
- Saturday 29 December 2018 18:06
- Forum: ESP8266
- Topic: [ESP8266] Commercial H801 WiFi RGB-dimmer topic
- Replies: 119
- Views: 81874
Re: [ESP8266] Commercial H801 WiFi RGB-dimmer topic
Hi I've created python plugin for domoticz which allows to control H801 with Tasmota firmware via MQTT https://github.com/stas-demydiuk/domoticz-h801-tasmota-plugin Feedback is appreciated Hi Stas, I'm using your plugin as 5x dimmer, but I'm noticing some strange behaviour. Domoticz V4.10303 on RPi ...