Skip to content
New issue

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

esp8266 12E wifi station mode #19

Open
dprem06 opened this issue Feb 14, 2019 · 0 comments
Open

esp8266 12E wifi station mode #19

dprem06 opened this issue Feb 14, 2019 · 0 comments

Comments

@dprem06
Copy link

dprem06 commented Feb 14, 2019

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(".");
}

     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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant