Introduction
The EagLED has multiple sew tabs around the board for each component, which makes it easy to create wearables with conductive thread!
In this guide, you will learn to use conductive thread to create a light-up badge. We'll also introduce you to some basic sewing techniques and tips for using conductive thread in building circuits.Â
Complete this guide to create your own light-up badge with the EagLED.
Tools
-
-
-
-
-
const int heartPin = 10; void setup() { pinMode(heartPin, OUTPUT); Serial.begin(9600); //initialize the serial port } void loop() // run over and over again { digitalWrite(heartPin, HIGH); delay (500); digitalWrite(heartPin, LOW); delay (500); }
-
-
-
-
-
-
-
-
-