Search found 107 matches

by Treve
Friday 06 October 2023 19:32
Forum: Blockly
Topic: Blockly examples
Replies: 709
Views: 406976

Re: Blockly examples

I send you a PB.
by Treve
Friday 06 October 2023 16:32
Forum: Blockly
Topic: Blockly examples
Replies: 709
Views: 406976

Re: Blockly examples

Ok, will you Try the command ‘on’ in stead of ‘motion’ if you can switch the lamp on.

I will think about it and send you a PB after your replay for the next answer.
by Treve
Friday 06 October 2023 10:04
Forum: Blockly
Topic: Blockly examples
Replies: 709
Views: 406976

Re: Blockly examples

I have an Aeotec ZWA005 TriSensor+ here and would like the motion sensor to switch on my LED lamp when I enter my office and, for example, if I am away for 10 minutes, to switch it off again. it is not possible to get this working Screenshot 2023-10-06 at 09-57-21 Domoticz.png Is every function ...
by Treve
Wednesday 07 June 2023 20:34
Forum: Switches and Scenes
Topic: turn a switch of every 10 minus
Replies: 8
Views: 1258

Re: turn a switch of every 10 minus

I use (daily) a blockly to switch off my iPhone charger after 3 hrs.
Is switch is on, switch off after 180 minutes
by Treve
Tuesday 07 March 2023 17:30
Forum: Android
Topic: Geofence for Domoticz
Replies: 381
Views: 105662

Re: Geofence for Domoticz

ssk17051980 wrote:i don't find this app in Android store.
thx
This is what I found,

https://github.com/sandeepnegi/Locative-Android
by Treve
Tuesday 07 March 2023 12:28
Forum: Android
Topic: Geofence for Domoticz
Replies: 381
Views: 105662

Re: Geofence for Domoticz

I’m using “LOCATIVE” on a iPhone 13, this works flawlessly for a few years now.
It sends a http command to Domoticz and flips a dummy switch.
by Treve
Monday 21 November 2022 8:43
Forum: Blockly
Topic: motion sensor
Replies: 4
Views: 1480

Re: motion sensor

denismsd wrote:hello everyone, I need help with a blockly, if my motion sensor does not detect it for 20 minutes it turns off the living room light and kitchen light
Can you give a better explanation of your problem?
by Treve
Wednesday 28 September 2022 15:13
Forum: Blockly
Topic: Negative temp value in Blockly
Replies: 5
Views: 1159

Re: Negative temp value in Blockly

return { on = { timer = { 'every minute' } }, execute = function(domoticz) local Sensor = domoticz.devices('Vriezer') if Sensor.temperature >= -18 then domoticz.devices('Switch 7 Vriezer').switchOn() elseif Sensor.temperature <= -19 then domoticz.devices('Switch 7 Vriezer').switchOff() end end ...
by Treve
Wednesday 28 September 2022 14:13
Forum: Blockly
Topic: Negative temp value in Blockly
Replies: 5
Views: 1159

Re: Negative temp value in Blockly

return { on = { timer = { 'every minute' } }, execute = function(domoticz) local Sensor = domoticz.devices('testtemp') if Sensor.temperature <= 22 then domoticz.devices('Lidl On/Off plug 4').switchOn() elseif Sensor.temperature >= 24 then domoticz.devices('Lidl On/Off plug 4').switchOff() end end ...
by Treve
Wednesday 28 September 2022 11:31
Forum: Blockly
Topic: Negative temp value in Blockly
Replies: 5
Views: 1159

Re: Negative temp value in Blockly

Since I need a working script in the short term and have no time to learn myself into DZVentz. I found a script from the late 'Waaren', return { on = { timer = { 'every minute' } }, execute = function(domoticz) local Sensor = domoticz.devices('Omnik temperature') if Sensor.temperature >= 25 then ...
by Treve
Tuesday 27 September 2022 16:39
Forum: Blockly
Topic: Negative temp value in Blockly
Replies: 5
Views: 1159

Negative temp value in Blockly

The thermostat of the freezer is defective, I thought to solve this temporarily with a simple blockly. It seems that no negative values ​​are possible.
Can someone clarify and possibly offer me a solution.
Blockly negative temp.jpg
Blockly negative temp.jpg (20.03 KiB) Viewed 1144 times
by Treve
Monday 19 September 2022 9:54
Forum: MQTT Auto Discovery
Topic: Ikea Fyrtur always shows as closed - zigbee2mqtt
Replies: 4
Views: 1335

Re: Ikea Fyrtur always shows as closed - zigbee2mqtt

I have almost the same problem, i only use the Ikea Tradfri 0.10.7 plugin and Ikea hub. the curtain has three positions 100%, 70% and 55% and physically it works well. In Domoticz version 2020.x the slider also displayed the correct position. In versions 2021 and 2022, the problems suddenly appeared ...
by Treve
Friday 16 September 2022 9:21
Forum: PHP and all others
Topic: Ziggo - Connectbox
Replies: 6
Views: 1662

Re: Ziggo - Connectbox

What’s the connection/relation from this box to Domoticz?
by Treve
Sunday 03 July 2022 20:19
Forum: Other questions and discussions
Topic: WAN IP address change
Replies: 7
Views: 1080

Re: WAN IP address change

maybe to make it difficult for (Russian) hackers?
by Treve
Sunday 03 July 2022 15:38
Forum: Other questions and discussions
Topic: WAN IP address change
Replies: 7
Views: 1080

Re: WAN IP address change

Should be Ziggo, I have the same problem.
three different Wan addresses in one day.
I’m on vacation now and not be able to reach my Domoticz.
by Treve
Tuesday 07 June 2022 6:33
Forum: dzVents
Topic: Time how much a device is ON [Solved]
Replies: 20
Views: 6392

Re: Time how much a device is ON [Solved]

FYI: Waaren will never answer again, he passed away.
by Treve
Sunday 08 May 2022 21:08
Forum: dzVents
Topic: [SOLVED] Get sunrise and sunset time from domoticz
Replies: 3
Views: 1214

Re: [SOLVED] Get sunrise and sunset time from domoticz

FYI, Waaren is not with us anymore. He past away.
by Treve
Saturday 11 December 2021 16:29
Forum: Blockly
Topic: Blockly examples
Replies: 709
Views: 406976

Re: Blockly examples

Ok, I didn’t noticed the unequal sign.
by Treve
Saturday 11 December 2021 16:18
Forum: Blockly
Topic: Blockly examples
Replies: 709
Views: 406976

Re: Blockly examples

MikeyMan wrote:It's working!
blockly7.png
What is the function of the Variable?