Files
ESPEasy/lib/Blynk/src_off/WidgetLED.h
T
2019-04-05 13:43:51 +03:00

46 lines
748 B
C++

/**
* @file WidgetLED.h
* @author Volodymyr Shymanskyy
* @license This project is released under the MIT License (MIT)
* @copyright Copyright (c) 2015 Volodymyr Shymanskyy
* @date Apr 2015
* @brief
*/
#ifndef WidgetLED_h
#define WidgetLED_h
#include <Blynk/BlynkWidgetBase.h>
class WidgetLED
: public BlynkWidgetBase
{
public:
WidgetLED(uint8_t vPin)
: BlynkWidgetBase(vPin)
, mValue(0)
{}
uint8_t getValue() const {
return mValue;
}
void setValue(uint8_t value) {
mValue = value;
Blynk.virtualWrite(mPin, value);
}
void on() {
setValue(255);
}
void off() {
setValue(0);
}
private:
uint8_t mValue;
};
#endif