Home automation

Issue:// blink app disconnects within seconds after connecting to wifinetwork
Task attempted: // Home automation using blynk app

Note: Yesterday it worked well fine today i am facing the issue in wifi connectivity
/*
I have attached the code and internet connection issue displayed on serial monitor. please let me know if any one could help me fix it /*************************************************************

#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[] = "xEjBBWKRzvhhzjRe4DR9Px73b87Y_Q6L  ";

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "vija@skyway";
char pass[] = "12345678";

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

  Blynk.begin(auth, ssid, pass);
}

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

Please edit your post to add triple backticks at the beginning and end of your code.
Triple backticks look like this:
```

Pete.

1 Like

Thanks for your response

Thanks pete added three backticks at beginning and end of code

No you haven’t.
You’ve added three characters, which appear to be single quotes, but these don’t make the code display correctly.
I’ve provided three backticks for you to copy and paste, but you’ve not used them.

Please try again.

Pete.

1 Like