I'm new to ESP01 developing and i'm facing a bit of a problem here .
I'm connecting my ESP to the PC through a USB/TTL 3v3 adapter without Reset and DTR but i'm sure i made the correct connections because i managed to get answer from the ESP and to upload my own code using the Arduino IDE.
My Problem is the following :
This Code Works
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
Serial.write("hello");
delay(5000);
}
But this one shows nothing on the Serial Monitor :
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.write("hello");
}
void loop() {
}
Also i tried the HelloServer Exemple , none of the Serial.write Works but i know that the code is working because i managed to find the webpage and see the message displayed.
Help me please and thank you