Skip to content

Commit 59e18da

Browse files
author
Federico Fissore
committed
Run new astyle formatter against all the examples
1 parent c43a1a3 commit 59e18da

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

examples/MultipleBlinks/MultipleBlinks.ino

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
Multiple Blinks
33
44
Demonstrates the use of the Scheduler library for the Arduino Due
5-
5+
66
Hardware required :
77
* LEDs connected to pins 11, 12, and 13
88
99
created 8 Oct 2012
1010
by Cristian Maglie
11-
Modified by
11+
Modified by
1212
Scott Fitzgerald 19 Oct 2012
13-
13+
1414
This example code is in the public domain
15-
15+
1616
http://arduino.cc/en/Tutorial/MultipleBlinks
1717
*/
1818

@@ -64,11 +64,11 @@ void loop2() {
6464
void loop3() {
6565
if (Serial.available()) {
6666
char c = Serial.read();
67-
if (c=='0') {
67+
if (c == '0') {
6868
digitalWrite(led3, LOW);
6969
Serial.println("Led turned off!");
7070
}
71-
if (c=='1') {
71+
if (c == '1') {
7272
digitalWrite(led3, HIGH);
7373
Serial.println("Led turned on!");
7474
}

0 commit comments

Comments
 (0)