Add the following snippet to your HTML:
How to bright an LED using an Arduino.
Read up about this project on
How to bright an led using Arduino. It is my first project. It is easy and simple just buy, connect, code and enjoy
void setup() { pinMode(12, OUTPUT); } void loop() { digitalWrite(12, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(12, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second }
Comments