8 years, 3 months ago.

Do you have example ?

Do you have example usage of SoftSerial library ?

1 Answer

8 years, 3 months ago.

SoftSerial can be used just like normal Serial, only it is advicable to not run it at a very high speed.

Btw, that library you link is a one-on-one copy of the original one: https://developer.mbed.org/users/Sissors/code/SoftSerial/

There is also the BufferedSoftSerial version, which uses SoftSerial but adds extra buffers just like the normal BufferedSerial does. Takes more memory, but allows your program to continue running when SoftSerial is busy: https://developer.mbed.org/users/Sissors/code/BufferedSoftSerial/