Search found 5424 matches

by waltervl
Monday 16 June 2025 12:06
Forum: Others
Topic: Matter integration
Replies: 20
Views: 7856

Re: Matter integration

A TadoX can not be controlled with the existing Tado integration?
by waltervl
Monday 16 June 2025 12:01
Forum: dzVents
Topic: external script won't run from dzventsz
Replies: 7
Views: 438

Re: external script won't run from dzventsz

Also make sure you use full paths in the scripts, also in the sub-scripts. Like for example
/bin/bash /home/pi/octopi_shutdown.sh
by waltervl
Sunday 15 June 2025 23:00
Forum: Others
Topic: Matter integration
Replies: 20
Views: 7856

Re: Matter integration

You are free to add it.... :D

But serious, what would it add? What devices can I control that I cannot control now with Domoticz and its gateways and python plugins?
by waltervl
Sunday 15 June 2025 22:50
Forum: Zigbee
Topic: Python Zigbee plugin, deCONZ bridge (Using Conbee or Raspbee)
Replies: 687
Views: 118167

Re: Python Zigbee plugin, deCONZ bridge (Using Conbee or Raspbee)

Does your system support python plugins?
Check in the menu Setup - About if python is listed.
Also check the wiki to fix it if not. https://wiki.domoticz.com/Using_Python_plugins
by waltervl
Sunday 15 June 2025 0:36
Forum: Bugs and Problems
Topic: update historic data via api
Replies: 10
Views: 435

Re: update historic data via api

I use the same method as you for a kwh General Instant and counter device:: http://MY-IP:8080/json.htm?type=command&param=udevice&idx=407&nvalue=0&svalue=187721000;-368000;2025-05-31 The value will always be added to the end of the table so it depends of the sorting you use when you see it.
by waltervl
Saturday 14 June 2025 23:36
Forum: Bugs and Problems
Topic: update historic data via api
Replies: 10
Views: 435

Re: update historic data via api

Check the database values. I think update here means adding a row for that date as I explained before. So not overwriting the existing value. At least that is what happens on my counter device that I maintain this way.
by waltervl
Saturday 14 June 2025 10:18
Forum: Python
Topic: get_gas_values(domoticzurl, domoticzdeviceid_gas) stopped working
Replies: 3
Views: 273

Re: get_gas_values(domoticzurl, domoticzdeviceid_gas) stopped working

You are using deprecated API calls in the script.
For example
/json.htm?type=devices
will be
/json.htm?type=command&param=getdevices

See the wiki how to solve it:
https://wiki.domoticz.com/Domoticz_API/ ... and_newer)
by waltervl
Friday 13 June 2025 15:03
Forum: Bugs and Problems
Topic: Can't get Netfit Easy to run
Replies: 9
Views: 319

Re: Can't get Netfit Easy to run

hjzwiers wrote: Friday 13 June 2025 14:53 That was very simple ... but most things are if you know where to look.

Working!
It is more that you have to understand what is happening when you use docker.....
by waltervl
Friday 13 June 2025 14:32
Forum: Bugs and Problems
Topic: Can't get Netfit Easy to run
Replies: 9
Views: 319

Re: Can't get Netfit Easy to run

You are running Domoticz also in a docker? Find the real IP of your Domoticz server by open up a terminal window and execute the command: ifconfig -a Then you have to change in Domoticz menu Setup - Hardware - NefitEasy hardware gateway http://127.0.0.1:3000 into http://<Domoticz Server IP>:3000
by waltervl
Friday 13 June 2025 12:03
Forum: Bugs and Problems
Topic: Can't get Netfit Easy to run
Replies: 9
Views: 319

Re: Can't get Netfit Easy to run

