Arduino Magix Apr 2026

void setup() { pinMode(led, OUTPUT); }

void loop() { digitalWrite(led, HIGH); delay(1000); digitalWrite(led, LOW); delay(1000); } This sketch blinks an LED connected to pin 13 on and off every second.

int led = 13;

By Department

scroll to see all departments
arduino magix

Click to Learn More and Sign Up

ALL Tab Files

We offer free tab files for you to enjoy. Click on one from our archives below. (Our Archive of available titles is always changing so check back often to see more!)

void setup() { pinMode(led, OUTPUT); }

void loop() { digitalWrite(led, HIGH); delay(1000); digitalWrite(led, LOW); delay(1000); } This sketch blinks an LED connected to pin 13 on and off every second.

int led = 13;