| 701 | __attribute__ ((deprecated ("The function sendDenon(data, nbits) is deprecated and may not work as expected! Use sendDenonRaw(data, NumberOfRepeats) or better sendDenon(Address, Command, NumberOfRepeats)."))); |
| 702 | void sendDish(uint16_t aData); |
| 703 | void sendJVC(unsigned long data, int nbits, |
| 704 | bool repeat) |
| 705 | __attribute__ ((deprecated ("This old function sends MSB first! Please use sendJVC(aAddress, aCommand, aNumberOfRepeats)."))) { |
| 706 | sendJVCMSB(data, nbits, repeat); |
| 707 | } |
| 708 | void sendJVCMSB(unsigned long data, int nbits, bool repeat = false); |
| 709 | |
| 710 | void sendLG(unsigned long data, |
nothing calls this directly
no outgoing calls
no test coverage detected