This is my code. I am tring to make a connection to my wifi through esp8266.
#define DST_IP "192.168.1.5" // my IP
#include <SoftwareSerial.h>
SoftwareSerial mySerial(0, 1);
void setup()
{
Serial.begin(115200);
mySerial.begin(115200);
while (! Serial); // Wait until Serial is ready - Leonardo
Serial.println("AT+RST");
delay(4000);
Serial.println("AT+CWJAP=\"Ahmed\",\"12341234Aass\"");
delay(4000);
if (Serial.find("OK") )
{
Serial.println("1");
}
else
{
Serial.println("0");
}
}
void loop()
{
}
This is the result of my code.
