* Function to print values and flags of IrReceiver.decodedIRData in one line. * Ends with println(). * * @param aSerial The Print object on which to write, for Arduino you can use &Serial. * @param aCheckForRecordGapsMicros If true, call CheckForRecordGapsMicros() which may do a long printout, * which in turn may block the proper detection of repeats.*
| 1611 | * @return true, if CheckForRecordGapsMicros() has printed a message, i.e. gap < 15ms (RECORD_GAP_MICROS_WARNING_THRESHOLD). |
| 1612 | */ |
| 1613 | bool IRrecv::printIRResultShort(Print *aSerial, bool aPrintRepeatGap, bool aCheckForRecordGapsMicros) { |
| 1614 | // DEPRECATED |
| 1615 | (void) aPrintRepeatGap; |
| 1616 | return printIRResultShort(aSerial, aCheckForRecordGapsMicros); |
| 1617 | } |
| 1618 | bool IRrecv::printIRResultShort(Print *aSerial, bool aCheckForRecordGapsMicros) { |
| 1619 | |
| 1620 | uint8_t tFlags = decodedIRData.flags; |
nothing calls this directly
no test coverage detected