Comparisons
Used to compare variables (useful for if() statements)
| Operator | Meaning |
|---|---|
| == | equal to |
| != | not equal to |
| < | less than |
| <= | less than or equal to |
| > | greater than |
| >= | greater than or equal to |
Do not confuse == (equality) and = (assignment)
A full tutorial with all data types, examples, and when to use them will be released soon. Please refer to docs.arduino.cc for general Arduino help
Arduino Language Reference Glossary
Website: docs.arduino.cc