{\rtf1\ansi\ansicpg1252\cocoartf1404\cocoasubrtf470 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \paperw11900\paperh16840\margl1440\margr1440\vieww10800\viewh8400\viewkind0 \pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardirnatural\partightenfactor0 \f0\fs24 \cf0 \ #define BLYNK_PRINT Serial // Enables Serial Monitor\ #include \ #include \ #include // This part is for Ethernet stuff\ \ char auth[] = "YourAuthToken"; // Put your Auth Token here. (see Step 3 above)\ \ void setup()\ \{\ Serial.begin(9600); // See the connection status in Serial Monitor\ Blynk.begin(auth); // Here your Arduino connects to the Blynk Cloud.\ \}\ \ void loop()\ \{\ Blynk.run(); // All the Blynk Magic happens here...\ \ // You can inject your own code or combine it with other sketches.\ // Check other examples on how to communicate with Blynk. Remember\ // to avoid delay() function!\ \}\ }