Add the following snippet to your HTML:
easy, creative and for begginers.
Read up about this project on
It is about blinking a led with a arduino uno with a simple code.
void setup() { pinMode(13,OUTPUT); } void loop() { digitalWrite(13,HIGH); delay(1000); digitalWrite(13,LOW); delay(1000);
Comments