Lindsey Jane
Published

Blinking Light Up Running Pouch

The LED lights in the front of the pouch blink allowing you to run in the dark while still being able to be seen by oncoming traffic.

BeginnerShowcase (no instructions)398
Blinking Light Up Running Pouch

Things used in this project

Hardware components

LilyPad ProtoSnap Plus
SparkFun LilyPad ProtoSnap Plus
×1
Sewable Conductive Thread
Sewable Conductive Thread
×1
RooSPORT
Running pouch to hold cell phone and keys
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

sewing needle

Story

Read more

Schematics

RooSport Blinking Pouch

Code

Blinking lights

Arduino
void setup()
{
  // Before you use a sew tab (pin), you must set it to be either an input or output:
  
  pinMode(A5, OUTPUT);     // Set pin A5 to be an output
  pinMode(A7, OUTPUT);     // Set pin A7 to be an output
}

// After the setup function runs, the loop function runs over and over forever:

void loop()
{
  digitalWrite(A5, HIGH);  // Give pin A5 a HIGH voltage level (on), which lights up the LED
  delay(200);             // Pause for 1000 milliseconds (one second), the LED stays on
  digitalWrite(A5, LOW);   // Give pin A5 a LOW voltage level (off), which turns off the LED
  delay(200);             // Pause for 1000 milliseconds (one second), the LED stays off
  digitalWrite(A7, HIGH);  // Give pin A7 a HIGH voltage level (on), which lights up the LED
  delay(100);             // Pause for 100 milliseconds (one second), the LED stays on
  digitalWrite(A7, LOW);   // Give pin A7 a LOW voltage level (off), which turns off the LED
  delay(100);             // Pause for 100 milliseconds (one second), the LED stays off
}

Final Circuit

Arduino
No preview (download only).

Final Circuit

Arduino
Both lights are connected through a circuit leading to the back of the pouch where the central piece is.
No preview (download only).

Final Circuit

Arduino
I placed the central piece in the bottom corner, using conductive thread to attach it to the first LED.
No preview (download only).

Final Circuit

Arduino
The first A7 LED light in place on the front of the pouch.
No preview (download only).

Final Circuit

Arduino
Both lights are connected through a circuit leading to the back of the pouch where the central piece is.
No preview (download only).

Final Circuit

Arduino
The completed Circuit connecting both A5 and A7 to ground.
No preview (download only).

RooSPORT

Arduino
No preview (download only).

Credits

Lindsey Jane

Lindsey Jane

1 project • 0 followers

Comments