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

Function printIRResultShort

src/IRReceive.hpp:1791–1796  ·  view source on GitHub ↗

* Deprecated static function to be able to print data to send or copied received data. * Ends with println(). * * @param aSerial The Print object on which to write, for Arduino you can use &Serial. * @param aIRDataPtr Pointer to the data to be printed. * @param aPrintRepeatGap If true also print the gap before repeats. * */

Source from the content-addressed store, hash-verified

1789 *
1790 */
1791void printIRResultShort(Print *aSerial, IRData *aIRDataPtr, bool aPrintRepeatGap) {
1792 // DEPRECATED
1793
1794 (void) aPrintRepeatGap;
1795 printIRDataShort(aSerial, aIRDataPtr);
1796}
1797void printIRResultShort(Print *aSerial, IRData *aIRDataPtr) {
1798 // DEPRECATED
1799

Callers 2

printIRResultShortMethod · 0.85
printIRResultAsCArrayMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected