Search found 34 matches

by ravaoo
Friday 06 September 2024 13:00
Forum: Temperature and Weather
Topic: Buienradar : Buienrader: RainPrediction has old data
Replies: 13
Views: 1714

Buienradar : Buienrader: RainPrediction has old data

Hi, some time now i get errors with Buienradar
Buienrader: RainPrediction has old data

Is this a known issue? Am i the only one with this error? How can i fix it?
by ravaoo
Tuesday 23 July 2024 12:21
Forum: dzVents
Topic: set device "Off Delay" value with DzVents
Replies: 7
Views: 1792

Re: set device "Off Delay" value with DzVents

Thanks Waltervl, again :)

So i have to switch off the device in dzvents and not by device settings. There is no way te set the default switch off settings with script?
by ravaoo
Tuesday 23 July 2024 10:59
Forum: dzVents
Topic: set device "Off Delay" value with DzVents
Replies: 7
Views: 1792

set device "Off Delay" value with DzVents

I would like to set device "Off Delay" value with DzVents script Why? Normaly we want the lights go off automaticly after 20 min (if there is no movement). Sometimes we want this only after 2 hours of no movement. It is nice weather, we are in the garden and we don't want come in in a dark house ...
by ravaoo
Friday 19 July 2024 10:30
Forum: Suggestions
Topic: Max Power settings on L!,L2,L3 usage
Replies: 2
Views: 1393

Re: Max Power settings on L!,L2,L3 usage

