IR NEC
#define DISABLE_CODE_FOR_RECEIVER
#define SEND_PWM_BY_TIMER
#define IR_TX_PIN 4
#include "M5AtomS3.h"
#include <IRremote.hpp>
uint8_t sCommand = 0x34;
uint8_t sRepeats = 0;
void setup() {
auto cfg = M5.config();
AtomS3.begin(cfg);
AtomS3.Display.setTextColor(GREEN);
AtomS3.Display.setTextDatum(middle_center);
AtomS3.Display.setFont(&fonts::FreeMono9pt7b);
AtomS3.Display.setTextSize(1);
IrSender.begin(DISABLE_LED_FEEDBACK);
IrSender.setSendPin(IR_TX_PIN);
}
void loop() {
Serial.println();
Serial.print(F("Send now: address=0x1111, command=0x"));
Serial.print(sCommand, HEX);
Serial.print(F(", repeats="));
Serial.print(sRepeats);
Serial.println();
AtomS3.Display.clear();
AtomS3.Display.drawString("IR NEC SEND", AtomS3.Display.width() / 2,
AtomS3.Display.height() / 2 - 40);
AtomS3.Display.drawString("ADDR:0x1111", AtomS3.Display.width() / 2,
AtomS3.Display.height() / 2);
AtomS3.Display.drawString("CMD:0x" + String(sCommand, HEX),
AtomS3.Display.width() / 2,
AtomS3.Display.height() / 2 + 40);
Serial.println(F("Send standard NEC with 16 bit address"));
AtomS3.Display.fillCircle(10, 105, 8, GREEN);
IrSender.sendNEC(0x1111, sCommand, sRepeats);
sCommand += 1;
delay(500);
AtomS3.Display.fillCircle(10, 105, 8, YELLOW);
delay(500);
}