* Instantiate the IRrecv class. Multiple instantiation is supported by activating SUPPORT_MULTIPLE_RECEIVER_INSTANCES and providing * the simple function UserIRReceiveTimerInterruptHandler(). This function is required, because we have only one timer resource. * See the MultipleReceivers example. * @param IRReceivePin Arduino pin to use. No sanity check is made. */
| 64 | * @param IRReceivePin Arduino pin to use. No sanity check is made. |
| 65 | */ |
| 66 | IRrecv::IRrecv() { |
| 67 | setReceivePin(0); |
| 68 | } |
| 69 | |
| 70 | IRrecv::IRrecv(uint_fast8_t aReceivePin) { |
| 71 | setReceivePin(aReceivePin); |
nothing calls this directly
no test coverage detected