So you're a Noob? Post your questions here until you graduate! Don't be shy.

User avatar
By elektrolurch
#74703 Hello

I’m a beginner with the ESP82basic and have a Problem with the serial connection.
I have connected the serial interface of my computer to GPIO15 and GPIO13.
The GND is also connected.

With my little program I try to send from the ESP8266 ten times a "7" to the Computer and a led should be blink.

But all tthe times I get a "d“ in my terminalprogramm.
Can someone tell me where my mistake is?

Several baudrate have the same result,

Thanks

Serial2begin 9600,15,13
for i = 1 to 10
io(po,14,1)
delay 100
serial2print "7“
io(po,14,0)
delay 100
nexti
serial2end