01
Connect
Plug in the board.
Arduino learning platform
Write Arduino code, compile it in the cloud, and flash it from the browser.
int led = 13;
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH);
delay(500);
digitalWrite(led, LOW);
delay(500);
}01
Plug in the board.
02
Write the sketch.
03
Build on AWS.
04
Send it over serial.