119 lines
3.2 KiB
C++
Executable File
119 lines
3.2 KiB
C++
Executable File
// Amcor A/C
|
|
//
|
|
// Copyright 2019 David Conran
|
|
|
|
#ifndef IR_AMCOR_H_
|
|
#define IR_AMCOR_H_
|
|
|
|
#define __STDC_LIMIT_MACROS
|
|
#include <stdint.h>
|
|
#ifndef UNIT_TEST
|
|
#include <Arduino.h>
|
|
#endif
|
|
#include "IRremoteESP8266.h"
|
|
#include "IRsend.h"
|
|
#ifdef UNIT_TEST
|
|
#include "IRsend_test.h"
|
|
#endif
|
|
|
|
// Supports:
|
|
// Brand: Amcor, Model: ADR-853H A/C
|
|
// Brand: Amcor, Model: TAC-495 remote
|
|
// Brand: Amcor, Model: TAC-444 remote
|
|
// Ref:
|
|
// https://github.com/crankyoldgit/IRremoteESP8266/issues/834
|
|
// Kudos:
|
|
// ldellus: For the breakdown and mapping of the bit values.
|
|
|
|
// Constants
|
|
|
|
|
|
// state[1]
|
|
const uint8_t kAmcorModeFanByte = 1;
|
|
// Fan Control
|
|
const uint8_t kAmcorFanMin = 0b001;
|
|
const uint8_t kAmcorFanMed = 0b010;
|
|
const uint8_t kAmcorFanMax = 0b011;
|
|
const uint8_t kAmcorFanAuto = 0b100;
|
|
const uint8_t kAmcorFanMask = 0b01110000;
|
|
// Modes
|
|
const uint8_t kAmcorCool = 0b001;
|
|
const uint8_t kAmcorHeat = 0b010;
|
|
const uint8_t kAmcorFan = 0b011; // Aka "Vent"
|
|
const uint8_t kAmcorDry = 0b100;
|
|
const uint8_t kAmcorAuto = 0b101;
|
|
const uint8_t kAmcorModeMask = 0b00000111;
|
|
|
|
// state[2]
|
|
const uint8_t kAmcorTempByte = 2;
|
|
// Temperature
|
|
const uint8_t kAmcorMinTemp = 12; // Celsius
|
|
const uint8_t kAmcorMaxTemp = 32; // Celsius
|
|
const uint8_t kAmcorTempMask = 0b01111110;
|
|
|
|
// state[5]
|
|
// Power
|
|
const uint8_t kAmcorPowerByte = 5;
|
|
const uint8_t kAmcorPowerMask = 0b11110000;
|
|
const uint8_t kAmcorPowerOn = 0b00110000; // 0x30
|
|
const uint8_t kAmcorPowerOff = 0b11000000; // 0xC0
|
|
|
|
// state[6]
|
|
const uint8_t kAmcorSpecialByte = 6;
|
|
// Max Mode (aka "Lo" in Cool and "Hi" in Heat)
|
|
const uint8_t kAmcorMaxMask = 0b00000011; // 0x03
|
|
// "Vent" Mode
|
|
const uint8_t kAmcorVentMask = 0b11000000; // 0xC0
|
|
|
|
// state[7]
|
|
// Checksum byte.
|
|
const uint8_t kAmcorChecksumByte = kAmcorStateLength - 1;
|
|
|
|
// Classes
|
|
class IRAmcorAc {
|
|
public:
|
|
explicit IRAmcorAc(const uint16_t pin, const bool inverted = false,
|
|
const bool use_modulation = true);
|
|
|
|
void stateReset();
|
|
#if SEND_AMCOR
|
|
void send(const uint16_t repeat = kAmcorDefaultRepeat);
|
|
uint8_t calibrate(void) { return _irsend.calibrate(); }
|
|
#endif // SEND_AMCOR
|
|
void begin();
|
|
static uint8_t calcChecksum(const uint8_t state[],
|
|
const uint16_t length = kAmcorStateLength);
|
|
static bool validChecksum(const uint8_t state[],
|
|
const uint16_t length = kAmcorStateLength);
|
|
void setPower(const bool state);
|
|
bool getPower();
|
|
void on();
|
|
void off();
|
|
void setTemp(const uint8_t temp);
|
|
uint8_t getTemp();
|
|
void setMax(const bool on);
|
|
bool getMax(void);
|
|
void setFan(const uint8_t speed);
|
|
uint8_t getFan();
|
|
void setMode(const uint8_t mode);
|
|
uint8_t getMode();
|
|
uint8_t* getRaw();
|
|
void setRaw(const uint8_t state[]);
|
|
uint8_t convertMode(const stdAc::opmode_t mode);
|
|
uint8_t convertFan(const stdAc::fanspeed_t speed);
|
|
static stdAc::opmode_t toCommonMode(const uint8_t mode);
|
|
static stdAc::fanspeed_t toCommonFanSpeed(const uint8_t speed);
|
|
stdAc::state_t toCommon(void);
|
|
String toString();
|
|
#ifndef UNIT_TEST
|
|
|
|
private:
|
|
IRsend _irsend;
|
|
#else
|
|
IRsendTest _irsend;
|
|
#endif
|
|
uint8_t remote_state[kAmcorStateLength]; // The state of the IR remote.
|
|
void checksum(void);
|
|
};
|
|
#endif // IR_AMCOR_H_
|