108 lines
3.5 KiB
C++
108 lines
3.5 KiB
C++
// Copyright 2019 crankyoldgit
|
|
|
|
// Supports:
|
|
// Brand: Sharp, Model: LC-52D62U TV
|
|
// Brand: Sharp, Model: AY-ZP40KR A/C
|
|
// Brand: Sharp, Model: AH-AxSAY A/C
|
|
|
|
#ifndef IR_SHARP_H_
|
|
#define IR_SHARP_H_
|
|
|
|
#ifndef UNIT_TEST
|
|
#include <Arduino.h>
|
|
#endif
|
|
#include "IRrecv.h"
|
|
#include "IRremoteESP8266.h"
|
|
#include "IRsend.h"
|
|
#ifdef UNIT_TEST
|
|
#include "IRsend_test.h"
|
|
#endif
|
|
|
|
// Constants
|
|
const uint16_t kSharpAcHdrMark = 3800;
|
|
const uint16_t kSharpAcHdrSpace = 1900;
|
|
const uint16_t kSharpAcBitMark = 470;
|
|
const uint16_t kSharpAcZeroSpace = 500;
|
|
const uint16_t kSharpAcOneSpace = 1400;
|
|
const uint32_t kSharpAcGap = kDefaultMessageGap;
|
|
|
|
const uint8_t kSharpAcAuto = 0b000;
|
|
const uint8_t kSharpAcDry = 0b011;
|
|
const uint8_t kSharpAcCool = 0b010;
|
|
const uint8_t kSharpAcHeat = 0b001;
|
|
const uint8_t kSharpAcMinTemp = 15; // Celsius
|
|
const uint8_t kSharpAcMaxTemp = 30; // Celsius
|
|
const uint8_t kSharpAcFanAuto = 0b010; // 2
|
|
const uint8_t kSharpAcFanMin = 0b100; // 4 (FAN1)
|
|
const uint8_t kSharpAcFanMed = 0b011; // 3 (FAN2)
|
|
const uint8_t kSharpAcFanHigh = 0b101; // 5 (FAN3)
|
|
const uint8_t kSharpAcFanMax = 0b111; // 7 (FAN4)
|
|
const uint8_t kSharpAcByteTemp = 4;
|
|
const uint8_t kSharpAcBytePower = 5;
|
|
const uint8_t kSharpAcBitPowerOffset = 4; // 0b000x0000
|
|
const uint8_t kSharpAcBitPreviousPowerOffset = 5; // 0b00x00000
|
|
const uint8_t kSharpAcByteMode = 6;
|
|
const uint8_t kSharpAcModeSize = 2; // Mask 0b00000011;
|
|
const uint8_t kSharpAcByteFan = kSharpAcByteMode;
|
|
const uint8_t kSharpAcFanOffset = 4; // Mask 0b01110000
|
|
const uint8_t kSharpAcFanSize = 3; // Nr. of Bits
|
|
const uint8_t kSharpAcByteButton = 10;
|
|
const uint8_t kSharpAcButtonOffset = 0;
|
|
const uint8_t kSharpAcButtonSize = 3; // Mask 0b00000xxx
|
|
const uint8_t kSharpAcButtonPowerMode = 0b000; // 0
|
|
const uint8_t kSharpAcButtonTemp = 0b100; // 4
|
|
const uint8_t kSharpAcButtonFan = 0b101; // 5
|
|
|
|
class IRSharpAc {
|
|
public:
|
|
explicit IRSharpAc(const uint16_t pin, const bool inverted = false,
|
|
const bool use_modulation = true);
|
|
|
|
#if SEND_SHARP_AC
|
|
void send(const uint16_t repeat = kSharpAcDefaultRepeat);
|
|
uint8_t calibrate(void) { return _irsend.calibrate(); }
|
|
#endif // SEND_SHARP_AC
|
|
void begin(void);
|
|
void on(void);
|
|
void off(void);
|
|
void setPower(const bool on);
|
|
void setPower(const bool on, const bool prev);
|
|
bool getPower(void);
|
|
void setPreviousPower(const bool on);
|
|
bool getPreviousPower(void);
|
|
void setTemp(const uint8_t temp);
|
|
uint8_t getTemp(void);
|
|
void setFan(const uint8_t fan);
|
|
uint8_t getFan(void);
|
|
void setMode(const uint8_t mode);
|
|
uint8_t getMode(void);
|
|
void setButton(const uint8_t button);
|
|
uint8_t getButton(void);
|
|
uint8_t* getRaw(void);
|
|
void setRaw(const uint8_t new_code[],
|
|
const uint16_t length = kSharpAcStateLength);
|
|
static bool validChecksum(uint8_t state[],
|
|
const uint16_t length = kSharpAcStateLength);
|
|
static uint8_t convertMode(const stdAc::opmode_t mode);
|
|
static 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(void);
|
|
#ifndef UNIT_TEST
|
|
|
|
private:
|
|
IRsend _irsend;
|
|
#else
|
|
IRsendTest _irsend;
|
|
#endif
|
|
// # of bytes per command
|
|
uint8_t remote[kSharpAcStateLength];
|
|
void stateReset(void);
|
|
void checksum(void);
|
|
static uint8_t calcChecksum(uint8_t state[],
|
|
const uint16_t length = kSharpAcStateLength);
|
|
};
|
|
|
|
#endif // IR_SHARP_H_
|