aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/Blink/Blink.ino15
-rw-r--r--examples/Blink/Makefile4
-rw-r--r--examples/BlinkNetworkRPi/ATtinyBlink.ino8
3 files changed, 13 insertions, 14 deletions
diff --git a/examples/Blink/Blink.ino b/examples/Blink/Blink.ino
index 1953c39..6a8ba71 100644
--- a/examples/Blink/Blink.ino
+++ b/examples/Blink/Blink.ino
@@ -1,19 +1,18 @@
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
-
This example code is in the public domain.
*/
void setup() {
- // initialize the digital pin as an output.
- // Pin 13 has an LED connected on most Arduino boards:
- pinMode(13, OUTPUT);
+ // initialize the digital pin as an output.
+ // Pin 13 has an LED connected on most Arduino boards:
+ pinMode(13, OUTPUT);
}
void loop() {
- digitalWrite(13, HIGH); // set the LED on
- delay(1000); // wait for a second
- digitalWrite(13, LOW); // set the LED off
- delay(1000); // wait for a second
+ digitalWrite(13, HIGH); // set the LED on
+ delay(1000); // wait for a second
+ digitalWrite(13, LOW); // set the LED off
+ delay(1000); // wait for a second
}
diff --git a/examples/Blink/Makefile b/examples/Blink/Makefile
index 7678e9b..f9d5cf4 100644
--- a/examples/Blink/Makefile
+++ b/examples/Blink/Makefile
@@ -1,5 +1,5 @@
+# Arduino Make file. Refer to https://github.com/sudar/Arduino-Makefile
+
BOARD_TAG = uno
-ARDUINO_LIBS =
include ../../Arduino.mk
-
diff --git a/examples/BlinkNetworkRPi/ATtinyBlink.ino b/examples/BlinkNetworkRPi/ATtinyBlink.ino
index 1d1566d..6e3c27d 100644
--- a/examples/BlinkNetworkRPi/ATtinyBlink.ino
+++ b/examples/BlinkNetworkRPi/ATtinyBlink.ino
@@ -1,17 +1,17 @@
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
-
+
This example code is in the public domain.
*/
-
+
// Connect a LED to Pin 3. It might be different in different ATtiny micro controllers
int led = 3;
// the setup routine runs once when you press reset:
-void setup() {
+void setup() {
// initialize the digital pin as an output.
- pinMode(led, OUTPUT);
+ pinMode(led, OUTPUT);
}
// the loop routine runs over and over again forever: