From b5a130afb51c971fd7ceca8834b6055f1eada253 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Mon, 6 Jul 2015 15:18:33 +0200 Subject: Examples: mass code format. See example_formatter.conf --- .../examples/SoftwareSerialExample/SoftwareSerialExample.ino | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino') 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()); + } } -- cgit v1.2.3-18-g5258