//setup function runs once when you press reset or power the board
void setup() {
// put your setup code here, to run once:
//adding a part to wokwi ardunio simulatro click on +
//can add an element in the diagram json file
//can move parts on the diagram jsaon file
//initalize digital pin Led_Buliitin as an output
pinMode(LED_BUILTIN, OUTPUT);
}
//loop code runs over and over agian forever
void loop() {
// put your main code here, to run repeatedly, (High is the voltage level)
digitalWrite(LED_BUILTIN, HIGH);
delay(1000); //wait for a second
digitalWrite(LED_BUILTIN, LOW); //turn the led off by making the voltage lowe
delay(1000); //wait for a second
}