Skip to content

Instantly share code, notes, and snippets.

View Apoorva229's full-sized avatar

Fuzzy Robot Apoorva229

View GitHub Profile
@Apoorva229
Apoorva229 / LED.c
Created October 7, 2025 15:18
Code to blink an LED using Arduino UNO
const int l1 = 7;
void setup(){
pinMode(l1,OUTPUT);
}
void loop() {
digitalWrite(l1,HIGH);
delay(1000);
digitalWrite(l1,LOW);
delay(1000);
}