/* BGH remote control J1-05(E) */ #ifndef BGHHeatpumpIR_h #define BGHHeatpumpIR_h #include // BGH timing constants #define BGH_AIRCON1_HDR_MARK 9060 #define BGH_AIRCON1_HDR_SPACE 4550 #define BGH_AIRCON1_BIT_MARK 520 #define BGH_AIRCON1_ONE_SPACE 1700 #define BGH_AIRCON1_ZERO_SPACE 630 #define BGH_AIRCON1_MSG_SPACE 8140 // Power state #define BGH_AIRCON1_POWER_OFF 0x04 //** #define BGH_AIRCON1_POWER_ON 0x00 //** // Operating modes // BGH codes #define BGH_AIRCON1_MODE_AUTO 0x04 // Not available 0x00 #define BGH_AIRCON1_MODE_HEAT 0x00 #define BGH_AIRCON1_MODE_COOL 0x02 #define BGH_AIRCON1_MODE_DRY 0x03 #define BGH_AIRCON1_MODE_FAN 0x04 #define BGH_AIRCON1_MODE_MAINT 0x04 // Power OFF // Fan speeds. Note that some heatpumps have less than 5 fan speeds #define BGH_AIRCON1_FAN_AUTO 0x00 // Fan speed #define BGH_AIRCON1_FAN1 0x03 // * low #define BGH_AIRCON1_FAN2 0x02 // * med #define BGH_AIRCON1_FAN3 0x01 // * high #define BGH_AIRCON1_FAN4 0x01 // * high Not available #define BGH_AIRCON1_FAN5 0x01 // * high Not available // Not available in this model. // Vertical air directions. Note that these cannot be set on all heat pumps #define BGH_VDIR_AUTO 0 #define BGH_VDIR_MANUAL 0 #define BGH_VDIR_SWING 0 #define BGH_VDIR_UP 0 #define BGH_VDIR_MUP 0 #define BGH_VDIR_MIDDLE 0 #define BGH_VDIR_MDOWN 0 #define BGH_VDIR_DOWN 0 // Not available in this model. // Horizontal air directions. Note that these cannot be set on all heat pumps #define BGH_HDIR_AUTO 0 #define BGH_HDIR_MANUAL 0 #define BGH_HDIR_SWING 0 #define BGH_HDIR_MIDDLE 0 #define BGH_HDIR_LEFT 0 #define BGH_HDIR_MLEFT 0 #define BGH_HDIR_MRIGHT 0 #define BGH_HDIR_RIGHT 0 class BGHHeatpumpIR : public HeatpumpIR { public: BGHHeatpumpIR(); void send(IRSender& IR, uint8_t powerModeCmd, uint8_t operatingModeCmd, uint8_t fanSpeedCmd, uint8_t temperatureCmd, uint8_t swingVCmd, uint8_t swingHCmd); private: void sendBGH(IRSender& IR, uint8_t powerMode, uint8_t operatingMode, uint8_t fanSpeed, uint8_t temperature, uint8_t swingV, uint8_t swingH); }; #endif