Search found 10 matches
- Wednesday 02 January 2019 10:16
- Forum: Blockly
- Topic: Turn light when is open door in night
- Replies: 3
- Views: 1243
Re: Turn light when is open door in night
that will not work because time is not compared with the same day. Make a dummy switch (isdark) and let it switch with a new blocky: if time = sunset then switch dummyswitch (isdark) = "on" if time = sunrise then switch dummyswitch (isdark) = "off" and then compare this dummy switch with your blocky ...
- Friday 11 May 2018 13:56
- Forum: Heating/cooling
- Topic: HGI80 install on a Pi - getting Lost
- Replies: 5
- Views: 2672
Re: HGI80 install on a Pi - getting Lost
Are you using usb-hub ?
try to slowdown usb-speed
sudo nano /boot/cmdline.txt
dwc_otg.speed=1
try to slowdown usb-speed
sudo nano /boot/cmdline.txt
dwc_otg.speed=1
- Friday 11 May 2018 12:57
- Forum: Blockly
- Topic: Turn off light after x sexonds dows not work as expected
- Replies: 4
- Views: 1237
Re: Turn off light after x sexonds dows not work as expected
1e line: first motion must be off before resetting counter thats not what you want.
you want everytime there is moiton reset the counter to 900.
So you have to Remove Datorrum motion=Off
you want everytime there is moiton reset the counter to 900.
So you have to Remove Datorrum motion=Off
- Thursday 23 November 2017 20:20
- Forum: iOS
- Topic: Domoticz App
- Replies: 505
- Views: 119872
Re: Domoticz App
Blind switch inverted by app. when blinds are open the app switch is turned on instead of off. pressing the button does do nothing, it's switching from off to on again because its already off. what type of blind do you have? Blinds open / close Galadril did you find any solution for this ? On ...
- Thursday 21 September 2017 19:31
- Forum: iOS
- Topic: Domoticz App
- Replies: 505
- Views: 119872
Re: Domoticz App
- Sunday 17 September 2017 16:17
- Forum: iOS
- Topic: Domoticz App
- Replies: 505
- Views: 119872
Re: Domoticz App
Blind switch inverted by app.
when blinds are open the app switch is turned on instead of off.
pressing the button does do nothing, it's switching from off to on again because its already off.
when blinds are open the app switch is turned on instead of off.
pressing the button does do nothing, it's switching from off to on again because its already off.
- Thursday 05 May 2016 15:21
- Forum: Other questions and discussions
- Topic: Help needed for Fibaro Roller Shutter i.c.w. sunshade
- Replies: 9
- Views: 2045
Re: Help needed for Fibaro Roller Shutter i.c.w. sunshade
Do you have end-switches on the somfy-motor ? Are they set ?
- Saturday 31 October 2015 21:03
- Forum: Forum feedback
- Topic: New stable #3.521 Released today!
- Replies: 41
- Views: 18100
Re: New stable #3.521 Released today!
My system crashes as well.
I've got the Segmentation fault and website is unresponsive.
after i placed back the lua script which i had removed because of update V2.3501 its seems to working again.
Edit. it's still crashing
I've got the Segmentation fault and website is unresponsive.
after i placed back the lua script which i had removed because of update V2.3501 its seems to working again.
Edit. it's still crashing
- Friday 30 October 2015 9:50
- Forum: LUA
- Topic: Lua script for controlling humidity in the bathroom
- Replies: 144
- Views: 54698
Re: Lua script for controlling humidity in the bathroom
aaahhh i get it.
I must read this in a different way. not like
(fan = off and fanfollowprogram = 0) or (fan = on and fanfollowprogram = 0)
but
(fan=off) or (fan=on and fanfollowsprogram = 0)
That make sense to me, Thanks Dannyblo
I must read this in a different way. not like
(fan = off and fanfollowprogram = 0) or (fan = on and fanfollowprogram = 0)
but
(fan=off) or (fan=on and fanfollowsprogram = 0)
That make sense to me, Thanks Dannyblo
- Friday 30 October 2015 9:23
- Forum: LUA
- Topic: Lua script for controlling humidity in the bathroom
- Replies: 144
- Views: 54698
Re: Lua script for controlling humidity in the bathroom
Hi, I have a question about these 2 if statements if (otherdevices[FAN_NAME]=='Off' or (otherdevices[FAN_NAME]=='On' and fanFollowsProgram==0)) then -- either the fan is off or it is on but the decrease program has not started -- in that latter case we start the program anyway. This could happen if ...