Search found 5169 matches

by waltervl
Tuesday 18 February 2025 20:03
Forum: Bugs and Problems
Topic: Enever null values for next day results in an incomplete chart
Replies: 3
Views: 103

Re: Enever null values for next day results in an incomplete chart

Enever also has a Forum so perhaps post the bug report for Null values there too https://enever.nl/forums/
by waltervl
Tuesday 18 February 2025 19:04
Forum: Other questions and discussions
Topic: Error in the logs when sending SMS
Replies: 15
Views: 490

Re: Error in the logs when sending SMS

OK @waltervl, but if it was the case, delivery of the SMS should fail. If an error in the format, the same URL would give an error in my browser. As well, if the certificate of my operator was not good, an error would be reported in my browser. So, I don't understand why this error in the log. Why ...
by waltervl
Tuesday 18 February 2025 19:00
Forum: Bugs and Problems
Topic: Enever null values for next day results in an incomplete chart
Replies: 3
Views: 103

Re: Enever null values for next day results in an incomplete chart

See the advise I also gave in another topic on this subject: contact Enever why they do this.... Perhaps they are not aware.
viewtopic.php?t=43181
by waltervl
Tuesday 18 February 2025 18:30
Forum: Other questions and discussions
Topic: Error in the logs when sending SMS
Replies: 15
Views: 490

Re: Error in the logs when sending SMS

The curl -i looks like it gives back http 400 which is an error: Bad Request
https://developer.mozilla.org/en-US/doc ... Status/400
by waltervl
Tuesday 18 February 2025 18:27
Forum: dzVents
Topic: Why is dzvents device lookup using name instead of idx
Replies: 14
Views: 489

Re: Why is dzvents device lookup using name instead of idx

If you look at other applications with objects in a database (I am an application manager with some database applications in management) they do work with Unique ID's (UID), the name is then irrelevant. Problem in Domoticz database is also that it is not a Unique ID. There are multiple objects with ...
by waltervl
Tuesday 18 February 2025 16:32
Forum: Other questions and discussions
Topic: Error in the logs when sending SMS
Replies: 15
Views: 490

Re: Error in the logs when sending SMS

Thanks @FlyingDomotic This is probably a subject to be reported in the bug section I guess. With only this information in this topic it will be hard to debug I guess. Do you see this error in all cases you use it in Domoticz (as action script, in blockly, in dzvents)? I agree that it seems more a ...
by waltervl
Tuesday 18 February 2025 16:21
Forum: Node-RED
Topic: script not proper old vs new node-red version
Replies: 11
Views: 523

Re: script not proper old vs new node-red version

Your issue is that hum_stat and bar_for are not declared before use Try adding let or var at the beginning of the function, e.g.: let hum_stat = 0; before switch.Same for bar_for.New Node-RED versions require explicit variable declarations These errors are common after updates Other variables might ...
by waltervl
Tuesday 18 February 2025 16:16
Forum: dzVents
Topic: Why is dzvents device lookup using name instead of idx
Replies: 14
Views: 489

Re: Why is dzvents device lookup using name instead of idx

If you look at other applications with objects in a database (I am an application manager with some database applications in management) they do work with Unique ID's (UID), the name is then irrelevant. Problem in Domoticz database is also that it is not a Unique ID. There are multiple objects with ...
by waltervl
Tuesday 18 February 2025 11:14
Forum: MQTT Auto Discovery
Topic: Smart scene switch not find with zigbee2mqtt version 2
Replies: 4
Views: 1589

Re: Smart scene switch not find with zigbee2mqtt version 2

No, but current beta is pretty stable.... Just do not update every beta so switch off checking for new beta updates.
by waltervl
Monday 17 February 2025 23:02
Forum: 433 & 868 transceiver
Topic: FT007TH Temp and moister sensor history when getting a new ID
Replies: 1
Views: 97

Re: FT007TH Temp and moister sensor history when getting a new ID

This is unfortunately the standard behavior of RF sensors (zigbee and zwave do not do this).

But you can merge the old data into the new device with the Domoticz replace function: https://wiki.domoticz.com/Managing_Devi ... ace_device
by waltervl
Monday 17 February 2025 17:09
Forum: Bugs and Problems
Topic: Bug in Dz using Samsung tablet Galaxy Tab A9+
Replies: 1
Views: 91

