* 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. * */
| 1789 | * |
| 1790 | */ |
| 1791 | void printIRResultShort(Print *aSerial, IRData *aIRDataPtr, bool aPrintRepeatGap) { |
| 1792 | // DEPRECATED |
| 1793 | |
| 1794 | (void) aPrintRepeatGap; |
| 1795 | printIRDataShort(aSerial, aIRDataPtr); |
| 1796 | } |
| 1797 | void printIRResultShort(Print *aSerial, IRData *aIRDataPtr) { |
| 1798 | // DEPRECATED |
| 1799 |
no outgoing calls
no test coverage detected