I found this script excellent. Thanks waaren!
@ayamy I had the trigger type as HTTP request, then it worked fine.
Search found 3 matches
- Thursday 18 April 2019 11:03
- Forum: Blockly
- Topic: Calculation of the Lowest and the Highest Sensor values
- Replies: 7
- Views: 1912
- Thursday 18 April 2019 9:28
- Forum: Blockly
- Topic: Request: Possible Extension of Blockly functions?
- Replies: 1
- Views: 970
Re: Request: Possible Extension of Blockly functions?
Think you can solve it using a combination of dummyswitch and user variable:
IF switch = On AND power < 250 AND uservariable = 0
{
dummy = On for 1 min
uservariable =1
}
ELSE IF switch = On AND power < 250 AND uservariable = 1 AND dummy = Off
{
Send your alarm message
uservariable = 0
}
IF switch = On AND power < 250 AND uservariable = 0
{
dummy = On for 1 min
uservariable =1
}
ELSE IF switch = On AND power < 250 AND uservariable = 1 AND dummy = Off
{
Send your alarm message
uservariable = 0
}
- Tuesday 22 January 2019 12:11
- Forum: Z-Wave
- Topic: Domoticz, Pi3, RaZberry & Raspbian Jessie
- Replies: 55
- Views: 41691
Re: Domoticz, Pi3, RaZberry & Raspbian Jessie
Has anyone got this working with latest Raspbian Stretch? On "step 10. sudo stty -F /dev/ttyAMA0 9600" I get this: stty: /dev/ttyAMA0: No such file or directory Am I missing something? Something changed between Jessie and Stretch in regards to this? [Update] Solved it. had disabled the Serial port ...