СT
а то я тут вон разные sendNEC вижу
https://github.com/Arduino-IRremote/Arduino-IRremote/blob/master/examples/SendDemo/SendDemo.ino
Size: a a a
СT
R
R
AG
AG
Т
СT
void sendNECRepeat();
void sendNEC(uint16_t aAddress, uint8_t aCommand, uint_fast8_t aNumberOfRepeats, bool aIsRepeat = false);
void sendNECRaw(uint32_t aRawData, uint_fast8_t aNumberOfRepeats = 0, bool aIsRepeat = false);
void sendNEC(uint32_t aRawData,
uint8_t nbits)
__attribute__ ((deprecated ("This old function sends MSB first! Please use sendNEC(aAddress, aCommand, aNumberOfRepeats)."))) {
sendNECMSB(aRawData, nbits);
}
СT
AG
СT
AG
СT
AG
AG
СT
void loop() {
irsend.sendNEC(0x807FC03F, 32);
delay(2000);
irsend.sendNECRepeat();
delay(2000);
}
СT
AG
СT