That probably depends how the docker image has been created..... Does it even work properly? In the NefitEasy wiki page https://wiki.domoticz.com/NefitEasy there is a troubleshooting part. curl http://127.0.0.1:3000/api/status It should give a valid JSON result. You can also try curl http://0.0.0.0 ...
by waltervl
Friday 13 June 2025 11:43
Forum: LUA
Topic: CLuaHandler: cannot open watermeter.lua: No such file or directory
Replies: 14
Views: 540

Re: CLuaHandler: cannot open watermeter.lua: No such file or directory

You have to be aware you have to do this everytime you update the Domoticz Docker image!
by waltervl
Friday 13 June 2025 11:40
Forum: Bugs and Problems
Topic: Can't get Netfit Easy to run
Replies: 9
Views: 319

Re: Can't get Netfit Easy to run

Does it run in Docker? What does the log of the docker say?
Did you stop the normal nefit-easy server on your system?

And stop posting credentials like ID and password/PIN codes on the internet!!!!!
by waltervl
Thursday 12 June 2025 22:31
Forum: Bugs and Problems
Topic: date in the data persistent
Replies: 3
Views: 341

Re: date in the data persistent

Then you probably have to write a persistent file yourself.

Why do you want the exact correct time in that file? As it is possibly not designed to have the exact time in that file but the UTC time. The time in that file is only needed to calculate time differences to manage the size of data fields
by waltervl
Thursday 12 June 2025 20:14
Forum: LUA
Topic: CLuaHandler: cannot open watermeter.lua: No such file or directory
Replies: 14
Views: 540

Re: CLuaHandler: cannot open watermeter.lua: No such file or directory

Please do the following:
waltervl wrote: Thursday 12 June 2025 17:22 what happens if you login to the container with

Code: Select all

docker exec -it domoticz
and list the contents of folder /opt/domoticz/userdata/scripts/lua_parsers

Code: Select all

ls -l /opt/domoticz/userdata/scripts/lua_parsers
by waltervl
Thursday 12 June 2025 20:06
Forum: LUA
Topic: CLuaHandler: cannot open watermeter.lua: No such file or directory
Replies: 14
Views: 540

Re: CLuaHandler: cannot open watermeter.lua: No such file or directory

And what if you create it from within the container?
by waltervl
Thursday 12 June 2025 17:22
Forum: LUA
Topic: CLuaHandler: cannot open watermeter.lua: No such file or directory
Replies: 14
Views: 540

Re: CLuaHandler: cannot open watermeter.lua: No such file or directory

you should put it in
/opt/stacks/domoticz/config/scripts/lua_parsers/watermeter.lua

You can check what happens if you login to the container with

Code: Select all

docker exec -it domoticz
and list the contents of folder /opt/domoticz/userdata/scripts/lua_parsers

Code: Select all

ls -l /opt/domoticz/userdata/scripts/lua_parsers
by waltervl
Thursday 12 June 2025 15:03
Forum: LUA
Topic: CLuaHandler: cannot open watermeter.lua: No such file or directory
Replies: 14
Views: 540

Re: CLuaHandler: cannot open watermeter.lua: No such file or directory

If you are running from docker: check your volumes. You probably have to make an extra link to /opt/domoticz/userdata/scripts (but I am no docker expert....)
by waltervl
Wednesday 11 June 2025 19:57
Forum: Python
Topic: Python Plugin: MqttMapper
Replies: 367
Views: 44123

Re: Python Plugin: MqttMapper

hjzwiers wrote: Wednesday 11 June 2025 19:43 I have auto discovery installed, but its not downloading?

I see the results in the separate website, is it a setting somewhere?
Better discuss this in a new topic in the MQTT AD subforum, not here

MQTT AD subforum: viewforum.php?f=82
by waltervl
Wednesday 11 June 2025 19:30
Forum: Python
Topic: Python Plugin: MqttMapper
Replies: 367
Views: 44123

Re: Python Plugin: MqttMapper

@hjzwiers you are not using the standard MQTT auto Discovery for zigbee2mqtt? As for that value should be a lux sensor be created.