File indexing completed on 2024-04-28 04:34:24

0001 #include "Arduino.h"
0002 
0003 void setup() {
0004     // initialize digital pin 13 as an output.
0005     pinMode(13, OUTPUT);
0006 }
0007 
0008 void loop() {
0009     // put your main code here, to run repeatedly:
0010     digitalWrite(13, HIGH);   // turn the LED on (HIGH is the voltage level)
0011     delay(1000);              // wait for a second
0012     digitalWrite(13, LOW);    // turn the LED off by making the voltage LOW
0013     delay(1000);              // wait for a second
0014 }