ESP-01 and Serial1. read prints €€èèàààà
Posted: Sun Jun 28, 2015 8:39 am
Hello I'm a really supernoooOOob To test my ESP-01 I've this:
void setup() {
Serial1.begin(9600);//58824
Serial.begin(9600);//115200
}
void loop() {
while(Serial1.available()) Serial.write(Serial1.read());
while(Serial.available()) Serial1.write(Serial.read());
}
But output is something as:
{訜Çr©çšÆæåpC„C!sgüàðððÀ˜˜ØØüÀà
instead of the right output.
Why?! (
void setup() {
Serial1.begin(9600);//58824
Serial.begin(9600);//115200
}
void loop() {
while(Serial1.available()) Serial.write(Serial1.read());
while(Serial.available()) Serial1.write(Serial.read());
}
But output is something as:
{訜Çr©çšÆæåpC„C!sgüàðððÀ˜˜ØØüÀà
instead of the right output.
Why?! (