aboutsummaryrefslogtreecommitdiff
path: root/examples/ATtinyBlink/ATtinyBlink.ino
diff options
context:
space:
mode:
authorSudar <sudar@sudarmuthu.com>2013-06-09 17:20:05 +0530
committerSudar <sudar@sudarmuthu.com>2013-06-09 17:20:05 +0530
commit675927053720fb8e96c96006ee9a4db095e0adc2 (patch)
tree12c0aea14ef740cc3db123e814c1cfa9162d0d73 /examples/ATtinyBlink/ATtinyBlink.ino
parent365118e6a512670a0781d9f32e2290e3b283270a (diff)
Added example to show how to program using Arduino as ISP. Fixes #55
Diffstat (limited to 'examples/ATtinyBlink/ATtinyBlink.ino')
-rw-r--r--examples/ATtinyBlink/ATtinyBlink.ino23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/ATtinyBlink/ATtinyBlink.ino b/examples/ATtinyBlink/ATtinyBlink.ino
new file mode 100644
index 0000000..1d1566d
--- /dev/null
+++ b/examples/ATtinyBlink/ATtinyBlink.ino
@@ -0,0 +1,23 @@
+/*
+ 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() {
+ // initialize the digital pin as an output.
+ pinMode(led, OUTPUT);
+}
+
+// the loop routine runs over and over again forever:
+void loop() {
+ digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
+ delay(1000); // wait for a second
+ digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
+ delay(1000); // wait for a second
+}