Hey guys.
I'm doing a project but I came across this line and I'm in doubt what it does.
The line in question is line 4
'serial_byte = (serial_byte <0)? 0: ((serial_byte> 180)? 180: serial_byte); '
Thank you all.
I've already figured it out. I didn't know what this was.
It is a Ternary Operator. In this case, one inside the other.
I realized thanks to everyone greetings