blynk & neopixelring & w7500

Fork of WIZwiki-7500_Blynk by IOP

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers BlynkSimpleEthernet2.h Source File

BlynkSimpleEthernet2.h

Go to the documentation of this file.
00001 /**
00002  * @file       BlynkSimpleEthernet2.h
00003  * @author     Volodymyr Shymanskyy
00004  * @license    This project is released under the MIT License (MIT)
00005  * @copyright  Copyright (c) 2015 Volodymyr Shymanskyy
00006  * @date       Jan 2016
00007  * @brief
00008  *
00009  */
00010 
00011 #ifndef BlynkSimpleEthernet2_h
00012 #define BlynkSimpleEthernet2_h
00013 
00014 #ifndef BLYNK_INFO_CONNECTION
00015 #define BLYNK_INFO_CONNECTION "W5500"
00016 #endif
00017 
00018 #include <TCPSocketConnection.h>
00019 #include <Adapters/BlynkEthernet.h >
00020 
00021 static TCPSocketConnection _blynkEthernetClient;
00022 static BlynkMbedClient _blynkTransport(_blynkEthernetClient);
00023 BlynkEthernet Blynk(_blynkTransport);
00024 
00025 #include <BlynkWidgets.h >
00026 
00027 #endif