I have L293D shield connected to my arduino UNO and it fills nearly all the digital pins including TX(1) and RX(0) pins. I know this function, but as far as I know, it works for digital pins.
SoftwareSerial NAME(Rx,Tx);
How can I set 2 analog pins as Tx and Rx? I will use them for HC-06.
asked Mar 21, 2020 at 12:06
SoftwareSerial mySerial(A0, A1)
.