Search found 559 matches

by HvdW
Saturday 05 July 2025 19:00
Forum: Python
Topic: Python Plugin: Volvo EV
Replies: 197
Views: 34775

Re: Python Plugin: Volvo EV

Edit: meanwhile I managed to get some info into 1 Text device with the help of ChatGPT. At least I can fiddle with it to get the info in it I want. Well done! If you have a text device with more that 4 lines you can use this function for alignment. -- Helper functions local function spaces(count ...
by HvdW
Friday 04 July 2025 20:21
Forum: Python
Topic: Python Plugin: Volvo EV
Replies: 197
Views: 34775

Re: Python Plugin: Volvo EV

Like I mentioned before. What do you want to be displayed..
Give me the names of the devices and I'll show you.
by HvdW
Friday 04 July 2025 16:42
Forum: Python
Topic: Python Plugin: Volvo EV
Replies: 197
Views: 34775

Re: Python Plugin: Volvo EV

What would you like to achieve?
Information from what sensors to be displayed.
by HvdW
Saturday 14 June 2025 14:44
Forum: Bugs and Problems
Topic: Custom icons do not shown anymore / custom icons upload fails
Replies: 30
Views: 2697

Re: Custom icons do not shown anymore / custom icons upload fails

Which reminds me to say thank you to the Domoticz developers for the new icons in the latest release.
by HvdW
Friday 13 June 2025 19:34
Forum: Suggestions
Topic: more options for sensors to appear in the dashboard
Replies: 16
Views: 1944

Re: more options for sensors to appear in the dashboard

What about adapting the custom dashboard?
by HvdW
Thursday 12 June 2025 1:25
Forum: Utility
Topic: SolarEdge production throttling from Domoticz
Replies: 108
Views: 3751

Re: SolarEdge production throttling from Domoticz

Very, very interesting @jvdz I don't have SolarEdge so I thought this is not for me. I have asked AI if there's something for my 2013 SMA 5000TL-21 and guess what? The SMA Power Control Module is an interesting option if you want to regulate the energy fed back into the grid. This module allows the ...
by HvdW
Monday 09 June 2025 21:13
Forum: Suggestions
Topic: Meteoserver sun radiation
Replies: 5
Views: 274

Re: Meteoserver sun radiation

The thing i don't like from the 'mainstream' weather-models is the fact that the nearest weather-station is 28 kilometer away from my home resulting in incorrect values and predictions.. In my case it's 15 kilometers. I adapted the script to catch the real values in the log. if debugMode then local ...
by HvdW
Monday 09 June 2025 17:41
Forum: Suggestions
Topic: Meteoserver sun radiation
Replies: 5
Views: 274

Re: Meteoserver sun radiation

I updated the Sunpower script. return { on = { timer = { 'every 3 hours' }, httpResponses = { 'solar_data' } }, execute = function(domoticz, trigger) -- Configuratie local powerThreshold = 50 -- Drempelwaarde voor weergave (W/m²) local daysToShow = 3 -- Aantal dagen om weer te geven (inclusief ...
by HvdW
Sunday 08 June 2025 14:02
Forum: Suggestions
Topic: Meteoserver sun radiation
Replies: 5
Views: 274

Re: Meteoserver sun radiation

If you are in the Netherlands you can use the Buienradar integration. https://wiki.domoticz.com/Buienradar It has a sun power sensor. Thanks Walter, didn't know that. However it doesn't include a sunpower prediction . The prediction is what I am looking for to be able to switch on washing machine ...
by HvdW
Sunday 08 June 2025 12:55
Forum: Suggestions
Topic: Meteoserver sun radiation
Replies: 5
Views: 274

Meteoserver sun radiation

It is a challenge to optimize the percentage direct use from the PV panels. One way is to know when the sun shines and how much the global radiation intensity is in Watt per m2 At Meteoserver the data can be obtained like https://data.meteoserver.nl/api/solar.php?locatie=Utrecht&key=abcd1234 using ...
by HvdW
Friday 06 June 2025 1:03
Forum: Bugs and Problems
Topic: Domoticz daily crash
Replies: 7
Views: 358

Re: Domoticz daily crash

Here we go 2025-06-06 00:05:06.170 Status: EventSystem: Script event triggered: /home/pi/domoticz/dzVents/runtim> 2025-06-06 00:05:09.654 Error: Stack frame for all threads: 2025-06-06 00:05:09.655 Error: > gdb: warning: Couldn't determine a path for the index cache directory. 2025-06-06 00:05:09 ...
by HvdW
Thursday 05 June 2025 22:38
Forum: Bugs and Problems
Topic: Domoticz daily crash
Replies: 7
Views: 358

Re: Domoticz daily crash

- cronjobs every 5 minutes nmap -> file, file is being read by domoticz for presence detection - autobackup activated - does it harm? If so how come? - 27 active textsensors are updated in most cases every minute - Domoticz 2025-1 on RPI 3+ on bookworm Is there a way to check which scripts are ...
by HvdW
Thursday 05 June 2025 11:43
Forum: Bugs and Problems
Topic: Domoticz daily crash
Replies: 7
Views: 358

Domoticz daily crash

Hi, My Domoticz suffers a daily crash between 23:00 and 24:00 For the moment I just want to know the crash time. I followed the wiki - edit /etc/init.d/domoticz.sh - Uncommented DAEMON_ARGS="$DAEMON_ARGS -log /var/log/domoticz.log" - sudo systemctl daemon-reload - sudo service domoticz stop - sudo ...
by HvdW
Wednesday 04 June 2025 10:38
Forum: LUA
Topic: scripts percentage solar panels
Replies: 11
Views: 551

Re: scripts percentage solar panels

In my opinion Domoticz excels in the way one can use python and dzVents to manipulate anything you want. The thing I don mot like is that each item has it's own sensor which clutters the screen. That is why I'm using textSensors where information can be displayed. Here is a bit of script for your ...
by HvdW
Saturday 31 May 2025 22:48
Forum: General Discussion
Topic: test new day
Replies: 2
Views: 515

Re: test new day

What about this?

Code: Select all

if os.date("%H:%M") == '23:59' then
or

Code: Select all

on = {
        timer = {
            'at midnight',
                   },
       }
by HvdW
Monday 26 May 2025 14:06
Forum: dzVents
Topic: Need help with script value
Replies: 7
Views: 576

Re: Need help with script value

Try dz.devices(339).dump() or maybe better, try this script --[[ === DOMOTICZ DEBUG HELPER SCRIPT === Geschreven voor dzVents 3.0+ Laatste update: 2024-06-15 FUNCTIES: 1. Toont systeeminformatie (Domoticz/dzVents versie) 2. Inspecteert devices (basisinfo + volledige structuur) 3. Toont ...
by HvdW
Friday 23 May 2025 19:21
Forum: LUA
Topic: How to create a delay in a contact's On/Off sequence
Replies: 7
Views: 769

Re: How to create a delay in a contact's On/Off sequence

From the wiki. (Check that first) -- switch on for 2 minutes after 10 seconds device.switchOn().afterSec(10).forMin(2) -- switch on at a specic time / day device.switchOn().at('09:00') -- earliest moment it will be 09:00 hr. device.switchOn().at('08:53:30 on fri') -- earliest moment it will be ...
by HvdW
Friday 23 May 2025 18:11
Forum: Python
Topic: Python Plugin: Volvo EV
Replies: 197
Views: 34775

Re: Python Plugin: Volvo EV

Problem solved.
Changed device name from Volvo-batteryChargeLevel to Volvo-batteryLevel.
Naming convention in dzVents?
by HvdW
Friday 23 May 2025 14:49
Forum: Python
Topic: Python Plugin: Volvo EV
Replies: 197
Views: 34775

Re: Python Plugin: Volvo EV

I can agree, however the fact that it is not updated may be a plugin issue.
Does it update in your Domoticz?
by HvdW
Friday 23 May 2025 13:09
Forum: Python
Topic: Python Plugin: Volvo EV
Replies: 197
Views: 34775

Re: Python Plugin: Volvo EV

Hi, I have a problem fetching Volvo-batteryChargeLevel 2025-05-23 12:03:00.874 Error: dzVents: ----- Car Charging Facts -----: There is no device with that name or id: Volvo-batteryChargeLevel 2025-05-23 12:03:00.874 Error: dzVents: ----- Car Charging Facts -----: An error occurred when calling ...