We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My Code: ( I wrote in Arduino IDE) My board Selection is -> GenericEsp8266
#include <ESP8266WiFi.h> void setup() { // put your setup code here, to run once: Serial.begin(9600); Serial.println(" i am started");
WiFi.begin("prem@mpbros","prem1234"); while (WiFi.status() != WL_CONNECTED) { delay(1000); Serial.print("."); }
if (WiFi.status() == WL_CONNECTED)
{ Serial.println("WiFi connected"); Serial.println("IP address:"); Serial.println(WiFi.localIP());
Serial.println("Mac Id:"); Serial.println(WiFi.macAddress()); } }
void loop() { // put your main code here, to run repeatedly:
}
Its not connected its .........................(untill 1 hour no connectivity) please help me how to do this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Esp8266 12 E Doit chip wifi is not connected.
My Code: ( I wrote in Arduino IDE)
My board Selection is -> GenericEsp8266
#include <ESP8266WiFi.h>
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.println(" i am started");
WiFi.begin("prem@mpbros","prem1234");
while (WiFi.status() != WL_CONNECTED)
{
delay(1000);
Serial.print(".");
}
{
Serial.println("WiFi connected");
Serial.println("IP address:");
Serial.println(WiFi.localIP());
Serial.println("Mac Id:");
Serial.println(WiFi.macAddress());
}
}
void loop() {
// put your main code here, to run repeatedly:
}
Its not connected its .........................(untill 1 hour no connectivity) please help me how to do this.
The text was updated successfully, but these errors were encountered: