Blynk example

Dependents:   Blynk_Example_WIZwiki-W7500

Fork of Blynk by Volodymyr Shymanskyy

WidgetLED.h

Committer:
jcm931213
Date:
2017-08-14
Revision:
17:ba922c4e9aee
Parent:
9:7369ec77a3ea

File content as of revision 17:ba922c4e9aee:

/**
 * @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