added all comparison operator descriptions

blakadder 2019-05-08 09:39:41 +02:00
parent ea0a8e7209
commit 47d53a8ec3
1 changed files with 10 additions and 7 deletions

@ -60,14 +60,17 @@ Tele-[SensorName]#[ValueName]
```
Comparison operators are:
```
"=", ">", "<", "|"
"==", ">=", "<=", "!="
"=" operator is used for string comparison
"==" operator is used for numerical comparison
"|" operator is used for modulo calculation remainder = 0 (i.e., exact division)
```
|Operator|Function|
|---|---|
|`=` | equal to (used for string comparison)|
|`==`| equal to (used for numerical comparison)|
|`>`| greater than|
|`<`| lesser than|
|`!=`| not equal to|
|`>=`| greater than or equal to|
|`<=`| lesser than or equal to|
|`\|`| used for modulo calculation remainder = 0 (i.e., exact division)|
Some of available triggers: