#define LED_PIN 2
void setup() {
pinMode(LED_PIN , OUTPUT);
// put your setup code here, to run once:
}
void loop() {
digitalWrite(LED_PIN , HIGH);
delay(1000);
digitalWrite(LED_PIN , LOW);
delay(1000);
// put your main code here, to run repeatedly:
}
To embed this project on your website, copy the following code and paste it into your website's HTML: