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); }
Is this a good/useful/informative piece of content to include in the project? Have your say!
You must login before you can post a comment. .
Content Rating
Is this a good/useful/informative piece of content to include in the project? Have your say!
You must login before you can post a comment. .