Search found 564 matches
- Saturday 12 July 2025 20:17
- Forum: MQTT Auto Discovery
- Topic: Using MQTT for comm between Domoticz instances
- Replies: 32
- Views: 4309
Re: Using MQTT for comm between Domoticz instances
Having a copy of your configuration file (with personal data replaced by xxx or ***) may help. it is in my earlier message here https://forum.domoticz.com/viewtopic.php?p=327128#p327128 If my config file would be wrong then it would not work on startup either I think. Additional thought: Could it ...
- Saturday 12 July 2025 18:44
- Forum: MQTT Auto Discovery
- Topic: Using MQTT for comm between Domoticz instances
- Replies: 32
- Views: 4309
Re: Using MQTT for comm between Domoticz instances
I tried to understand the code and the source of the problem. I could not really determine what the trigger would be for the master to send an update of values. Would it be on the heartbeat or would it be on the update of a value of a device? I am not sure whether the plugins registers anywhere ...
- Thursday 10 July 2025 20:01
- Forum: MQTT Auto Discovery
- Topic: Using MQTT for comm between Domoticz instances
- Replies: 32
- Views: 4309
Re: Using MQTT for comm between Domoticz instances
I was cheering a bit too early... It now seems that the synchronisation only occurs once. If I restart the master, either with a reboot, or a domoticz restart, or a plugin restart (either disable/enable or update the logging) then the values are arriving at the slave without problems, but only once ...
- Wednesday 09 July 2025 22:04
- Forum: MQTT Auto Discovery
- Topic: Using MQTT for comm between Domoticz instances
- Replies: 32
- Views: 4309
Re: Using MQTT for comm between Domoticz instances
Just to share my experience here. It worked on the first try !! What I did: 1) Install a new Raspberry Pi with Domoticz and two 1-wire temperature sensors. This one is the master, i.e. data provider. 2) Install Mosquitto broker on this system. 3) Install the plugin and add it into the Domoticz ...
- Tuesday 08 July 2025 11:10
- Forum: MQTT Auto Discovery
- Topic: Using MQTT for comm between Domoticz instances
- Replies: 32
- Views: 4309
Re: Using MQTT for comm between Domoticz instances
I just wrote a new Python plugin synchronizing a master (local) instance of Domoticz to a slave (remote) one at https://github.com/FlyingDomotic/domoticz-mqtt-sync-plugin You just have to get list of IDX (or names) of devices you want to synchronize on master, and that's it. Everything is ...
- Thursday 03 July 2025 17:23
- Forum: dzVents
- Topic: Text Device does not gets updated.
- Replies: 6
- Views: 787
Re: Text Device does not gets updated.
First try directly updating the device with a browser. In that way you can eliminate an issue with the device itself. Use the following command http://domoticzIP:port/type=command¶m=udevice&idx=IDX&nvalue=0&svalue="yourText" Of course replace DomoticzIP:port, IDX and yourText with the relevant ...
- Thursday 26 June 2025 22:04
- Forum: Heating/cooling
- Topic: Intergas Xtend heatpump communication
- Replies: 2
- Views: 290
Re: Intergas Xtend heatpump communication
The first version of the Domoticz plugin for the Intergas Xtend heatpump is now available at github at the following link: https://github.com/WillemD61/XTEND-plugin It will create 52 Domoticz devices and collect data from the Xtend and store it on the Domoticz devices. For more info, see the readme ...
- Wednesday 25 June 2025 11:16
- Forum: Python
- Topic: BUG ! Computed kWh device cannot be updated with initial svalue (workaround found)
- Replies: 5
- Views: 197
Re: BUG ! Computed kWh device cannot be updated with initial svalue
I found a workaround 1) First I create the kWh device using the plugin with the default "from device" setting (leave the options field empty when creating the device). 2) Immediately after creation, I update the device svalue to "0;0" using the plugin. 3) and then immediately I update the options ...
- Wednesday 25 June 2025 10:50
- Forum: Python
- Topic: BUG ! Computed kWh device cannot be updated with initial svalue (workaround found)
- Replies: 5
- Views: 197
Re: BUG ! Computed kWh device cannot be updated with initial svalue
I think I found where the problem is. It is in line 5371-5397 in the SQLhelper.cpp file. If the initial svalue does not consists of two elements then it just restores the initial value. So if the initial value is empty (which it always is after the device is created) then the svalue remains empty ...
- Wednesday 25 June 2025 10:37
- Forum: Python
- Topic: BUG ! Computed kWh device cannot be updated with initial svalue (workaround found)
- Replies: 5
- Views: 197
Re: Python plugin does not update kWh device. Why?
More info: also updating the device with a JSON statement does not work when there is no initial svalue present.
So the only workaround now is to add a svalue in the devicestatus table first directly in the dbase.
Note there is no problem updating other device types, only the computed kwh device.
So the only workaround now is to add a svalue in the devicestatus table first directly in the dbase.
Note there is no problem updating other device types, only the computed kwh device.
- Wednesday 25 June 2025 10:10
- Forum: Python
- Topic: BUG ! Computed kWh device cannot be updated with initial svalue (workaround found)
- Replies: 5
- Views: 197
Re: Python plugin does not update kWh device. Why?
I found that if you put an initial svalue on the device (with sqlite3, directly on the devicestatus table) then after that the update code works correctly. So it is a bug when the device is created. It should initialize it with an initial svalue. Or alternatively the update statement should work ...
- Wednesday 25 June 2025 10:02
- Forum: Python
- Topic: BUG ! Computed kWh device cannot be updated with initial svalue (workaround found)
- Replies: 5
- Views: 197
Re: Python plugin does not update kWh device. Why?
I see an issue 6194 on Github which also describes the problem, although the description states that the device cannot be created. I can create the device I just cannot populate it with data.
There does not seem to be any action or solution to that issue?
There does not seem to be any action or solution to that issue?
- Wednesday 25 June 2025 9:35
- Forum: Python
- Topic: BUG ! Computed kWh device cannot be updated with initial svalue (workaround found)
- Replies: 5
- Views: 197
BUG ! Computed kWh device cannot be updated with initial svalue (workaround found)
Below is a small piece of code from a Python Plugin that I am developing using the DomoticzEx framework. After each piece of code I have pasted the log output. It all seems to work fine except for the final update. You can see the sValue is not updated onto the device. sValue remains ''" instead of ...
- Monday 23 June 2025 9:07
- Forum: Heating/cooling
- Topic: Intergas Xtend heatpump communication
- Replies: 2
- Views: 290
Re: Intergas Xtend heatpump communication
Just to inform you that I am going to develop a plugin myself instead of doing this via DzVents. It will probably take a few weeks. This is my first plugin from scratch, using the templates and examples available. The plugin will include more or less the same data as available on the Intergas Xtend ...
- Thursday 19 June 2025 13:48
- Forum: Heating/cooling
- Topic: Intergas Xtend heatpump communication
- Replies: 2
- Views: 290
Intergas Xtend heatpump communication
For anyone installing an Intergas Xtend heatpump with or without Intergas Gateway. It is possible to communicate to the Gateway by chosing the Intergas Gateway from the Domoticz hardware list. See this thread https://forum.domoticz.com/viewtopic.php?f=38&t=7745 for more info on this setup. This will ...
- Thursday 19 June 2025 12:50
- Forum: Show your projects
- Topic: Intergas Incomfort Heater control
- Replies: 103
- Views: 46877
Re: Intergas Incomfort Heater control
This post viewtopic.php?p=317232#p317232 earlier in this thread shows a word document with the installation guide.
- Thursday 19 June 2025 11:15
- Forum: Show your projects
- Topic: Intergas Incomfort Heater control
- Replies: 103
- Views: 46877
Re: Intergas Incomfort Heater control
For anyone struggling (like I did) to get the initial setup done with automatic creation of devices: The username and password that you need to fill on the config screen when you add this Intergas Gateway in Domoticz is NOT !!! the username and password of your Intergas account that you use for the ...
- Wednesday 18 June 2025 22:38
- Forum: Installation, Compiling, Permissions, Security and Starting
- Topic: how to move domoticz interface from wlan to eth0
- Replies: 6
- Views: 328
Re: how to move domoticz interface from wlan to eth0
Thanks you both. It worked. I had both eth0 and wlan working with domoticz visible on the wlan IP. I then disabled wlan and after reboot domoticz was visible on the IP of eth0. I then configured wlan to connect to a wifi access point (of my heatpump unit) and, after reboot, domoticz was still ...
- Wednesday 18 June 2025 20:26
- Forum: Installation, Compiling, Permissions, Security and Starting
- Topic: how to move domoticz interface from wlan to eth0
- Replies: 6
- Views: 328
Re: how to move domoticz interface from wlan to eth0
I will just try. As long as I have at least one SSH connection into the Raspberry I can always go back.
- Wednesday 18 June 2025 19:28
- Forum: Installation, Compiling, Permissions, Security and Starting
- Topic: how to move domoticz interface from wlan to eth0
- Replies: 6
- Views: 328
Re: how to move domoticz interface from wlan to eth0
Currently I have wlan and eth0 active at the same time and connected to my network and Domoticz shows only on the IP address of the wlan. Are you saying if I break the wifi connection then domoticz will show on eth0? And what will happen if I then configure the Raspberry wlan to connect to the wifi ...