I bought 4x ESP-01 8266, while using them with an Arduino, and sending a basic "AT" command, I don't receive anything ! I used all of them and I got the same issue, help me please !
#include <SoftwareSerial.h>
void setup()
{
Serial.begin(115200);
}
void loop()
{
esp8266.println("AT");
if(esp8266.available())
{
while(esp8266.available())
{
char c = esp8266.read(); // read the next character.
Serial.print(c);
}
}
}