/* Gree heatpump control (remote control P/N zzz) */ #ifndef GreeHeatpumpIR_h #define GreeHeatpumpIR_h #include // Gree timing constants #define GREE_AIRCON1_HDR_MARK 9000 #define GREE_AIRCON1_HDR_SPACE 4000 #define GREE_AIRCON1_BIT_MARK 620 #define GREE_AIRCON1_ONE_SPACE 1600 #define GREE_AIRCON1_ZERO_SPACE 540 #define GREE_AIRCON1_MSG_SPACE 19000 // Timing specific for YAC features (I-Feel mode) #define GREE_YAC_HDR_MARK 6000 #define GREE_YAC_HDR_SPACE 3000 #define GREE_YAC_BIT_MARK 650 // Power state #define GREE_AIRCON1_POWER_OFF 0x00 #define GREE_AIRCON1_POWER_ON 0x08 // Operating modes // Gree codes #define GREE_AIRCON1_MODE_AUTO 0x00 #define GREE_AIRCON1_MODE_COOL 0x01 #define GREE_AIRCON1_MODE_DRY 0x02 #define GREE_AIRCON1_MODE_FAN 0x03 #define GREE_AIRCON1_MODE_HEAT 0x04 // Fan speeds. Note that some heatpumps have less than 5 fan speeds #define GREE_AIRCON1_FAN_AUTO 0x00 // Fan speed #define GREE_AIRCON1_FAN1 0x10 // * low #define GREE_AIRCON1_FAN2 0x20 // * med #define GREE_AIRCON1_FAN3 0x30 // * high #define GREE_AIRCON1_TURBO 0x80 // * turbo mode on YAN // Only available on YAN and YT // Vertical air directions. Note that these cannot be set on all heat pumps #define GREE_VDIR_AUTO 0x00 #define GREE_VDIR_MANUAL 0x00 #define GREE_VDIR_SWING 0x01 #define GREE_VDIR_UP 0x02 #define GREE_VDIR_MUP 0x03 #define GREE_VDIR_MIDDLE 0x04 #define GREE_VDIR_MDOWN 0x05 #define GREE_VDIR_DOWN 0x06 // Only available on YAC // Horizontal air directions. Note that these cannot be set on all heat pumps #define GREE_HDIR_AUTO 0x00 #define GREE_HDIR_MANUAL 0x00 #define GREE_HDIR_SWING 0x01 #define GREE_HDIR_LEFT 0x02 #define GREE_HDIR_MLEFT 0x03 #define GREE_HDIR_MIDDLE 0x04 #define GREE_HDIR_MRIGHT 0x05 #define GREE_HDIR_RIGHT 0x06 #define GREE_IFEEL_BIT 0x08 // Only available on YAA, YAC, and YT // byte 0 #define GREE_VSWING (1 << 6) // byte 2 #define GREE_TURBO_BIT (1 << 4) #define GREE_LIGHT_BIT (1 << 5) #define GREE_HEALTH_BIT (1 << 6) #define GREE_XFAN_BIT (1 << 7) // aka BLOW on some remotes // Gree model codes #define GREE_GENERIC 0 #define GREE_YAN 1 #define GREE_YAA 2 #define GREE_YAC 3 #define GREE_YT 4 class GreeHeatpumpIR : public HeatpumpIR { protected: GreeHeatpumpIR(); uint8_t greeModel; public: void send(IRSender& IR, uint8_t powerModeCmd, uint8_t operatingModeCmd, uint8_t fanSpeedCmd, uint8_t temperatureCmd, uint8_t swingVCmd, uint8_t swingHCmd); void send(IRSender& IR, uint8_t powerModeCmd, uint8_t operatingModeCmd , uint8_t fanSpeedCmd , uint8_t temperatureCmd , uint8_t swingVCmd , uint8_t swingHCmd, bool turboMode); void send(IRSender& IR, uint8_t powerModeCmd, uint8_t operatingModeCmd , uint8_t fanSpeedCmd , uint8_t temperatureCmd , uint8_t swingVCmd , uint8_t swingHCmd, bool turboMode, bool iFeelMode); private: void sendGree(IRSender& IR, uint8_t powerMode, uint8_t operatingMode, uint8_t fanSpeed, uint8_t temperature, uint8_t swingV, uint8_t swingH, bool turboMode, bool iFeelMode); }; class GreeGenericHeatpumpIR : public GreeHeatpumpIR { public: GreeGenericHeatpumpIR(); }; class GreeYANHeatpumpIR : public GreeHeatpumpIR { public: GreeYANHeatpumpIR(); public: void send(IRSender& IR, uint8_t powerModeCmd, uint8_t operatingModeCmd, uint8_t fanSpeedCmd, uint8_t temperatureCmd, uint8_t swingVCmd, uint8_t swingHCmd, bool turboMode) { GreeHeatpumpIR::send(IR, powerModeCmd, operatingModeCmd, fanSpeedCmd, temperatureCmd, swingVCmd, swingHCmd, turboMode); } }; class GreeYAAHeatpumpIR : public GreeHeatpumpIR { public: GreeYAAHeatpumpIR(); public: void send(IRSender& IR, uint8_t powerModeCmd, uint8_t operatingModeCmd, uint8_t fanSpeedCmd, uint8_t temperatureCmd, uint8_t swingVCmd, uint8_t swingHCmd, bool turboMode) { GreeHeatpumpIR::send(IR, powerModeCmd, operatingModeCmd, fanSpeedCmd, temperatureCmd, swingVCmd, swingHCmd, turboMode); } }; class GreeiFeelHeatpumpIR : public GreeHeatpumpIR { public: void send(IRSender& IR, uint8_t powerModeCmd, uint8_t operatingModeCmd, uint8_t fanSpeedCmd, uint8_t temperatureCmd, uint8_t swingVCmd, uint8_t swingHCmd, bool turboMode, bool iFeelMode) { GreeHeatpumpIR::send(IR, powerModeCmd, operatingModeCmd, fanSpeedCmd, temperatureCmd, swingVCmd, swingHCmd, turboMode, iFeelMode); } void send(IRSender& IR, uint8_t currentTemperature); }; class GreeYACHeatpumpIR : public GreeiFeelHeatpumpIR { public: GreeYACHeatpumpIR(); }; class GreeYTHeatpumpIR : public GreeiFeelHeatpumpIR { public: GreeYTHeatpumpIR(); }; #endif