I can not find the documentation for Conditional ternary operator (?):
where is it?
An example of use
Serial.println( ( (true == 1) ? ("TRUE") : ("FALSE") ) ); // PRINT TRUE
Serial.println( true == 0 ? "TRUE" : "FALSE" ); // PRINT FALSE
Serial.println( true == 1 ? String(true) : "" ); // PRINT 1
Serial.println( false == 0 ? String(false): "" ); // PRINT 0