Introduction
The Arduino IDE isn't the only platform to program your EagLED.
In this guide, learn to set up the EagLED with Arduino Create, a one-stop shop and an integrated online platform that will enable you to write code, access content, configure boards, and share projects.
Complete this guide to program your EagLED with all your libraries and sketches available, without being limited to the one computer.
-
-
-
-
-
-
-
const int LED = 0; void setup() { pinMode(LED, OUTPUT); } void loop() { digitalWrite(LED, HIGH); delay (500); digitalWrite(LED, LOW); delay (500); }
-
-
-