// A simple way of blinking an LED using only 2 functions.
// Created by kidkara
// Please take note of the LED pin connection to Arduino pin.
void setup() {
}
void loop() {
pinMode(7, INPUT);
delay(800);
pinMode(7, OUTPUT);
}
// A simple way of blinking an LED using only 2 functions.
// Created by kidkara
// Please take note of the LED pin connection to Arduino pin.
void setup() {
}
void loop() {
pinMode(7, INPUT);
delay(800);
pinMode(7, OUTPUT);
}