Add the following snippet to your HTML:<iframe frameborder='0' height='385' scrolling='no' src='https://www.hackster.io/mohss/blink-2535ad/embed' width='350'></iframe>
Easy blink
Read up about this project on
I made it for the new Arduino users
void setup() { pinMode(13,OUTPUT); } void loop() { digitalWrite(13,HIGH); delay(1000); digitalWrite(13,LOW); delay(1000); }
Please log in or sign up to comment.
Comments
Please log in or sign up to comment.