aboutsummaryrefslogtreecommitdiff
path: root/arduino/01-blink-a-led/blink-a-led.md
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2018-04-25 09:21:13 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2018-04-25 09:21:13 +0200
commit4bae244f426a39951f404af8f752f715a151f20e (patch)
tree792b45c2f035a5ae8c974025d9510b730aebe644 /arduino/01-blink-a-led/blink-a-led.md
parent42ec7df723ece5c2c4400d8db24e3a2ac6b826d0 (diff)
downloadiot-workshop-4bae244f426a39951f404af8f752f715a151f20e.tar.gz
iot-workshop-4bae244f426a39951f404af8f752f715a151f20e.tar.bz2
iot-workshop-4bae244f426a39951f404af8f752f715a151f20e.tar.xz
iot-workshop-4bae244f426a39951f404af8f752f715a151f20e.zip
o Renaming arduino to assignments.
Diffstat (limited to 'arduino/01-blink-a-led/blink-a-led.md')
-rw-r--r--arduino/01-blink-a-led/blink-a-led.md39
1 files changed, 0 insertions, 39 deletions
diff --git a/arduino/01-blink-a-led/blink-a-led.md b/arduino/01-blink-a-led/blink-a-led.md
deleted file mode 100644
index f4b3fa1..0000000
--- a/arduino/01-blink-a-led/blink-a-led.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# Assignment: Blink a led
-
-
-## Goal
-
-Check that your local environment is working properly.
-
-## Step 1
-
-Create this schematic:
-
-![](schematic/assignment-1_schem.pdf)
-
-![](schematic/assignment-1_bb.pdf)
-
-The colors on the wires used does not matter. The resistors
-orientation is not important, but the LED's orientation is important.
-
-## Step 2
-
-Implement `setup()` and `loop()`. In `setup()` configure the LED pin and blink the LED in `loop()`.
-
-Use these functions:
-
-~~~ .c++
-
-Serial.begin(115200);
-Serial.println(string);
-
-pinMode(pin, mode);
-digitalWrite(pin, state); // HIGH or LOW
-delay();
-
-~~~
-
-## Tips
-
-* It is useful to print a startup message just to see when the
- application has started.