Skip to content
HOME
About
Contact
Menu
HOME
About
Contact
Session 2
Codes:
https://github.com/A-Safi/ArduinoClass101
Operators
Example
Description
Operator
x == y
Equal to
==
x != y
Not equal to
!=
x > y
Greater than
>
x < y
Less than
<
x >= y
Greater than or Equal to
>=
x <= y
Less than or Equal to
<=
x == 1 && y == 2
And
&&
x == 1 || y ==2
Or
||