feat: 全量同步 254 个常用的 Arduino 扩展库文件
This commit is contained in:
@@ -0,0 +1,180 @@
|
||||
// Copyright 2017 Jonny Graham
|
||||
// Copyright 2018-2019 David Conran
|
||||
|
||||
/// @file
|
||||
/// @brief Support for Fujitsu A/C protocols.
|
||||
/// Fujitsu A/C support added by Jonny Graham
|
||||
|
||||
// Supports:
|
||||
// Brand: Fujitsu, Model: AR-RAH2E remote
|
||||
// Brand: Fujitsu, Model: ASYG30LFCA A/C (ARRAH2E)
|
||||
// Brand: Fujitsu, Model: AR-DB1 remote
|
||||
// Brand: Fujitsu, Model: AST9RSGCW A/C (ARDB1)
|
||||
// Brand: Fujitsu, Model: AR-REB1E remote
|
||||
// Brand: Fujitsu, Model: ASYG7LMCA A/C (ARREB1E)
|
||||
// Brand: Fujitsu, Model: AR-RAE1E remote
|
||||
// Brand: Fujitsu, Model: AGTV14LAC A/C
|
||||
// Brand: Fujitsu, Model: AR-RAC1E remote
|
||||
// Brand: Fujitsu, Model: ASTB09LBC A/C
|
||||
// Brand: Fujitsu, Model: AR-RY4 remote
|
||||
// Brand: Fujitsu General, Model: AR-JW2 remote
|
||||
// Brand: Fujitsu, Model: AR-DL10 remote
|
||||
// Brand: Fujitsu, Model: ASU30C1 A/C
|
||||
|
||||
#ifndef IR_FUJITSU_H_
|
||||
#define IR_FUJITSU_H_
|
||||
|
||||
#define __STDC_LIMIT_MACROS
|
||||
#include <stdint.h>
|
||||
#ifdef ARDUINO
|
||||
#include <Arduino.h>
|
||||
#endif
|
||||
#include "IRrecv.h"
|
||||
#include "IRremoteESP8266.h"
|
||||
#include "IRsend.h"
|
||||
#ifdef UNIT_TEST
|
||||
#include "IRsend_test.h"
|
||||
#endif
|
||||
|
||||
|
||||
// Constants
|
||||
const uint8_t kFujitsuAcModeAuto = 0x00;
|
||||
const uint8_t kFujitsuAcModeCool = 0x01;
|
||||
const uint8_t kFujitsuAcModeDry = 0x02;
|
||||
const uint8_t kFujitsuAcModeFan = 0x03;
|
||||
const uint8_t kFujitsuAcModeHeat = 0x04;
|
||||
|
||||
const uint8_t kFujitsuAcCmdStayOn = 0x00; // b00000000
|
||||
const uint8_t kFujitsuAcCmdTurnOn = 0x01; // b00000001
|
||||
const uint8_t kFujitsuAcCmdTurnOff = 0x02; // b00000010
|
||||
const uint8_t kFujitsuAcCmdEcono = 0x09; // b00001001
|
||||
const uint8_t kFujitsuAcCmdPowerful = 0x39; // b00111001
|
||||
const uint8_t kFujitsuAcCmdStepVert = 0x6C; // b01101100
|
||||
const uint8_t kFujitsuAcCmdToggleSwingVert = 0x6D; // b01101101
|
||||
const uint8_t kFujitsuAcCmdStepHoriz = 0x79; // b01111001
|
||||
const uint8_t kFujitsuAcCmdToggleSwingHoriz = 0x7A; // b01111010
|
||||
|
||||
const uint8_t kFujitsuAcFanAuto = 0x00;
|
||||
const uint8_t kFujitsuAcFanHigh = 0x01;
|
||||
const uint8_t kFujitsuAcFanMed = 0x02;
|
||||
const uint8_t kFujitsuAcFanLow = 0x03;
|
||||
const uint8_t kFujitsuAcFanQuiet = 0x04;
|
||||
const uint8_t kFujitsuAcFanSize = 3; // Bits
|
||||
|
||||
const uint8_t kFujitsuAcMinTemp = 16; // 16C
|
||||
const uint8_t kFujitsuAcMaxTemp = 30; // 30C
|
||||
|
||||
const uint8_t kFujitsuAcSwingSize = 2;
|
||||
const uint8_t kFujitsuAcSwingOff = 0x00;
|
||||
const uint8_t kFujitsuAcSwingVert = 0x01;
|
||||
const uint8_t kFujitsuAcSwingHoriz = 0x02;
|
||||
const uint8_t kFujitsuAcSwingBoth = 0x03;
|
||||
|
||||
const uint8_t kFujitsuAcOutsideQuietOffset = 7;
|
||||
const uint8_t kFujitsuAcCleanOffset = 3;
|
||||
const uint8_t kFujitsuAcFilterOffset = 3;
|
||||
|
||||
// Legacy defines.
|
||||
#define FUJITSU_AC_MODE_AUTO kFujitsuAcModeAuto
|
||||
#define FUJITSU_AC_MODE_COOL kFujitsuAcModeCool
|
||||
#define FUJITSU_AC_MODE_DRY kFujitsuAcModeDry
|
||||
#define FUJITSU_AC_MODE_FAN kFujitsuAcModeFan
|
||||
#define FUJITSU_AC_MODE_HEAT kFujitsuAcModeHeat
|
||||
#define FUJITSU_AC_CMD_STAY_ON kFujitsuAcCmdStayOn
|
||||
#define FUJITSU_AC_CMD_TURN_ON kFujitsuAcCmdTurnOn
|
||||
#define FUJITSU_AC_CMD_TURN_OFF kFujitsuAcCmdTurnOff
|
||||
#define FUJITSU_AC_CMD_STEP_HORIZ kFujitsuAcCmdStepHoriz
|
||||
#define FUJITSU_AC_CMD_STEP_VERT kFujitsuAcCmdStepVert
|
||||
#define FUJITSU_AC_FAN_AUTO kFujitsuAcFanAuto
|
||||
#define FUJITSU_AC_FAN_HIGH kFujitsuAcFanHigh
|
||||
#define FUJITSU_AC_FAN_MED kFujitsuAcFanMed
|
||||
#define FUJITSU_AC_FAN_LOW kFujitsuAcFanLow
|
||||
#define FUJITSU_AC_FAN_QUIET kFujitsuAcFanQuiet
|
||||
#define FUJITSU_AC_MIN_TEMP kFujitsuAcMinTemp
|
||||
#define FUJITSU_AC_MAX_TEMP kFujitsuAcMaxTemp
|
||||
#define FUJITSU_AC_SWING_OFF kFujitsuAcSwingOff
|
||||
#define FUJITSU_AC_SWING_VERT kFujitsuAcSwingVert
|
||||
#define FUJITSU_AC_SWING_HORIZ kFujitsuAcSwingHoriz
|
||||
#define FUJITSU_AC_SWING_BOTH kFujitsuAcSwingBoth
|
||||
|
||||
/// Class for handling detailed Fujitsu A/C messages.
|
||||
class IRFujitsuAC {
|
||||
public:
|
||||
explicit IRFujitsuAC(const uint16_t pin,
|
||||
const fujitsu_ac_remote_model_t model = ARRAH2E,
|
||||
const bool inverted = false,
|
||||
const bool use_modulation = true);
|
||||
void setModel(const fujitsu_ac_remote_model_t model);
|
||||
fujitsu_ac_remote_model_t getModel(void);
|
||||
void stateReset(void);
|
||||
#if SEND_FUJITSU_AC
|
||||
void send(const uint16_t repeat = kFujitsuAcMinRepeat);
|
||||
/// Run the calibration to calculate uSec timing offsets for this platform.
|
||||
/// @return The uSec timing offset needed per modulation of the IR Led.
|
||||
/// @note This will produce a 65ms IR signal pulse at 38kHz.
|
||||
/// Only ever needs to be run once per object instantiation, if at all.
|
||||
int8_t calibrate(void) { return _irsend.calibrate(); }
|
||||
#endif // SEND_FUJITSU_AC
|
||||
void begin(void);
|
||||
void stepHoriz(void);
|
||||
void toggleSwingHoriz(const bool update = true);
|
||||
void stepVert(void);
|
||||
void toggleSwingVert(const bool update = true);
|
||||
void setCmd(const uint8_t cmd);
|
||||
uint8_t getCmd(const bool raw = false);
|
||||
void setTemp(const uint8_t temp);
|
||||
uint8_t getTemp(void);
|
||||
void setFanSpeed(const uint8_t fan);
|
||||
uint8_t getFanSpeed(void);
|
||||
void setMode(const uint8_t mode);
|
||||
uint8_t getMode(void);
|
||||
void setSwing(const uint8_t mode);
|
||||
uint8_t getSwing(const bool raw = false);
|
||||
uint8_t* getRaw(void);
|
||||
bool setRaw(const uint8_t newState[], const uint16_t length);
|
||||
uint8_t getStateLength(void);
|
||||
static bool validChecksum(uint8_t* state, const uint16_t length);
|
||||
void setPower(const bool on);
|
||||
void off(void);
|
||||
void on(void);
|
||||
bool getPower(void);
|
||||
void setClean(const bool on);
|
||||
bool getClean(const bool raw = false);
|
||||
void setFilter(const bool on);
|
||||
bool getFilter(const bool raw = false);
|
||||
void setOutsideQuiet(const bool on);
|
||||
|
||||
bool getOutsideQuiet(const bool raw = false);
|
||||
|
||||
uint8_t convertMode(const stdAc::opmode_t mode);
|
||||
uint8_t convertFan(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; ///< Instance of the IR send class
|
||||
#else
|
||||
/// @cond IGNORE
|
||||
IRsendTest _irsend; ///< Instance of the testing IR send class
|
||||
/// @endcond
|
||||
#endif
|
||||
uint8_t remote_state[kFujitsuAcStateLength]; ///< The state of the IR remote.
|
||||
uint8_t _temp;
|
||||
uint8_t _fanSpeed;
|
||||
uint8_t _mode;
|
||||
uint8_t _swingMode;
|
||||
uint8_t _cmd;
|
||||
fujitsu_ac_remote_model_t _model;
|
||||
uint8_t _state_length;
|
||||
uint8_t _state_length_short;
|
||||
bool _outsideQuiet;
|
||||
bool _clean;
|
||||
bool _filter;
|
||||
void buildState(void);
|
||||
void buildFromState(const uint16_t length);
|
||||
};
|
||||
|
||||
#endif // IR_FUJITSU_H_
|
||||
Reference in New Issue
Block a user