mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-01 23:29:28 +01:00
Restored and updated SoftwareSerialExample -- really this time!
This commit is contained in:
parent
bc504ab579
commit
c8eabc1cf9
@ -0,0 +1,21 @@
|
|||||||
|
#include <SoftwareSerial.h>
|
||||||
|
|
||||||
|
SoftwareSerial mySerial(2, 3);
|
||||||
|
|
||||||
|
void setup()
|
||||||
|
{
|
||||||
|
Serial.begin(57600);
|
||||||
|
Serial.println("Goodnight moon!");
|
||||||
|
|
||||||
|
// set the data rate for the SoftwareSerial port
|
||||||
|
mySerial.begin(4800);
|
||||||
|
mySerial.println("Hello, world?");
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop() // run over and over
|
||||||
|
{
|
||||||
|
if (mySerial.available())
|
||||||
|
Serial.write(mySerial.read());
|
||||||
|
if (Serial.available())
|
||||||
|
mySerial.write(Serial.read());
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user