Blynk 1.0 app won't connect

Before creating the topic

  1. Search forum for similar topics
  2. Check http://docs.blynk.cc and http://help.blynk.cc/
  3. Add details :
    • Hardware model + communication type. For example: Arduino UNO with Ethernet Shield
    • Smartphone OS (iOS or Android) + version
    • Blynk server or local server
    • Blynk Library version
    • Add your sketch code. :point_up:Code should be formatted as example below.

Simply paste your code between ``` If you don’t format your code, your topic can be deleted by moderators.

#include <ESP8266WiFi.h>

#include <Blynk.h>

#define BLYNK_PRINT Serial

#include <BlynkSimpleEsp8266.h>

#include <SoftwareSerial.h>

char auth[] = "wgChv3YUpEDnfjpSlqgMSMK0-PIg8aJ5";
char ssid[] = "WiFi-EMR-2.4GHz";                           //WiFi que quiero conectar al Esp8266
char pass[] = "xxxxxxxxx"; 

void setup()
{
  // Debug console
  Serial.begin(921600);
  Blynk.begin(auth, ssid, pass);
}

void loop()
{
  Blynk.run();
}

Why do you have this line…

and this line…

in your sketch?

What does your serial monitor show?

Exactly what hardware are you using?

What Blynk library version are you using?

Pete.