Initial Commit from upstream - v1.4

This commit is contained in:
2019-07-04 09:23:44 -07:00
commit 833823dbeb
30 changed files with 5391 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
#include <NewSoftSerial.h>
NewSoftSerial mySerial(2, 3);
void setup()
{
Serial.begin(57600);
Serial.println("Goodnight moon!");
// set the data rate for the NewSoftSerial port
mySerial.begin(4800);
mySerial.println("Hello, world?");
}
void loop() // run over and over again
{
if (mySerial.available()) {
Serial.print((char)mySerial.read());
}
if (Serial.available()) {
mySerial.print((char)Serial.read());
}
}