Search found 272 matches

by janpep
Wednesday 28 January 2026 21:02
Forum: Other questions and discussions
Topic: Setpoint problem
Replies: 11
Views: 2547

Re: Setpoint problem


Has anyone solved this problem?

Here still the same. I still use my CHECKpoint comparison. Improved the workaround a little bit. When this notification email arrives on my smartphone, Macrodroid recognizes it and reads the subject line aloud. This lets me know immediately and allows me to set ...
by janpep
Wednesday 07 January 2026 23:56
Forum: Other questions and discussions
Topic: remove value
Replies: 10
Views: 1236

Re: remove value


For me removing an incorrect value only works in the week, month or year graphs. Not in the day graph. But it could also depend on the type of device, not sure.

Ah, maybe that is the solution. (But in that case it is strange that a popup appears to confirm the removal!!)
I managed to remove it ...
by janpep
Wednesday 07 January 2026 20:05
Forum: Python
Topic: Python Plugin: MqttMapper
Replies: 505
Views: 72169

Re: Python Plugin: MqttMapper

I found this plugin. Using cam2mqtt in docker and this plugin in Domoticz, I managed to pass "AI person detection" from my camera to Domoticz.
Thanks so much!
by janpep
Wednesday 07 January 2026 19:49
Forum: Other questions and discussions
Topic: remove value
Replies: 10
Views: 1236

Re: remove value

It is an Electric (Instant+counter). First value very high.
HighValue.png

Both refresh page and holding shift did not do the tric.
I guess I have to go into the database and see how and where it is stored.
Actually it would be a nice feature, when there is an option to delete all data of a ...
by janpep
Wednesday 07 January 2026 13:36
Forum: Other questions and discussions
Topic: remove value
Replies: 10
Views: 1236

Re: remove value

This is a very old thread, but I'm running into the same problem. I confirm the deletion, but the value remains visible. What is the best solution to get this removed?
by janpep
Tuesday 16 December 2025 23:02
Forum: Show your projects
Topic: Lux-controlled ECO-DIM.05 - Duo Zigbee
Replies: 0
Views: 79

Lux-controlled ECO-DIM.05 - Duo Zigbee

A fun little project to combine my new lux meter and new duo dimmer in a temporary 'self-triggering' DzVents script .

Here is a brief overview of my setup:
1. A first script sets a user variable to indicate whether someone is home. It is triggered by a Wi-Fi or geofence change.
2. A second script ...
by janpep
Tuesday 16 December 2025 20:09
Forum: Show your projects
Topic: Earthquake info from KNMI
Replies: 63
Views: 7754

Re: Earthquake info from KNMI

otherwise I get an error later on if field[11] is empty
I now had the time for a closer look.
I want to add and point out, that you are referring to the error you get in the script of HvdW that he posted some time ago. The script with more robust error handling.
Here is a new Earthquake script ...
by janpep
Friday 12 December 2025 22:13
Forum: Show your projects
Topic: Earthquake info from KNMI
Replies: 63
Views: 7754

Re: Earthquake info from KNMI


You might add
if magnitude == "" then magnitude = "0" end


My first thought is that if something is missing you can't just give it a value (0) unless it's very clear that it's a dummy number.
My second thought is that the last update for "Oud Annerveen" gave a magnitude of '-' , which is ...
by janpep
Thursday 11 December 2025 15:28
Forum: Zigbee
Topic: Ecodim 05 Z4D missing widget
Replies: 10
Views: 1536

Re: Ecodim 05 Z4D missing widget

I have the one without ZigBee. A very good duo dimmer for LED lamps and other lamps. I'm considering now buying this one with zigbee.
Does anyone know if it works with Zigbee2mqtt and Domoticz?
I see the device is supported in zigbee2mqtt: https://www.zigbee2mqtt.io/devices/Eco-Dim.05.html , but I ...
by janpep
Saturday 15 November 2025 10:24
Forum: Show your projects
Topic: Earthquake info from KNMI
Replies: 63
Views: 7754

Re: Earthquake info from KNMI


and also the type is different

That is true, but the type is not part of the string that I show in the alert device, and no part of the string to compare if something has changed.
It's a bit much for me to stipulate that it has to be at least ?? meters from the previous measurement. The same ...
by janpep
Friday 14 November 2025 10:36
Forum: Show your projects
Topic: Earthquake info from KNMI
Replies: 63
Views: 7754

