Back to Parent

const int LEDPIN0 = D0;

void setup() {
    pinMode(LEDPIN0, OUTPUT);
}

void loop() {
    //First Sketch: Making an LED Blink
    //Ex.1
     digitalWrite(LEDPIN0, HIGH);
     delay(3000);
     digitalWrite(LEDPIN0, LOW);
     delay(3000);
}
Click to Expand

Content Rating

Is this a good/useful/informative piece of content to include in the project? Have your say!

0