| 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) |
nothing calls this directly
no outgoing calls
no test coverage detected