Re: Bug in Dz using Samsung tablet Galaxy Tab A9+

Did you have this behavior on the web gui or on a Domoticz Android app?

As it looks more like a user role setting that was applied. Do you use different user accounts on you Domoticz environment? Menu Setup - Users.
by waltervl
Monday 17 February 2025 11:33
Forum: MQTT Auto Discovery
Topic: Smart scene switch not find with zigbee2mqtt version 2
Replies: 4
Views: 1589

Re: Smart scene switch not find with zigbee2mqtt version 2

Perhaps try with Domoticz beta as this could be related to the switch to zigbee2mqtt 2.x See also GitHub issue https://github.com/domoticz/domoticz/issues/6243 Edit: see also this change in code change in Domoticz MQTT AD from last december https://github.com/domoticz/domoticz/commit ...
by waltervl
Saturday 15 February 2025 17:17
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Build from source on Arch Linux?
Replies: 1
Views: 437

Re: Build from source on Arch Linux?

Someone started something for linux arch https://wiki.domoticz.com/Preparing_a_Raspberry_PI_(Arch_Linux) The build instructions should be in page install.txt but not linked correctly https://wiki.domoticz.com/Install.txt You are free to change it as it probably is outdated. A wiki account can be ...
by waltervl
Friday 14 February 2025 19:26
Forum: dzVents
Topic: Identify a switching sequence
Replies: 5
Views: 311

Re: Identify a switching sequence

I think you have to ask chatgpt..... :)
My solution was only to check if 3 motion sensors were triggered within 5 minutes. Not checking the order. But that could probably done with some simple if-then statements based on last updates (but then with swcondsago instead of minutes ago.
by waltervl
Friday 14 February 2025 19:21
Forum: dzVents
Topic: Why is dzvents device lookup using name instead of idx
Replies: 14
Views: 489

Re: Why is dzvents device lookup using name instead of idx

I believe it is due to the original Lua integration (dzvents is an addon on the Lua integration). Lua is looking at names, not IDX.
by waltervl
Friday 14 February 2025 14:47
Forum: dzVents
Topic: Identify a switching sequence
Replies: 5
Views: 311

Re: Identify a switching sequence

You can ask for the last updated value of those 3 sensors if the last update value is equal to switching. It depends on the integration if last update is the same as last switched. if (domoticz.devices('My PIR 1').lastUpdate.minutesAgo < 5 and domoticz.devices('My PIR 2').lastUpdate.minutesAgo < 5 ...
by waltervl
Friday 14 February 2025 14:41
Forum: Bugs and Problems
Topic: String variable editing does not allow the "+"
Replies: 9
Views: 658

Re: String variable editing does not allow the "+"

You are free to make a PR to the repository to fix the issue....
by waltervl
Thursday 13 February 2025 22:59
Forum: General Discussion
Topic: New to Domoticz, searching for hardware to replace Qbus
Replies: 1
Views: 819

Re: New to Domoticz, searching for hardware to replace Qbus

Not knowing about QBus but with zigbee this will cost only a fraction of 1200 euro...

If you have wires then perhaps Creasol Dombus is an option https://wiki.domoticz.com/Creasol_Dombus
by waltervl
Thursday 13 February 2025 20:22
Forum: Bugs and Problems
Topic: Habridge Error - undefined with status: Server Error - 500
Replies: 1
Views: 170

Re: Habridge Error - undefined with status: Server Error - 500

So this is probably an issue in ha- bridge. The more than a year announced deprecated Domoticz API calls are now really removed and not working in Domoticz. Please inform the ha-bridge author to change the code and use the correct API calls. See also the Domoticz wiki to see what has changed. https ...
by waltervl
Thursday 13 February 2025 20:17
Forum: Zigbee
Topic: error with Domoticz "Allow new zigbee devices to join "
Replies: 13
Views: 3407

Re: error with Domoticz "Allow new zigbee devices to join "

Thanks for explaining in Dutch you have moved from zigbee2mqtt plugin to MQTT AD hardware gateway :)