D
Size: a a a
D
D
ВЯ
D
D
g
S
S
S
I
EG
E
Serial2.begin(115200, SERIAL_8N1, 12, 13);В итоге терминал забивается каким-то мусором
if (Serial2.available())
{
int inByte = Serial2.read();
Serial.write(inByte);
}
s
ИА
#include <HardwareSerial.h>
...
const uint8_t RX = 25;
const uint8_t TX = 26;
...
HardwareSerial SerialExample(1);
...
SerialExample.begin(9600, SERIAL_8N1, RX, TX);
E
E
ИА
E
E