Search found 559 matches
- Saturday 14 June 2025 14:44
- Forum: Bugs and Problems
- Topic: Custom icons do not shown anymore / custom icons upload fails
- Replies: 30
- Views: 2544
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.
- Friday 13 June 2025 19:34
- Forum: Suggestions
- Topic: more options for sensors to appear in the dashboard
- Replies: 16
- Views: 1884
Re: more options for sensors to appear in the dashboard
What about adapting the custom dashboard?
- Thursday 12 June 2025 1:25
- Forum: Utility
- Topic: SolarEdge production throttling from Domoticz
- Replies: 105
- Views: 3128
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 ...
- Monday 09 June 2025 21:13
- Forum: Suggestions
- Topic: Meteoserver sun radiation
- Replies: 5
- Views: 246
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 ...
- Monday 09 June 2025 17:41
- Forum: Suggestions
- Topic: Meteoserver sun radiation
- Replies: 5
- Views: 246
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 ...
- Sunday 08 June 2025 14:02
- Forum: Suggestions
- Topic: Meteoserver sun radiation
- Replies: 5
- Views: 246
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 ...
- Sunday 08 June 2025 12:55
- Forum: Suggestions
- Topic: Meteoserver sun radiation
- Replies: 5
- Views: 246
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 ...
- Friday 06 June 2025 1:03
- Forum: Bugs and Problems
- Topic: Domoticz daily crash
- Replies: 7
- Views: 317
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 ...
- Thursday 05 June 2025 22:38
- Forum: Bugs and Problems
- Topic: Domoticz daily crash
- Replies: 7
- Views: 317
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 ...
- Thursday 05 June 2025 11:43
- Forum: Bugs and Problems
- Topic: Domoticz daily crash
- Replies: 7
- Views: 317
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 ...
- Wednesday 04 June 2025 10:38
- Forum: LUA
- Topic: scripts percentage solar panels
- Replies: 11
- Views: 454
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 ...
- Saturday 31 May 2025 22:48
- Forum: General Discussion
- Topic: test new day
- Replies: 2
- Views: 481
Re: test new day
What about this?
or
Code: Select all
if os.date("%H:%M") == '23:59' then
Code: Select all
on = {
timer = {
'at midnight',
},
}
- Monday 26 May 2025 14:06
- Forum: dzVents
- Topic: Need help with script value
- Replies: 7
- Views: 465
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 ...
- Friday 23 May 2025 19:21
- Forum: LUA
- Topic: How to create a delay in a contact's On/Off sequence
- Replies: 7
- Views: 581
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 ...
- Friday 23 May 2025 18:11
- Forum: Python
- Topic: Python Plugin: Volvo EV
- Replies: 171
- Views: 32833
Re: Python Plugin: Volvo EV
Problem solved.
Changed device name from Volvo-batteryChargeLevel to Volvo-batteryLevel.
Naming convention in dzVents?
Changed device name from Volvo-batteryChargeLevel to Volvo-batteryLevel.
Naming convention in dzVents?
- Friday 23 May 2025 14:49
- Forum: Python
- Topic: Python Plugin: Volvo EV
- Replies: 171
- Views: 32833
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?
Does it update in your Domoticz?
- Friday 23 May 2025 13:09
- Forum: Python
- Topic: Python Plugin: Volvo EV
- Replies: 171
- Views: 32833
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 ...
- Friday 23 May 2025 13:07
- Forum: Python
- Topic: Python Plugin: Volvo EV
- Replies: 171
- Views: 32833
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 ...
- Wednesday 21 May 2025 11:15
- Forum: dzVents
- Topic: Energy Costs Calculator
- Replies: 10
- Views: 1231
Re: Energy Costs Calculator
Use the data, make your calculations with dzVents and you'll end op like Frank.
There are rules, these rules are applied and this is being computed.
There's nothing that stands in your way to do so as well.
There are rules, these rules are applied and this is being computed.
There's nothing that stands in your way to do so as well.
- Monday 19 May 2025 13:30
- Forum: Examples & Solutions
- Topic: Home Battery Simulation and dynamic vs fixed energy contract comparison
- Replies: 5
- Views: 678
Re: Home Battery Simulation and dynamic vs fixed energy contract comparison
Screenshot_20250517_113832_Firefox.jpg I am on fixed tariff and comparing with dynamic. These are the results. - normal behavior - not accounting terugleverkosten from fixed - no battery - EV When switching from fixed to dynamic I presume I'll change my behaviour. Conclusion: changing to dynamic ...