Search found 22 matches
- Sunday 08 February 2026 11:50
- Forum: Other questions and discussions
- Topic: How to use Libre Hardware Monitor
- Replies: 1
- Views: 108
Re: How to use Libre Hardware Monitor
No one using Libre Hardware Monitor with Domoticz on Windows?
- Friday 06 February 2026 8:51
- Forum: Other questions and discussions
- Topic: How to use Libre Hardware Monitor
- Replies: 1
- Views: 108
How to use Libre Hardware Monitor
I used "Open Hardware Monitor" for a long time with a Domoticz "Motherboard" hardware entry. With my new PC "Open Hardware Monitor" doesn't support many of the motherboards sensors. Some older Domoticz release notes are showing that "Libre Hardware Monitor" is supported. However, if I try to use it ...
- Monday 17 November 2025 17:06
- Forum: MQTT Auto Discovery
- Topic: Shelly support by Domoticz
- Replies: 27
- Views: 4428
Re: Shelly support by Domoticz
The most elegant way to integrate Shelly devices in Domoticz from my perspective is to make use of their integrated scripting function. Just add the respective dummy devices in Domoticz and a script in the Shelly device to call the Domoticz JSON interface. For a Plug S this looks like:
// Send ...
// Send ...
- Tuesday 14 October 2025 12:53
- Forum: Bugs and Problems
- Topic: How to pass SetPoint value in Switch Action
- Replies: 0
- Views: 33
How to pass SetPoint value in Switch Action
Hi,
I wonder if/how I can pass a Setpoint devices value as variable in an action of a Switch device.
Screenshot 2025-10-14 124419.jpg
In that case the URL called on switch "On" should pass the Setpoint value of the corresponding Setpoint device. Currently it's hardcoded as "Temperatur=70". Of ...
I wonder if/how I can pass a Setpoint devices value as variable in an action of a Switch device.
Screenshot 2025-10-14 124419.jpg
In that case the URL called on switch "On" should pass the Setpoint value of the corresponding Setpoint device. Currently it's hardcoded as "Temperatur=70". Of ...
- Saturday 15 June 2024 17:49
- Forum: Installation, Compiling, Permissions, Security and Starting
- Topic: Fail to update from 2022.1 to new versions
- Replies: 2
- Views: 1546
Re: Fail to update from 2022.1 to new versions
Thank you for the hint. I check the DB-File directory that contained two additional files (-shm, -whl).
- Saturday 15 June 2024 17:14
- Forum: Python
- Topic: Python Plugin: Domoticz-TinyTUYA-Plugin (Cloud)
- Replies: 343
- Views: 102988
Re: Python Plugin: Domoticz-TinyTUYA-Plugin (Cloud)
Hi,
I'm trying to get two new waterleak sensors to work with Domoticz. I updated to Domoticz 2024.4 but still use Python 3.6 as I struggled to update to 3.8. However I think the errors I get in the log are not associated with the python version:
2024-06-15 17:01:45.437 Error: (JSONtoPython ...
I'm trying to get two new waterleak sensors to work with Domoticz. I updated to Domoticz 2024.4 but still use Python 3.6 as I struggled to update to 3.8. However I think the errors I get in the log are not associated with the python version:
2024-06-15 17:01:45.437 Error: (JSONtoPython ...
- Wednesday 12 June 2024 22:14
- Forum: Installation, Compiling, Permissions, Security and Starting
- Topic: Fail to update from 2022.1 to new versions
- Replies: 2
- Views: 1546
Fail to update from 2022.1 to new versions
Hi,
I didn't do an Domoticz Update on my windows 10 system for a while as everything worked fine so far. Now I'm running into compatibility issues with some plugins and new devices. That's why I wanted to update. After installing 2024.4 over my existing 2022.1 Installation all devices and scripts ...
I didn't do an Domoticz Update on my windows 10 system for a while as everything worked fine so far. Now I'm running into compatibility issues with some plugins and new devices. That's why I wanted to update. After installing 2024.4 over my existing 2022.1 Installation all devices and scripts ...
- Monday 10 June 2024 15:04
- Forum: Python
- Topic: How to udate a device within a Python script in Domoticz
- Replies: 0
- Views: 1405
How to udate a device within a Python script in Domoticz
Hi,
I used to update thermometer by a python script (see below). Unfortunately the script stooped working after I tried to update Domoticz from Version 2022.1 to 2022.2 or later. It seems that "updateDevice(DE.Devices[device_temp].id, 0, Mydata['Temperatur Istwert'])" is no longer available in ...
I used to update thermometer by a python script (see below). Unfortunately the script stooped working after I tried to update Domoticz from Version 2022.1 to 2022.2 or later. It seems that "updateDevice(DE.Devices[device_temp].id, 0, Mydata['Temperatur Istwert'])" is no longer available in ...
- Wednesday 27 February 2019 22:40
- Forum: Heating/cooling
- Topic: Python plugin for MOES BHT-002 Termostat
- Replies: 11
- Views: 7656
Re: Python plugin for MOES BHT-002 Termostat
I had no time to write a Plugin but a tiny Python script to control these Thermostats. If anybody is interested I could post it here.
Regards, Itschi
Regards, Itschi
- Wednesday 13 February 2019 17:52
- Forum: Python
- Topic: Running python scripts with external libraries
- Replies: 5
- Views: 2314
Re: Running python scripts with external libraries
I had the same problem and finally got it working with the following code:
import sys
import importlib.util
MODULE_PATH = 'C:\Program Files (x86)\Python36-32\Lib\site-packages\modulename\__init__.py'
MODULE_NAME = 'modulename'
spec = importlib.util.spec_from_file_location(MODULE_NAME, MODULE_PATH ...
import sys
import importlib.util
MODULE_PATH = 'C:\Program Files (x86)\Python36-32\Lib\site-packages\modulename\__init__.py'
MODULE_NAME = 'modulename'
spec = importlib.util.spec_from_file_location(MODULE_NAME, MODULE_PATH ...
- Friday 08 February 2019 22:20
- Forum: Python
- Topic: How to update device in event with Python?
- Replies: 0
- Views: 371
How to update device in event with Python?
Maybe a silly question, but I can't find an example on how to update a temperature device in Phyton within an event. Can someone please give an example?
Regards, Itschi
Regards, Itschi
- Sunday 03 February 2019 18:44
- Forum: Heating/cooling
- Topic: Python plugin for MOES BHT-002 Termostat
- Replies: 11
- Views: 7656
Re: Python plugin for MOES BHT-002 Termostat
Thanks for your quick answer. I finally got it working (had a specifict network issue with my PC). In general it works but I couldn't get SET working. I always end up with a timeout for response. However, the GET commands are working, as lon as the APP is not running. Did you do anythng specific to ...
- Saturday 02 February 2019 17:21
- Forum: Heating/cooling
- Topic: Python plugin for MOES BHT-002 Termostat
- Replies: 11
- Views: 7656
Re: Python plugin for MOES BHT-002 Termostat
Hi,
just bougth one of theses thermostats as well. One question: Where did you get the key for use of tuya cli from?
Regards, Yavuz
just bougth one of theses thermostats as well. One question: Where did you get the key for use of tuya cli from?
Regards, Yavuz
- Wednesday 17 May 2017 21:13
- Forum: Show your projects
- Topic: Integration of Medisana BS440 Connected scale
- Replies: 55
- Views: 19435
Re: Integration of Medisana BS440 Connected scale
Did you resolve the problem? I get the same exception "pygatt.exceptions.NotConnectedError" after reading the scale data.
- Sunday 15 January 2017 14:49
- Forum: Speech & Voice Systems
- Topic: Amazon Echo to Domoticz Bridge: switches, sensors & more
- Replies: 715
- Views: 143073
Re: Amazon Echo to Domoticz Bridge: switches, sensors & more
Hi Lokonli,
Yes, I change the endpoint as well and also disabled / enabled the skill. The only thing that is a bit wired is that in Virgina the Lambda logging doesn't work. It states "There was an error loading Log Streams.". That's why I don't see whether or not the Lambda function is really ...
Yes, I change the endpoint as well and also disabled / enabled the skill. The only thing that is a bit wired is that in Virgina the Lambda logging doesn't work. It states "There was an error loading Log Streams.". That's why I don't see whether or not the Lambda function is really ...
- Sunday 15 January 2017 10:31
- Forum: Speech & Voice Systems
- Topic: Amazon Echo to Domoticz Bridge: switches, sensors & more
- Replies: 715
- Views: 143073
Re: Amazon Echo to Domoticz Bridge: switches, sensors & more
Yes, tried EU Ireland and N. Verginia. As I said, the Lambda test works and discovers my devices and I can see that searching the devices with the app results in a log entry for the Lambda function (also in EU). The alexa skill definitly triggers the Lambda function. The device dicovery takes 15s ...
- Saturday 14 January 2017 19:02
- Forum: Speech & Voice Systems
- Topic: Amazon Echo to Domoticz Bridge: switches, sensors & more
- Replies: 715
- Views: 143073
Re: Amazon Echo to Domoticz Bridge: switches, sensors & more
Hi
I followed Madgeni's instructions and got the Lambda funtion to work. The discovery results in
{
"header": {
"namespace": "Alexa.ConnectedHome.Discovery",
"name": "DiscoverAppliancesResponse",
"payloadVersion": "2"
},
"payload": {
"discoveredAppliances": [
{
"applianceId": "509 ...
I followed Madgeni's instructions and got the Lambda funtion to work. The discovery results in
{
"header": {
"namespace": "Alexa.ConnectedHome.Discovery",
"name": "DiscoverAppliancesResponse",
"payloadVersion": "2"
},
"payload": {
"discoveredAppliances": [
{
"applianceId": "509 ...
- Monday 09 January 2017 11:07
- Forum: Others
- Topic: Xiaomi Mi Flora [Temp/Light/Moisture] BLE Sensor
- Replies: 325
- Views: 108704
Re: Xiaomi Mi Flora [Temp/Light/Moisture] BLE Sensor
Yes, you need to enter the full path.
- Friday 18 November 2016 19:13
- Forum: Others
- Topic: Xiaomi Mi Flora [Temp/Light/Moisture] BLE Sensor
- Replies: 325
- Views: 108704
Re: Xiaomi Mi Flora [Temp/Light/Moisture] BLE Sensor
I got mine today. Transmission of the data over a free air distance of 10m worked fine. iOS App is in English and Chinese. Have to wait for the arrival of a HM-11 BLE module to continue with reading the sensors data by an own application...
- Sunday 17 May 2015 9:52
- Forum: Suggestions
- Topic: [523] SUPPORT FOR SOLARMAX PV-INVERTER
- Replies: 18
- Views: 7176
Re: [523] SUPPORT FOR SOLARMAX PV-INVERTER
Could you upload your script file ?
Shure. It's not a script but part of a Delphi program I wrote my own small home automation with:
procedure TMain.SolarSocketWrite(Sender: TObject;
Socket: TCustomWinSocket);
begin
Socket.SendText('{FB;01;1E|64:KDY;KT0;PAC|0672}');
end;
procedure TMain ...
Shure. It's not a script but part of a Delphi program I wrote my own small home automation with:
procedure TMain.SolarSocketWrite(Sender: TObject;
Socket: TCustomWinSocket);
begin
Socket.SendText('{FB;01;1E|64:KDY;KT0;PAC|0672}');
end;
procedure TMain ...