Thank you for responding this quick! I made some script and works fine (tested it with low max) return { on = { devices = { 'Usage L1','Usage L2','Usage L3','Delivery L3', } }, logging = { level = domoticz.LOG_INFO, marker = 'Dz max power op fase niveau', }, execute = function(domoticz, device ...
by ravaoo
Friday 19 July 2024 9:30
Forum: Suggestions
Topic: Max Power settings on L!,L2,L3 usage
Replies: 2
Views: 1393

Max Power settings on L!,L2,L3 usage

There is a Max Power setting and this is never met because i have 3 fase power connection. For me it makes more sens to monitor en alarm on fase. So can there be a setting and alarm on L1,L2,L3 usage? And if you are in that code it is low hanging fruit to do it also for L1,L2,L3 delivery. Maybe it ...
by ravaoo
Wednesday 10 July 2024 14:36
Forum: Suggestions
Topic: Group/Scene custom icon
Replies: 5
Views: 1929

Re: Group/Scene custom icon

+1
This request is made a long time ago. So maybe i shoud give it a +295 ;)
by ravaoo
Thursday 20 June 2024 8:26
Forum: Show your projects
Topic: Energy Dashboard (Build in)
Replies: 287
Views: 42962

Re: Energy Dashboard (Build in)

waltervl wrote: Wednesday 12 June 2024 16:19 Check the device log page. It should also show the costs (in the monthly graph)
Thanks Waltervl! This helped finding my problem. I now understand how it works. for gas i selected (internal) and it works (after a day waiting for change in my meter).
by ravaoo
Wednesday 12 June 2024 14:26
Forum: Show your projects
Topic: Energy Dashboard (Build in)
Replies: 287
Views: 42962

Re: Energy Dashboard (Build in)

A question: If i use dynamic usage electric prices is the return price still the fixed price? Because thats the case by me.
by ravaoo
Wednesday 12 June 2024 14:13
Forum: Show your projects
Topic: Energy Dashboard (Build in)
Replies: 287
Views: 42962

Re: Energy Dashboard (Build in)

Wow! nice dashboard. I have also a price problem. I have dynamic electricity and the usages costs are nicely presented in the dashboard. My gas contract is a fixed price. This is entered in the meter settings. Did not work. Now i have made a generic dummy device and have put the price in de value. I ...
by ravaoo
Tuesday 09 April 2024 8:49
Forum: dzVents
Topic: math.rand gives same results [solved]
Replies: 7
Views: 594

Re: math.rand gives same results

@ Moderator: leecollings
How do i set a subject to [solved]? Or is this a moderator thing?
by ravaoo
Tuesday 09 April 2024 8:45
Forum: dzVents
Topic: math.rand gives same results [solved]
Replies: 7
Views: 594

Re: math.rand gives same results

additional, are you doing something with callback in OpenURL()? It is not clear from the script you are giving us. callback = 'return', -- see httpResponses above. Because if you do react on the callback you have to make it unique eg returnlamp1, returnlamp2 etc. Else Dzvents will react on the ...
by ravaoo
Tuesday 09 April 2024 8:42
Forum: dzVents
Topic: math.rand gives same results [solved]
Replies: 7
Views: 594

Re: math.rand gives same results

Your use of math.randomseed seems… random. It might overflow integer value and result in a no-op. Or the same value rounded every time so same sequence of generated numbers. Ideally, you should use math.randomseed(os.time()) only once before the whole disco commands. Also lots of redundancy in your ...
by ravaoo
Monday 08 April 2024 13:10
Forum: dzVents
Topic: math.rand gives same results [solved]
Replies: 7
Views: 594

Re: math.rand gives same results

willemd: Tested your script This script gif's me different color numbers! Then i put your script in my script. Stil different color numbers in your script part and mine almost the same numbers! Then I put in a for loop of 10 random numbers that i don't use for each lamp. Debugging de list of numbers ...
by ravaoo
Friday 05 April 2024 17:39
Forum: dzVents
Topic: math.rand gives same results [solved]
Replies: 7
Views: 594

math.rand gives same results [solved]

We have 6 colored lamps in the bathroom. For my kids i want to program a disco mode. I have 7 defined colors and with math.rand(1,7) for each lamp this should give diferent colors for every lamp (or sometimes the same bij change). The outcome is that every time most of the lamps have the same color ...
by ravaoo
Friday 05 April 2024 12:19
Forum: dzVents
Topic: setcolor results in openurl 0.0.0.0:80 [solved with workarround]
Replies: 29
Views: 1509

Re: setcolor results in openurl 0.0.0.0:80

I don't understand wat is the problem but found a way around it by using the Hue API. domoticz.openURL({ url = 'https://10.1.2.52/api/xxx/lights/17/state', method = 'PUT', postData = { on = true, sat = 254 , bri = 254 , hue = 1000 }, callback = 'return', }) I now can change color of my lamp. I made ...
by ravaoo
Wednesday 27 March 2024 11:39
Forum: dzVents
Topic: setcolor results in openurl 0.0.0.0:80 [solved with workarround]
Replies: 29
Views: 1509

Re: setcolor results in openurl 0.0.0.0:80

Again, what are your trusted network settings? If not correct you get the same error.... I tried the folowing settings: 172.20.0.* 0.0.0.0 172.20.0.*,127.0.0.* 127.0.0.* 172.20.0.*,127.0.0.*,0.0.0.0,local local local,LOCAL 172.20.0.*,127.0.0.*,0.0.0.0,local,LOCAL also <blank> All with the same error
by ravaoo
Tuesday 26 March 2024 10:39
Forum: dzVents
Topic: setcolor results in openurl 0.0.0.0:80 [solved with workarround]
Replies: 29
Views: 1509

Re: setcolor results in openurl 0.0.0.0:80

I cant install net-tools. Maybe this is related to my problem
by ravaoo
Tuesday 26 March 2024 10:12
Forum: dzVents
Topic: setcolor results in openurl 0.0.0.0:80 [solved with workarround]
Replies: 29
Views: 1509

Re: setcolor results in openurl 0.0.0.0:80

What docker version are you running? sudo docker --version I have version 20 and version 25 running. An upgrade from version 25 to 26 gave some problems with my Raspberry Pi4B (64 bits), so I reverted back to 25. i run version : Docker version 20.10.23, build 876964a (is part of container manager ...
by ravaoo
Monday 25 March 2024 13:54
Forum: dzVents
Topic: setcolor results in openurl 0.0.0.0:80 [solved with workarround]
Replies: 29
Views: 1509

Re: setcolor results in openurl 0.0.0.0:80

What's the output of sudo docker ps -a when you ssh into your NAS it should be something like 0f788fe90201 domoticz/domoticz:latest "docker-entrypoint.s…" 45 hours ago Up 45 hours 443/tcp, 0.0.0.0:8080->8080/tcp, :::8080->8080/tcp Special IP 0.0.0.0:<port> should be present. Output of 73529c86a201 d ...
by ravaoo
Monday 25 March 2024 10:35
Forum: dzVents
Topic: setcolor results in openurl 0.0.0.0:80 [solved with workarround]
Replies: 29
Views: 1509

Re: setcolor results in openurl 0.0.0.0:80

I got a idee!
Can someone provide me with code do the same in LUA or Python? I want to test if it is a environment problem or a dzVents problem.