Koduino
Arduino IDE Setup

1. Get the IDE

2. Get the code

3. Write and upload your first program

// Change to whatever pin an LED is connected to
const int led = PC13;
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, TOGGLE);
delay(1000);
}