добавляет HALightBrightness
This commit is contained in:
@@ -1,14 +1,18 @@
|
||||
#pragma once
|
||||
|
||||
#include <ESP8266WiFi.h>
|
||||
#include <IRremoteESP8266.h>
|
||||
#include <IRsend.h>
|
||||
#include <HALightBrightness.hpp>
|
||||
|
||||
class IRLight {
|
||||
class IRLight: public HALightBrightnessController {
|
||||
private:
|
||||
bool state;
|
||||
short brightness;
|
||||
|
||||
IRsend *irsend;
|
||||
|
||||
const uint16_t rawDataOn[67] = {
|
||||
const uint16_t RDOn[67] = {
|
||||
8980, 4420, 580, 520, 630, 470, 630, 520, 580, 520, 630, 470,
|
||||
630, 520, 580, 520, 630, 1570, 630, 1620, 580, 1620, 630, 1620,
|
||||
580, 1570, 680, 1570, 630, 1570, 630, 1570, 630, 520, 630, 1570,
|
||||
@@ -16,7 +20,7 @@ private:
|
||||
630, 470, 630, 520, 630, 1570, 630, 1570, 630, 1620, 630, 1570,
|
||||
630, 1570, 630, 1570, 680, 1570, 630};
|
||||
|
||||
const uint16_t rawDataOff[67] = {
|
||||
const uint16_t RDOff[67] = {
|
||||
8980, 4370, 680, 420, 730, 420, 680, 420, 680, 420, 730, 420,
|
||||
680, 420, 680, 420, 730, 1470, 730, 1520, 680, 1520, 730, 1470,
|
||||
730, 1470, 730, 1520, 680, 1520, 730, 1470, 730, 420, 680, 470,
|
||||
@@ -24,14 +28,46 @@ private:
|
||||
680, 470, 580, 1620, 630, 470, 630, 1570, 630, 520, 580, 520,
|
||||
630, 1570, 680, 1520, 730, 1520, 680};
|
||||
|
||||
const uint16_t RDCentralButton[67] = {
|
||||
9030, 4320, 680, 470, 630, 470, 680, 420, 680, 470, 630, 470,
|
||||
680, 420, 680, 470, 630, 1570, 680, 1520, 680, 1520, 680, 1520,
|
||||
730, 1520, 680, 1520, 680, 1520, 680, 1570, 680, 420, 680, 1520,
|
||||
680, 470, 680, 1520, 680, 470, 630, 470, 680, 420, 680, 470,
|
||||
630, 470, 630, 470, 680, 1520, 680, 470, 680, 1520, 630, 1570,
|
||||
680, 1520, 680, 1570, 680, 1520, 680};
|
||||
|
||||
const uint16_t RDBrightnessUp[67] = {
|
||||
9080,4270, 730,420, 680,420, 680,420, 730,420, 680,420, 680,420, 730,420,
|
||||
680,1520, 680,1520, 730,1470, 730,1470, 730,1520, 680,1520, 730,1470,
|
||||
730,1520, 680,420, 680,470, 580,1620, 580,520, 630,520, 580,1620, 580,520,
|
||||
630,520, 580,520, 630,1570, 580,570, 580,1570, 630,1620, 630,520, 580,1570,
|
||||
730,1520, 680,1520, 730};
|
||||
|
||||
const uint16_t RDBrightnessDown[67] = {
|
||||
9030, 4320, 630, 520, 630, 470, 630, 470, 630, 520, 630, 470,
|
||||
630, 470, 630, 520, 630, 1570, 630, 1570, 630, 1620, 630, 1570,
|
||||
630, 1570, 630, 1620, 630, 1570, 630, 1570, 630, 470, 680, 470,
|
||||
630, 1570, 630, 1570, 680, 1570, 630, 1570, 630, 470, 680, 470,
|
||||
630, 470, 630, 1570, 680, 470, 630, 470, 630, 470, 680, 470,
|
||||
630, 1570, 630, 1570, 680, 1570, 630};
|
||||
|
||||
public:
|
||||
IRLight(int pin);
|
||||
IRLight(IRsend *irsend);
|
||||
|
||||
void setState(bool state);
|
||||
bool getState();
|
||||
void on();
|
||||
void off();
|
||||
void begin();
|
||||
|
||||
bool getState();
|
||||
void setBrightness(int brightness);
|
||||
int getBrightness();
|
||||
|
||||
void brightnessUp();
|
||||
void brightnessDown();
|
||||
int getBrightnessScale();
|
||||
|
||||
void begin();
|
||||
|
||||
~IRLight();
|
||||
};
|
Reference in New Issue
Block a user