aboutsummaryrefslogtreecommitdiff
path: root/libraries/SoftwareSerial/examples/SoftwareSerialExample
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/SoftwareSerial/examples/SoftwareSerialExample')
-rw-r--r--libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino12
1 files changed, 6 insertions, 6 deletions
diff --git a/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino b/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino
index f659133..d35303d 100644
--- a/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino
+++ b/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino
@@ -29,8 +29,7 @@
SoftwareSerial mySerial(10, 11); // RX, TX
-void setup()
-{
+void setup() {
// Open serial communications and wait for port to open:
Serial.begin(57600);
while (!Serial) {
@@ -45,11 +44,12 @@ void setup()
mySerial.println("Hello, world?");
}
-void loop() // run over and over
-{
- if (mySerial.available())
+void loop() { // run over and over
+ if (mySerial.available()) {
Serial.write(mySerial.read());
- if (Serial.available())
+ }
+ if (Serial.available()) {
mySerial.write(Serial.read());
+ }
}