MCPcopy Create free account
hub / github.com/Arduino-IRremote/Arduino-IRremote / printIRResultShort

Method printIRResultShort

src/IRReceive.hpp:1613–1617  ·  view source on GitHub ↗

* 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.*

Source from the content-addressed store, hash-verified

1611 * @return true, if CheckForRecordGapsMicros() has printed a message, i.e. gap < 15ms (RECORD_GAP_MICROS_WARNING_THRESHOLD).
1612 */
1613bool IRrecv::printIRResultShort(Print *aSerial, bool aPrintRepeatGap, bool aCheckForRecordGapsMicros) {
1614 // DEPRECATED
1615 (void) aPrintRepeatGap;
1616 return printIRResultShort(aSerial, aCheckForRecordGapsMicros);
1617}
1618bool IRrecv::printIRResultShort(Print *aSerial, bool aCheckForRecordGapsMicros) {
1619
1620 uint8_t tFlags = decodedIRData.flags;

Callers

nothing calls this directly

Calls 1

printIRResultShortFunction · 0.85

Tested by

no test coverage detected