/*
Blink
// note ************* Disclaimer and Warning*************** dont copy paste any online site and youtube and other
// www.mobotics.us - shop no 3 Mobotics, View Estate, Law Gate Rd, Maheru, Punjab 144411 contact us 9878776520 9988226597
//designs by Tarjinder Tarun
//useing wokwi simulator https://wokwi.com/projects/364315834297268225
// do not use any site and youtube. only for students if use you are face copyright issue
// any facing ishu vist us
Turns an LED on for one second, then off for one second, repeatedly.
www.mobotics.us
This example code is in the public domain.
https:/https://mtforums.blogspot.com/BuiltInExamplesBlink
*/
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(500); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(500); // wait for a second
}