RE: Esp8266 nodemcu x

/*************************************************************
Download latest Blynk library here:
Release v1.3.2 · blynkkk/blynk-library · GitHub

Blynk is a platform with iOS and Android apps to control
Arduino, Raspberry Pi and the likes over the Internet.
You can easily build graphic interfaces for all your
projects by simply dragging and dropping widgets.

Downloads, docs, tutorials: http://www.blynk.cc
Sketch generator:           http://examples.blynk.cc
Blynk community:            http://community.blynk.cc
Follow us:                  http://www.fb.com/blynkapp
                            http://twitter.com/blynk_app

Blynk library is licensed under MIT license
This example code is in public domain.


You’ll need:

  • Blynk App (download from AppStore or Google Play)
  • ESP8266 board
  • Decide how to connect to Blynk
    (USB, Ethernet, Wi-Fi, Bluetooth, …)

There is a bunch of great example sketches included to show you how to get
started. Think of them as LEGO bricks and combine them as you wish.
For example, take the Ethernet Shield sketch and combine it with the
Servo example, or choose a USB sketch and add a code from SendData
example.
*************************************************************/

/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial

#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth = “4HXSGBbFaSP8trWNq2SWmZFKPJieUTKv”;

// Your WiFi credentials.
// Set password to “” for open networks.
char ssid = “moudi”;
char pass = “youkoko2010”;

void setup()
{
// Debug console
Serial.begin(9600);

Blynk.begin(auth, ssid, pass);
// You can also specify server:
//Blynk.begin(auth, ssid, pass, “blynk-cloud.com”, 80);
//Blynk.begin(auth, ssid, pass, IPAddress(192,168,1,100), 8080);
}

void loop()
{
Blynk.run();
// 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!
}

___  __          __

/ _ )/ /_ _____ / /__
/ _ / / // / _ / '/
/
//_, /////_
/
__/ v0.6.1 on NodeMCU

[6780] Connecting to blynk-cloud.com:80
[10049] Login timeout
[12049] Connecting to blynk-cloud.com:80
[15064] Login timeout
[17064] Connecting to blynk-cloud.com:80
[20146] Login timeout
[22146] Connecting to blynk-cloud.com:80
[27178] Connecting to blynk-cloud.com:80
[30189] Login timeout
[32189] Connecting to blynk-cloud.com:80
[37213] Connecting to blynk-cloud.com:80
[40233] Login timeout
[42233] Connecting to blynk-cloud.com:80
[47244] Connecting to blynk-cloud.com:80
[50263] Login timeout
[52263] Connecting to blynk-cloud.com:80
[55278] Login timeout
[57278] Connecting to blynk-cloud.com:80
[60296] Login timeout
[62296] Connecting to blynk-cloud.com:80
[65325] Login timeout
[67325] Connecting to blynk-cloud.com:80
[72343] Connecting to blynk-cloud.com:80
[75367] Login timeout
[77367] Connecting to blynk-cloud.com:80
[82385] Connecting to blynk-cloud.com:80
[85406] Login timeout
[87406] Connecting to blynk-cloud.com:80
[92438] Connecting to blynk-cloud.com:80
[95461] Login timeout
[97461] Connecting to blynk-cloud.com:80
[100483] Login timeout
[102483] Connecting to blynk-cloud.com:80
[105497] Login timeout
[107497] Connecting to blynk-cloud.com:80
[110515] Login timeout
[112515] Connecting to blynk-cloud.com:80
[117535] Connecting to blynk-cloud.com:80
[120563] Login timeout
[122563] Connecting to blynk-cloud.com:80
[128246] Connecting to blynk-cloud.com:80
[131367] Login timeout

2 posts were merged into an existing topic: Esp8266 nodemcu x