Components and supplies
Resistor 100 ohm
LED (generic)
Male/Male Jumper Wires
Arduino UNO
push button
Buzzer
Project description
Code
Downloadable files
circuit_(1)_kuub1G64VR.png
circuit_(1)_kuub1G64VR.png
Comments
Only logged in users can leave comments
moses_shriver
1 Followers
•1 Projects
1
moses_shriver
a year ago
code is as follows: void setup() { pinMode(13, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(13, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second }