Search found 38 matches

by PeterRozenveld
Tuesday 21 January 2025 13:31
Forum: dzVents
Topic: Something stupid , a dummy problem "actualWatt"
Replies: 11
Views: 375

Re: Something stupid , a dummy problem "actualWatt"

I will be absent until Friday
by PeterRozenveld
Monday 20 January 2025 19:21
Forum: dzVents
Topic: Something stupid , a dummy problem "actualWatt"
Replies: 11
Views: 375

Re: Something stupid , a dummy problem "actualWatt"

sorry doesn´t seem to work.
by PeterRozenveld
Monday 20 January 2025 17:25
Forum: dzVents
Topic: Something stupid , a dummy problem "actualWatt"
Replies: 11
Views: 375

Re: Something stupid , a dummy problem "actualWatt"

Ok thx!

Done

It's : Usage, Electricity and the property? is .POWER

but that seems not to work either.
by PeterRozenveld
Monday 20 January 2025 15:57
Forum: dzVents
Topic: Something stupid , a dummy problem "actualWatt"
Replies: 11
Views: 375

Re: Something stupid , a dummy problem "actualWatt"

I tried the following local kpmtt = domoticz.devices(‘Tot Stove’).Energy local kpmtt = domoticz.devices(‘To-Stove’).Usage local kpmtt = domoticz.devices(‘To-Stove’).actualWatt none of them work.... And the translation in Domoticz from Dummy Hardware to Dutch is quite confusing ! 2025-01-20 15:55:44.5 ...
by PeterRozenveld
Monday 20 January 2025 15:22
Forum: dzVents
Topic: Something stupid , a dummy problem "actualWatt"
Replies: 11
Views: 375

Something stupid , a dummy problem "actualWatt"

