ปัญหาการเชื่อมต่อแอพ Blynk ไม่ได้

ช่วยหาวิธีแก้ให้หน่อยครับ
คือเขียนโปรแกรมแอพ Blynk เบื้องต้นแล้วครับ พอ Run แล้วมันผ่านครับแต่ไม่สามารถเชื่อมต่อกับแอพได้
//โค้ดทีเอาไป Run ครับ
#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[] = "99880b0b42524859897abffd1f9c0b99";

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "Strong26";
char pass[] = "02260910";

WidgetLED led1(V1);

BlynkTimer timer;

// V1 LED Widget is blinking
void blinkLedWidget()
{
  if (led1.getValue()) {
    led1.off();
    Serial.println("LED on V1: off");
  } else {
    led1.on();
    Serial.println("LED on V1: on");
  }
}

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

  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);

  timer.setInterval(1000L, blinkLedWidget);
}

void loop()
{
  Blynk.run();
  timer.run();
}
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่