Lab 1- Submission
Description
Basic blink circuit
Components Used
- Arduino UNO
- 220 Ohm Resistor
- Blue LED
Code
int led = 13;
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(1000);
}
Images
- Login to post comments
Drupal theme by Kiwi Themes.