entonces deberia armar en base a este codigo
#include <SoftwareSerial.h>
const int Rx = 2;
const int Tx = 3;
SoftwareSerial mySerial (Rx, Tx);
void setup() {
pinMode (Rx, INPUT);
pinMode (Tx, OUTPUT);
mySerial.begin (9600);
}
void loop() {
mySerial.println (Rx);
}