Blynk example
Dependents: Blynk_Example_WIZwiki-W7500
Fork of Blynk by
WidgetMap.h
- Committer:
- jcm931213
- Date:
- 2017-08-14
- Revision:
- 17:ba922c4e9aee
- Parent:
- 9:7369ec77a3ea
File content as of revision 17:ba922c4e9aee:
/**
* @file WidgetMap.h
* @author Volodymyr Shymanskyy
* @license This project is released under the MIT License (MIT)
* @copyright Copyright (c) 2016 Volodymyr Shymanskyy
* @date Nov 2016
* @brief
*/
#ifndef WidgetMap_h
#define WidgetMap_h
#include <Blynk/BlynkWidgetBase.h>
class WidgetMap
: public BlynkWidgetBase
{
public:
WidgetMap(uint8_t vPin) : BlynkWidgetBase(vPin) {}
void clear() {
Blynk.virtualWrite(mPin, "clr");
}
template<typename T1, typename T2, typename T3, typename T4>
void location(const T1& index, const T2& lat, const T3& lon, const T4& value) {
Blynk.virtualWrite(mPin, index, lat, lon, value);
}
};
#endif
IOP
