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

Method IRrecv

src/IRReceive.hpp:66–68  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

64 * @param IRReceivePin Arduino pin to use. No sanity check is made.
65 */
66IRrecv::IRrecv() {
67 setReceivePin(0);
68}
69
70IRrecv::IRrecv(uint_fast8_t aReceivePin) {
71 setReceivePin(aReceivePin);

Callers

nothing calls this directly

Calls 1

setLEDFeedbackPinFunction · 0.85

Tested by

no test coverage detected