I’m using WiFi LoRa 32(V3). My sketch works fine and the data go to the serial monitor through USB connection to PuTTY. I would like send the same datas to PuTTY through RX/TX pins using https://www.kubii.com/fr/hub-cables-adaptateurs/1761-cable-usb-vers-ttl-4-pin-kubii-3272496006263.html
I connect TX and RX to 43 and 44
Added to sketch before loop :
#include <HardwareSerial.h>
HardwareSerial SerialPort(2);
And replace Serial.begin(112500); with SerialPort.begin(115200, SERIAL_8N1, 44, 43);
And it don’t work : nothing on PuTTY.
What i’m doing wrong ??
Thanks