#include <SoftwareSerial.h>
SoftwareSerial mySerial(5,4);
void setup()
{
Serial.begin(9600);
while (!Serial) {
}
mySerial.begin(9600);
}
void loop()
{
if (mySerial.available())
Serial.write(mySerial.read());
if (Serial.available())
mySerial.write(Serial.read());
}
⸮⸮⸮⸮=!R⸮$A⸮⸮⸮ښ⸮⸮⸮⸮Zښ⸮⸮⸮⸮K⸮⸮χT⸮⸮⸮v⸮X⸮E⸮⸮⸮⸮⸮.⸮⸮|⸮x⸮ڂ⸮Q⸮$҆v⸮⸮
ready
AT
ERROR
My TX pin of Esp8266 is connected to 5 pin and RX pin of esp8266 is connected to 4 pin. And I just directly connected to 3.3 v output of arduino uno for the power source of esp8266. Do I need any external power source or voltage regulator (ex AMS1117) for esp8266? Any help is greatly appreciated. Thanks!