Search found 663 matches

by madpatrick
Thursday 19 June 2025 19:00
Forum: dzVents
Topic: Can't automate selector based on temp
Replies: 5
Views: 241

Re: Can't automate selector based on temp

for the reading it looks nicer if the numbers a rounded to 2 or 1 digits ?

Code: Select all

        -- Round temperatures to 2 decimal places
        local oloTempRounded = tonumber(string.format('%.2f', OlohuTemp.temperature))
        local alakTempRounded = tonumber(string.format('%.2f', AlakTemp.temperature))
by madpatrick
Monday 16 June 2025 10:10
Forum: dzVents
Topic: external script won't run from dzventsz
Replies: 7
Views: 282

Re: external script won't run from dzventsz

maybe this helps a bit https://forum.domoticz.com/viewtopic.php?t=35237 Here they are using "os.execute" and not "domoticz.utils.osExecute" and https://wiki.domoticz.com/DzVents:_next_generation_Lua_scripting#Asynchronous_shell_command_execution https://wiki.domoticz.com/DzVents:_next_generation_Lua ...
by madpatrick
Sunday 01 June 2025 8:41
Forum: dzVents
Topic: need help dzevets script solar Toon
Replies: 34
Views: 881

Re: need help dzevets script solar Toon

try this return { on = { timer = { 'every 1 minutes' }, httpResponses = { 'solar' } }, execute = function(domoticz, item) if (item.isTimer) then domoticz.openURL({ url = 'http://192.168.1.56/solar.html', method = 'GET', callback = 'solar' }) elseif (item.isHTTPResponse) then if (item.ok) then ...
by madpatrick
Saturday 31 May 2025 15:29
Forum: dzVents
Topic: need help dzevets script solar Toon
Replies: 34
Views: 881

Re: need help dzevets script solar Toon

if you post your scripts we can have a look for you.

Post it as CODE (text in brackets) and not as a picture
by madpatrick
Saturday 31 May 2025 8:22
Forum: Other questions and discussions
Topic: SolarEdge via LAN interface
Replies: 133
Views: 39965

Re: SolarEdge via LAN interface

Are you sure ?
My Toon is also givin a large number and this is readingout the P1
2025-05-31 08_50_43-Domoticz - Overige.png
2025-05-31 08_50_43-Domoticz - Overige.png (8.73 KiB) Viewed 300 times
And i installed the plugin on an old Version: 2023.2 (build 15462)
Which looks correct
2025-05-31 08_51_06-Domoticz - Overige.png
2025-05-31 08_51_06-Domoticz - Overige.png (9.41 KiB) Viewed 300 times
by madpatrick
Sunday 25 May 2025 20:03
Forum: Other questions and discussions
Topic: SolarEdge via LAN interface
Replies: 133
Views: 39965

Re: SolarEdge via LAN interface

Hi Guys,

I've a strange daily value which i don't see in the reports or logs
2025-05-25 20_00_05-Domoticz - Overige.png
2025-05-25 20_00_05-Domoticz - Overige.png (13.73 KiB) Viewed 456 times
2025-05-25 20_03_47-Domoticz - Devices_891_Log.png
2025-05-25 20_03_47-Domoticz - Devices_891_Log.png (7.76 KiB) Viewed 455 times
Any idea where this is coming from or how to correct?
by madpatrick
Saturday 24 May 2025 19:12
Forum: dzVents
Topic: .checkFirst() not working on Fibaro Roller Shutter
Replies: 9
Views: 1242

Re: .checkFirst() not working on Fibaro Roller Shutter

Not sure what kind of device you are using, but within my script i'm using the following command in DzVents local Screen_Slaapkamer = dz.devices(613) Screen_Slaapkamer.switchOn().checkFirst() or local Screen_Slaapkamer = dz.devices(613) Screen_Slaapkamer.dimTo(50)
by madpatrick
Thursday 22 May 2025 19:41
Forum: LUA
Topic: buienradar lua script
Replies: 100
Views: 20848

Re: buienradar lua script

Hi, I'm using this script for a long time and it is still working great. For those using it i've transfered the LUA script to DZ Maybe useless action, but i'm understanding DZ a little bit better and all my scripts are in DZ. For those who are interested here with my script local scriptName ...
by madpatrick
Monday 05 May 2025 16:59
Forum: Other questions and discussions
Topic: SolarEdge via LAN interface
Replies: 133
Views: 39965

Re: SolarEdge via LAN interface

Hi Guys, I have found this plugin which works with my Soleradge (and also of JvdZ) https://github.com/addiejanssen/domoticz-solaredge-modbustcp-plugin This is how i got it to work git clone https://github.com/addiejanssen/domoticz-solaredge-modbustcp-plugin pip3 install -r requirements.txt pip3 ...
by madpatrick
Monday 05 May 2025 15:25
Forum: Suggestions
Topic: Support for Somfy Connexoon and Tahoma
Replies: 168
Views: 61040

Re: Support for Somfy Connexoon and Tahoma

I saw it also, Thanks
The master is now 4.2.23
by madpatrick
Monday 05 May 2025 15:02
Forum: Suggestions
Topic: Support for Somfy Connexoon and Tahoma
Replies: 168
Views: 61040

Re: Support for Somfy Connexoon and Tahoma

thanks Added to the beta 4.2.23 Tip. Better to add text is a bracket field </> then by using a picture You can thr easily copy the text OLD if dataset["deviceURL"] not in Devices: Domoticz.Error("device not found for URL: "+str(dataset["deviceURL"])) logging.error("device not found for URL: "+str ...
by madpatrick
Sunday 04 May 2025 13:58
Forum: Bugs and Problems
Topic: Update API solaredge
Replies: 21
Views: 4311

Re: Update API solaredge

Hi,

I'm have the same problems.
Worked for year and suddenly it stopped working.

Also the admin sectionis gone in my portal.
by madpatrick
Sunday 04 May 2025 9:32
Forum: dzVents
Topic: Getting setting info to script
Replies: 2
Views: 597

Re: Getting setting info to script

Thanks. I must have overlooked that one
by madpatrick
Saturday 03 May 2025 20:31
Forum: dzVents
Topic: Getting setting info to script
Replies: 2
Views: 597

Getting setting info to script

Hi,

I like to read out the LAT and LAT from the settings menu in to a Dzvents script
Is this possible and how can i do this ?

Code: Select all

local lat = tostring(domoticz.settings.latitude)
local lon = tostring(domoticz.settings.longitude)
SOemthing like this, but that doesn't work
by madpatrick
Tuesday 29 April 2025 22:06
Forum: Suggestions
Topic: Support for Somfy Connexoon and Tahoma
Replies: 168
Views: 61040

Re: Support for Somfy Connexoon and Tahoma

1. Search in this topic
2. Google
3, https://github.com/MadPatrick/somfy
by madpatrick
Tuesday 29 April 2025 21:52
Forum: Suggestions
Topic: Support for Somfy Connexoon and Tahoma
Replies: 168
Views: 61040

Re: Support for Somfy Connexoon and Tahoma

This is an very old plugin.
You can use the new updated version
by madpatrick
Sunday 27 April 2025 9:49
Forum: Dashticz
Topic: Dashticz v3.14.1-beta
Replies: 24
Views: 2359

Re: Dashticz v3.14.1-beta

Thanks for the quick fix. How can i adjust the stop button ? .btn-number.stop {width: 88px !important;height: 50px !important; border: 1px solid rgba(255,255,255,0.7);background: red; border-radius: 5px;font-size:20px !important;} When i change the size it doesn't work I will make styling a bit ...
by madpatrick
Saturday 26 April 2025 11:34
Forum: Dashticz
Topic: Dashticz v3.14.1-beta
Replies: 24
Views: 2359

Re: Dashticz v3.14.1-beta

Thanks for the quick fix.

How can i adjust the stop button ?

Code: Select all

.btn-number.stop 				{width: 88px !important;height: 50px !important; border: 1px solid rgba(255,255,255,0.7);background: red; border-radius: 5px;font-size:20px !important;}
When i change the size it doesn't work
by madpatrick
Friday 25 April 2025 20:40
Forum: Dashticz
Topic: Dashticz v3.14.1-beta
Replies: 24
Views: 2359

Re: Dashticz v3.14.1-beta

Hi Lokonli, Found another issue My sliders are gone .ui-slider-handle {padding: 6px 10px 6px 10px !important;background-color: #00aaff !important;border-color: white !important;border-radius: 14px;height: 22px !important;width: 48px !important;box-shadow: inset 3px 3px 5px 0px rgba(255,255,255,0.5 ...
by madpatrick
Friday 25 April 2025 20:04
Forum: Dashticz
Topic: Dashticz v3.14.1-beta
Replies: 24
Views: 2359

Re: Dashticz v3.14.1-beta

Looking good.
Thanks for the swift fix