Introduction: Arduino Turn on Led Using Button
const int LED = 9;
const int button=2;
void setup() {
// put your setup code here, to run once:
pinMode(LED,OUTPUT);
pinMode(button,INPUT);
}
void loop() {
// put your main code here, to run repeatedly:
if(digitalRead(button) == HIGH)
{
digitalWrite(LED,HIGH);
}
else{
digitalWrite(LED,LOW);
}
}
Attachments
Step 1: Connections
1. arduino uno,
2. led,
3. button,
4. some jumpers,
5. 10k resistor (optional)