Re: Earthquake info from KNMI

And just as I thought. Even a small difference is still a difference.
Aardbeving-JanPep-6.png
Aardbeving-JanPep-6.png (22.53 KiB) Viewed 191 times
by janpep
Friday 14 November 2025 10:05
Forum: Show your projects
Topic: Earthquake info from KNMI
Replies: 63
Views: 7754

Re: Earthquake info from KNMI

My script runs every 5 minutes at 2,7,12,17 etc. of the hour.
It only updates the device when there is a difference in the result string. So although small, 2.0 and 2.1 is different.
I did not look at the first two that look to be the same at first glance. But of course an automatic compare in the ...
by janpep
Friday 14 November 2025 9:33
Forum: Show your projects
Topic: Earthquake info from KNMI
Replies: 63
Views: 7754

Re: Earthquake info from KNMI


The script runs once a day 'at sunrise'

Makes sense if you collect it once a day and request the last one. You ask once, you get once :-)
I have more of the same place.
Note that there are a few differences in magnitude. Changes in what happened at the same time are reflected as differences.
I ...
by janpep
Sunday 12 October 2025 21:42
Forum: Show your projects
Topic: Earthquake info from KNMI
Replies: 63
Views: 7754

Re: Earthquake info from KNMI

Kedi wrote: Wednesday 08 October 2025 19:03 It is nessessary when you want to send your self a notification (by Telegram) or otherwise sometimes you will get 'spammed' by messages.
I send myself an E-mail. No problems.
by janpep
Wednesday 08 October 2025 16:16
Forum: Show your projects
Topic: Earthquake info from KNMI
Replies: 63
Views: 7754

Re: Earthquake info from KNMI

Yes, you can get the information there quite easily.
As described in the first post of this topic, I first tried with another source and later came up with the KNMI that seems to work better for the Netherlands.
by janpep
Wednesday 08 October 2025 13:07
Forum: Show your projects
Topic: Earthquake info from KNMI
Replies: 63
Views: 7754

Re: Earthquake info from KNMI


I use this to trigger the update of the widget, with the current solution I sometimes get for some reason false updates.
if string.sub(alertText, 1, 16) ~= string.sub(lastalertText, 1, 16) then


I just compare the entire string.
if alertText ~= lastalertText then
I have to be honest, I didn ...
by janpep
Monday 06 October 2025 9:25
Forum: Show your projects
Topic: Earthquake info from KNMI
Replies: 63
Views: 7754

Re: Earthquake info from KNMI


Here is a new Earthquake script with more robust error handling and a new URL.


That is a very short mention.
Can you say something more about it? Give some explanation? Tell what has been adjusted and where? Put that in the comment with your name on it.? What was the reason for a new URL?
I had ...
by janpep
Friday 12 September 2025 9:03
Forum: Forum feedback
Topic: This forum
Replies: 32
Views: 23184

Re: This forum

I can still reproduce it every time. With Google chrome and Brave browser.
E.g. In Board index goto page 3. I see other topics, but page 1 number is still highlighted and never highlites another number.
by janpep
Monday 09 June 2025 10:13
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: 2025.1 Docker Tips/Tricks or issues
Replies: 14
Views: 2871

Re: 2025.1 Docker Tips/Tricks or issues

For what it's worth. I just installed a Raspberry pi 3B+ for my son with Bookworm LITE + Docker with my own approach.
I'm considering publishing it on 'Show My Projects' if there is interest . There are many roads that lead to Rome. Choosing one route or another also depends on your personal ...
by janpep
Sunday 01 June 2025 12:23
Forum: News & Updates
Topic: Domoticz upcoming beta/release and OpenSSL 3.0
Replies: 66
Views: 34698

Re: Domoticz upcoming beta/release and OpenSSL 3.0

acaonweb wrote: Sunday 01 June 2025 12:01

Code: Select all

/home/pi/domoticz/domoticz: error while loading shared libraries: libssl.so.1.1
now????
Did you install the beta?
I did a fresh install here also on new installed bookworm (on Raspberry pi 3B+). No problem.
Also installed the beta on my Ubuntu 24.04 (Virtual machine under Synology). No problem.