I keep getting an error in line 21: " Local kmptt = .... " Does a Dummy (Watts) have different value names ? And is it possible to use the IF and THEN statement several times in a row ? return { on = { devices = { 'Kookplaat_F1_(Rechts)', 'Kookplaat_F3_(Links_Flexzone)', 'Tot_Fornuis' }, }, logging ...
by PeterRozenveld
Monday 20 January 2025 8:56
Forum: dzVents
Topic: Must be not difficult! Adding two values?? [Solved]
Replies: 5
Views: 309

Re: Must be not difficult! Adding two values?? [Solved]

Thanks, and in particular : waltervl for the right and fine support. Herewith the working code: Peter Rozenveld. return { on = { devices = { 'Kookplaat_F1_(Rechts)', 'Kookplaat_F3_(Links_Flexzone)', }, }, logging = { level = domoticz.LOG_DEBUG, marker = 'Adding F1 en F2', }, execute = function(dz ...
by PeterRozenveld
Sunday 19 January 2025 21:28
Forum: dzVents
Topic: Must be not difficult! Adding two values?? [Solved]
Replies: 5
Views: 309

Re: Must be not difficult! Adding two values?? [Solved]

update Usage I think is wrong somewhere! return { on = { devices = { 'Kookplaat_F1_(Rechts)', 'Kookplaat_F3_(Links_Flexzone)', }, }, logging = { level = domoticz.LOG_DEBUG, marker = 'Adding F1 en F2', }, execute = function(dz, devices) targetDevice = dz.devices('Tot_Fornuis').Usage -- define as ...
by PeterRozenveld
Sunday 19 January 2025 15:51
Forum: dzVents
Topic: Must be not difficult! Adding two values?? [Solved]
Replies: 5
Views: 309

Must be not difficult! Adding two values?? [Solved]

It's Sunday and my brain doesn't want anymore: What I'm doing wrong ? Adding two values... return { on = { devices = { 'Kookplaat_F1_(Rechts)', 'Kookplaat_F3_(Links_Flexzone)', }, }, logging = { level = domoticz.LOG_DEBUG, marker = 'Adding F1 en F2', }, execute = function(dz, devices) targetDevice ...
by PeterRozenveld
Tuesday 07 January 2025 12:34
Forum: dzVents
Topic: Average current for valve
Replies: 10
Views: 355

Re: Average current for valve

Thanks all , I have extended the script slightly , so that the fan (192.168.2.171) enters a kind of shutdown phase and extends the average value because otherwise I will start commuting the valve (192.168.2.172) . Fan ip end's 171 Valve ip end's 172 Greets, Peter return { on = { timer = {'every 1 ...
by PeterRozenveld
Monday 06 January 2025 13:25
Forum: dzVents
Topic: Average current for valve
Replies: 10
Views: 355

Re: Average current for valve

Like this: Its working! return { on = { timer = {'every 1 minutes'}, devices = {'Kookplaat_F1_(Rechts)', 'Kookplaat_F3_(Links_Flexzone)'} }, logging = { level = domoticz.LOG_DEBUG, marker = 'OffdoorGemKookstroom', }, data = { kpmt1_History = { history = true, maxMinutes = 2}, kpmt2_History ...
by PeterRozenveld
Sunday 05 January 2025 0:32
Forum: dzVents
Topic: Average current for valve
Replies: 10
Views: 355

Re: Average current for valve

I feel a trigger is missing ? Can a timer be a solutions, ? And how do I get the logged stream values into another script now ? Peter return { on = { devices = {'Kookplaat_F1_(Rechts)', 'Kookplaat_F3_(Links_Flexzone)'} }, logging = { level = domoticz.LOG_DEBUG, marker = 'GemKookstroom', }, data ...
by PeterRozenveld
Saturday 04 January 2025 13:06
Forum: dzVents
Topic: Average current for valve
Replies: 10
Views: 355

Re: Average current for valve

First for Phase 1 this: return { on = { devices = {'Kookplaat_F1_(Rechts)'} }, logging = { level = domoticz.LOG_DEBUG, marker = 'Kookrechts', }, data = { kpmt1_History = { history = true, maxMinutes = 10}, }, execute = function(domoticz, sensor) -- add new data domoticz.data.kpmt1_History.add(sensor ...
by PeterRozenveld
Saturday 04 January 2025 10:40
Forum: dzVents
Topic: Average current for valve
Replies: 10
Views: 355

Re: Average current for valve

return { on = { devices = {'Test Total solar radiation'} }, logging = { level = domoticz.LOG_DEBUG, marker = 'SEM228T', }, data = { SEM228THistory = { history = true, maxMinutes = 10}, }, execute = function(domoticz, sensor) -- add new data domoticz.data.SEM228THistory.add(sensor.radiation ...
by PeterRozenveld
Friday 03 January 2025 13:25
Forum: dzVents
Topic: Average current for valve
Replies: 10
Views: 355

Average current for valve

I would like to use the average value instead of the absolute because Bosch Cooktop uses PWM and occasionally the current is zero! Does anyone have an idea? How to make that with dzVents? And maybe it would be useful , but am not so at home with wifi (Shelly) relays, to ask if the valve is already ...
by PeterRozenveld
Monday 23 December 2024 7:54
Forum: dzVents
Topic: Read text value from one sensor and send to another
Replies: 4
Views: 2581

Re: Read text value from one sensor and send to another

It does not differ much, I think, what I want. I am looking for a script , which depending on two power meters (0-3800 Watts Shelly Z-wave) , sets the 0-10Volt Dimmer (Shelly Wifi) to that value percentage-wise as well. (Control Kitchen Extractor) . But I don't understand most of what is written ...
by PeterRozenveld
Wednesday 11 September 2024 10:12
Forum: Bugs and Problems
Topic: wipe / remove devices
Replies: 3
Views: 529

Re: wipe / remove devices

I will try soon, thank you!
by PeterRozenveld
Wednesday 11 September 2024 9:46
Forum: dzVents
Topic: dual triggering
Replies: 1
Views: 605

dual triggering

I used two triggers, but apparently that doesn't work ? Or I'm doing something wrong. Why doesn't the switch turn off after 20 minutes? OBad.switchOn().forMin(20) see: return { on = { devices = { 'Badk_1_Switch', 'Zolder_CV_Q2', 'CV_Q2_OverrulledbyBad' }, timer = {'every 5 minutes' } }, logging ...
by PeterRozenveld
Wednesday 11 September 2024 9:42
Forum: dzVents
Topic: Qouad WallMote
Replies: 2
Views: 639

Re: Qouad WallMote is een van de volgende

I changed it a bit too much, thanks for your help.
Since it's been a while , I'll make a new topic.
I also bought different remote switch. I have also been working on that for a while.
by PeterRozenveld
Tuesday 10 September 2024 9:43
Forum: Bugs and Problems
Topic: Aeon Wallmote activatie switch 3 by itself ! ?
Replies: 0
Views: 766

Aeon Wallmote activatie switch 3 by itself ! ?

Has anyone experienced, that the Aeotec Wallmote turns on a switch automatically? (no one in that room) .
Or am I suffering from radio interference ?
by PeterRozenveld
Tuesday 10 September 2024 9:38
Forum: Bugs and Problems
Topic: wipe / remove devices
Replies: 3
Views: 529

wipe / remove devices

Why is it not possible to delete devices from the Aeon stick in Domoticz ? (When the hardware is broken or send back to the store)