Skip to content

Instantly share code, notes, and snippets.

@heggi
heggi / airgreen_climate.h
Last active July 8, 2023 15:32
ESPHome Airgreen Climate IR Remote
#include "esphome.h"
#include "IRremoteESP8266.h"
#include "IRsend.h"
#include "ir_Mirage.h"
const uint16_t kIrLed = 4; // ESP8266 GPIO pin to use. Recommended: 0 (D3).
IRMirageAc ac(kIrLed);
class AirgreenClimate : public Component, public Climate {