Skip to content

charlch/ReceiveOnlySoftwareSerial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

ReceiveOnlySoftwareSerial

Disclaimer:

I can take no credit for this code, just copied from https://forum.arduino.cc/index.php?topic=240741.0

Example:

#include <ReceiveOnlySoftwareSerial.h>

ReceiveOnlySoftwareSerial mySerial (3);  // Rx pin

void setup ()
{
  mySerial.begin(115200);
}

int incomingByte = 0;

void loop ()
{
  if (mySerial.available()) {
    incomingByte = mySerial.read();
	
	# Do something with bytes...
	
  }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages