Electroboffin
Published © MIT

3D printed glowing Tie by Electroboffin

A completely 3D printed tie to eliminate my frustration of making perfect tie knots and satisfy my hunger to build something unique and cool

BeginnerFull instructions provided4 hours210
3D printed glowing Tie by Electroboffin

Things used in this project

Hardware components

Arduino Pro Mini 328 - 5V/16MHz
SparkFun Arduino Pro Mini 328 - 5V/16MHz
×1
18650 Li ion cell
×1
TP4056 Charging module
×1
Pushbutton switch 12mm
SparkFun Pushbutton switch 12mm
×1
Slide Switch
Slide Switch
×1
LED (generic)
LED (generic)
×16

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

3D Printer (generic)
3D Printer (generic)
Soldering iron (generic)
Soldering iron (generic)
Solder Wire, Lead Free
Solder Wire, Lead Free
Solder Flux, Soldering
Solder Flux, Soldering
Hot glue gun (generic)
Hot glue gun (generic)

Story

Read more

Custom parts and enclosures

STL files

There is no need of support in any part except in body.

Schematics

Circuit diagram

It's not that difficult, if you know how to connect a LED and a push button with arduino. You can easily do this too.

Connect LED on pins -1,3,4,5,6,7,8,9,10,11,12,13,A0,A1,A2 and A3
connect push button on pin 2
Connect power on VCC and GND pin

All done!!

Code

LED effect

Arduino
This code contains only one effect and that's why I am not using push button as well
int LED[] ={0,3,4,5,6,7,8,9,10,11,12,13,A0,A1,A2,A3};
int Max= 16;

void setup() {
  //pinMode(mode, INPUT_PULLUP);
  for(int i=0; i<Max; i++){
    pinMode(LED[i], OUTPUT);
  }
  }

void loop() {

  for(int i=0; i<Max; i++){
    digitalWrite(LED[i], HIGH);
    delay(50);
  }

  for(int i=0; i<Max; i++){
    digitalWrite(LED[i], LOW);
    delay(50);
  }
}

Credits

Electroboffin

Electroboffin

2 projects • 2 followers
An electronics guy with a mechanical brain typing code for robots build using 3D printing & connecting them to the internet to make them fly

Comments