Search found 14 matches
- Friday 17 September 2021 9:39
- Forum: Switches and Scenes
- Topic: Duo switch with fibaro dimmers
- Replies: 7
- Views: 883
Re: Duo switch with fibaro dimmers
Hi, As erem said, you do not need the brown wire to your lights, that 'power' comes from the dimmer itself. You only need to connect the light back to the blue wire. First check that you have both L and N line available at the ceiling. Their might only be one power wire and a wire from the 'dumb ...
- Friday 14 February 2020 8:40
- Forum: LUA
- Topic: timeofday[‘Nighttime’] and time.hour < 7
- Replies: 2
- Views: 1070
Re: timeofday[‘Nighttime’] and time.hour < 7
Hi binbo,
I don't rely understand you last sentence. But the last code you gave is a solution I would use too, but you need an 'OR', not an 'AND'.
Regards
DaanT
I don't rely understand you last sentence. But the last code you gave is a solution I would use too, but you need an 'OR', not an 'AND'.
Code: Select all
If time.hour > 18 or time.hour < 7
DaanT
- Saturday 14 September 2019 18:48
- Forum: Blockly
- Topic: user variables in blockly
- Replies: 2
- Views: 477
Re: user variables in blockly
Hi jenicek,
A user variable does not trigger events when changed.
Maybe that's your problem, an event with just a user variable in the if statement will never run.
Daan
A user variable does not trigger events when changed.
Maybe that's your problem, an event with just a user variable in the if statement will never run.
Daan
- Wednesday 11 September 2019 12:56
- Forum: Blockly
- Topic: Blocky program don't work
- Replies: 2
- Views: 794
Re: Blocky program don't work
Hi phoenixblue, I hope I understand you correctly, here's my view. The 600s timer is still going even if you closed the door. As soon as the door opens, in any case the marker will go to ON after 600s. And right after it the door is already close and it will switch back to OFF, giving you the double ...
- Friday 06 September 2019 9:24
- Forum: Other questions and discussions
- Topic: Simple events don't work
- Replies: 0
- Views: 166
Re: Simple events don't work
Hi judymattson,
If you want help from this community, you'll have to share a little bit more information.
Please share your event en what options you've already tried.
Kind regards
Daan
If you want help from this community, you'll have to share a little bit more information.
Please share your event en what options you've already tried.
Kind regards
Daan
- Friday 06 September 2019 9:22
- Forum: Switches and Scenes
- Topic: Unable to turn off light manually, lights up by motion sensor
- Replies: 9
- Views: 2025
Re: Unable to turn off light manually, lights up by motion sensor
Hi Ronniez,
Which type if smart lights or switches are you using?
Daan
Which type if smart lights or switches are you using?
Daan
- Wednesday 04 September 2019 13:53
- Forum: Switches and Scenes
- Topic: Unable to turn off light manually, lights up by motion sensor
- Replies: 9
- Views: 2025
Re: Unable to turn off light manually, lights up by motion sensor
No not at all, I also do everything in blockly. That's the reason i structured my answer the way I did, for me it almost looks like a blockly event.
Just create 3 events and maybe try to group them by assigning numbers before the title: like 11, 12 and 13
Just create 3 events and maybe try to group them by assigning numbers before the title: like 11, 12 and 13
- Wednesday 04 September 2019 9:36
- Forum: Switches and Scenes
- Topic: Unable to turn off light manually, lights up by motion sensor
- Replies: 9
- Views: 2025
Re: Unable to turn off light manually, lights up by motion sensor
Then I would use a switch to act as a delay. IF "switch lights to off" Do - Lights off - delay motion on - delay switch on - delay switch off after 30 seconds IF "motion = off" - You need this because if you walk out it will go to on, and will stay like that for some time.Need to wait for it to ...
- Monday 02 September 2019 17:47
- Forum: Switches and Scenes
- Topic: Unable to turn off light manually, lights up by motion sensor
- Replies: 9
- Views: 2025
Re: Unable to turn off light manually, lights up by motion sensor
Hi Ronniez,
It's unclear to me when you want fibaro to take control again over the lights. After midnight, after you come home (disable alarm), after several minutes or any other way maybe?
Kind regards
Daan
It's unclear to me when you want fibaro to take control again over the lights. After midnight, after you come home (disable alarm), after several minutes or any other way maybe?
Kind regards
Daan
- Monday 02 September 2019 17:38
- Forum: Switches and Scenes
- Topic: Automatic screens with manual in between
- Replies: 4
- Views: 620
Re: Automatic screens with manual in between
Hi Wouterlet, I have some kind of similar event where I wanted to loop thought a single event, but once run it would not re-trigger. The way I do it is by using a user variable. In the first IF, check that the user variable (UV for short now) is not 0. And in the DO, set the UV to 0. In the second ...
- Friday 23 August 2019 12:35
- Forum: Utility
- Topic: Power meter counter reset
- Replies: 8
- Views: 2566
Re: Power meter counter reset
Thank you FireWizard.
Kind regards
DaanT
Kind regards
DaanT
- Friday 23 August 2019 10:45
- Forum: Utility
- Topic: Power meter counter reset
- Replies: 8
- Views: 2566
Power meter counter reset
Hi,
I was looking at my power consumption and saw a very high usage. Seems like the counter got reset and therefor gave me a very high usage.
Is there any way to correct this jump?
Kind regards
Daan
I was looking at my power consumption and saw a very high usage. Seems like the counter got reset and therefor gave me a very high usage.
Is there any way to correct this jump?
Kind regards
Daan
- Friday 23 August 2019 10:29
- Forum: Blockly
- Topic: help with time dependant front door monitor
- Replies: 4
- Views: 746
Re: help with time dependant front door monitor
Hi Dave,
No only the last statement needs to be an OR.
The time needs to be before 6 OR after 21.
but also between 7 AND 17.
Daan
No only the last statement needs to be an OR.
The time needs to be before 6 OR after 21.
but also between 7 AND 17.
Daan
- Friday 23 August 2019 10:14
- Forum: Blockly
- Topic: help with time dependant front door monitor
- Replies: 4
- Views: 746
Re: time dependant front door monitor
Hi Dave,
I had the same problem when using sunrise and sunset.
Think of the following: when it is 22.00, the third time check will say it is later than 21.00, but the 4the time check will say it is not before 06.00. The last part will never work, it needs to be an or statement.
Kind regards,
Daan
I had the same problem when using sunrise and sunset.
Think of the following: when it is 22.00, the third time check will say it is later than 21.00, but the 4the time check will say it is not before 06.00. The last part will never work, it needs to be an or statement.
Kind regards,
Daan