// UH 5COM2004
// Practical 1 - Blinking LED
// 1.1 TODO Blink the onboard LED
// blink LED_BUILTIN every second
// using "wokwi-esp32-devkit-v1" which has a built in led on pin #2
void setup() {
// put your setup code here, to run once:
pinMode(2, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(2, HIGH);
delay(1000);
digitalWrite(2, LOW);
delay(1000);
}