Arnov Sharma
Published © GPL3+

Garrison Regiment PCB Badge from Attack on Titan

Made yet another PCB badge themed after Garrison Regiment from AOT

BeginnerFull instructions provided1 hour328
Garrison Regiment PCB Badge from Attack on Titan

Things used in this project

Hardware components

Microchip Attiny13a
×1
Arduino Nano R3
Arduino Nano R3
×1
PCBWay Custom PCB
PCBWay Custom PCB
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

sch

Code

code

C/C++
int led = 0;    //D0     
int brightness = 0;  
int fadeAmount = 5;   

void setup() {
  pinMode(led, OUTPUT);
}

void loop() {
  analogWrite(led, brightness);
  brightness = brightness + fadeAmount;
  if (brightness <= 0 || brightness >= 255) {
    fadeAmount = -fadeAmount;
  }
  delay(100);
}

Credits

Arnov Sharma
347 projects • 354 followers
I'm Arnov. I build, design, and experiment with tech—3D printing, PCB design, and retro consoles are my jam.

Comments