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

Method sendNEC

src/IRremoteInt.h:714–718  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

712 __attribute__ ((deprecated ("The function sendLG(data, nbits) is deprecated and may not work as expected! Use sendLGRaw(data, NumberOfRepeats) or better sendLG(Address, Command, NumberOfRepeats).")));
713
714 void sendNEC(uint32_t aRawData,
715 uint8_t nbits)
716 __attribute__ ((deprecated ("This old function sends MSB first! Please use sendNECMSB() or sendNEC(aAddress, aCommand, aNumberOfRepeats)."))) {
717 sendNECMSB(aRawData, nbits);
718 }
719 void sendNECMSB(uint32_t data, uint8_t nbits, bool repeat = false);
720 void sendRC5(uint32_t data,
721 uint8_t nbits)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected