|
Conditions
|
Previous Next |
|
Symbol
|
Meaning
|
|
=
|
Equal
|
|
<>
|
Not Equal
|
|
<
|
Less Than
|
|
>
|
Greater Than
|
|
<=
|
Less than or equal to
|
|
>=
|
Equal to or greater than
|
|
Name
|
Abbreviation
|
Condition true if
|
|
AND
|
&
|
both conditions are true
|
|
OR
|
|
|
at least one condition is true
|
|
XOR
|
#
|
one condition is true
|
|
NOT
|
!
|
the condition is not true
|
|
Condition
|
Comments
|
|
Temp = 0
|
Condition is true if Temp = 0
|
|
Sensor <> 0
|
Condition is true if Sensor is not 0
|
|
Reading1 > Reading2
|
True if Reading1 is more than Reading2
|
|
Mode = 1 AND Time > 10
|
True if Mode is 1 and Time is more than 10
|
|
Heat > 5 OR Smoke > 2
|
True if Heat is more than 5 or Smoke is more than 2
|
|
Light >= 10 AND (NOT
Time > 7)
|
True if Light is 10 or more, and Time is 7 or less
|
|
Temp.0 ON
|
True if Temp bit 0 is on
|