SOFTUART

Photo of author

By Jackson Taylor

#include <SoftwareSerial.h>
                     SoftwareSerial mySerial(10, 11); // RX, TX
                     void setup()
                     {
                       mySerial.begin(9600);
                       mySerial.println("Hello, world?");
                     }
                     void loop()
                     {
                       if (mySerial.available())
                         mySerial.write(mySerial.read());
                     }
See also
PIC16F877A-HITECH C-- TIMER 0,1,2

Revive Your Dead Electronics

Got a drawer full of dead gadgets or a failing car battery? Instead of paying a premium for replacements, use this simple trick to easily recondition them right from home.

See How It Works