mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-14 18:46:59 +00:00
22 lines
442 B
C
22 lines
442 B
C
/**
|
|
* @file BlynkSimpleWiFly.h
|
|
* @author Volodymyr Shymanskyy
|
|
* @license This project is released under the MIT License (MIT)
|
|
* @copyright Copyright (c) 2015 Volodymyr Shymanskyy
|
|
* @date Jan 2015
|
|
* @brief
|
|
*
|
|
*/
|
|
|
|
#ifndef BlynkSimpleWiFly_h
|
|
#define BlynkSimpleWiFly_h
|
|
|
|
#include <Adapters/BlynkWiFly.h>
|
|
|
|
static BlynkTransportWiFly _blynkTransport;
|
|
BlynkWiFly Blynk(_blynkTransport);
|
|
|
|
#include <BlynkWidgets.h>
|
|
|
|
#endif
|