Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 327 Bytes

File metadata and controls

16 lines (14 loc) · 327 Bytes

AVRonly-adjustedRecieveOnlySoftwareSerial

No Arduino Dependencies, Adjust your Port Settings in the .cpp. The pin must be an interrupt pin

Usage:

  #include <ReceiveOnlySoftwareSerial.h>
   ReceiveOnlySoftwareSerial gpsSer;  // RX 
if (gpsSer.available()) {
 char c = gpsSer.read();
}