mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-14 18:46:59 +00:00
26 lines
518 B
C
26 lines
518 B
C
/**
|
|
* @file BlynkSimpleStream.h
|
|
* @author Volodymyr Shymanskyy
|
|
* @license This project is released under the MIT License (MIT)
|
|
* @copyright Copyright (c) 2016 Volodymyr Shymanskyy
|
|
* @date Mar 2016
|
|
* @brief
|
|
*
|
|
*/
|
|
|
|
#ifndef BlynkSimpleStream_h
|
|
#define BlynkSimpleStream_h
|
|
|
|
#ifndef BLYNK_INFO_CONNECTION
|
|
#define BLYNK_INFO_CONNECTION "Stream"
|
|
#endif
|
|
|
|
#include <Adapters/BlynkSerial.h>
|
|
|
|
BlynkTransportStream _blynkTransport;
|
|
BlynkStream Blynk(_blynkTransport);
|
|
|
|
#include <BlynkWidgets.h>
|
|
|
|
#endif
|