Arnov Sharma
Published © MIT

Skyrim Quest Marker

Made a Tiny Skyrim Quest Marker using PCBs, Setup is powered by an Attiny13A Microcontroller.

BeginnerFull instructions provided2 hours134
Skyrim Quest Marker

Things used in this project

Hardware components

Microchip attiny13A
×1
Arduino Nano R3
Arduino Nano R3
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

SCH

Code

code

C/C++
const int blinkLED = 0; // Pin for the blinking LED
const int steadyLED = 1; // Pin for the steady ON LED

void setup() {
  // Initialize the LED pins as outputs
  pinMode(blinkLED, OUTPUT);
  pinMode(steadyLED, OUTPUT);

  // Turn the steady LED ON
  digitalWrite(steadyLED, HIGH);
}

void loop() {
  // Blink the LED
  digitalWrite(blinkLED, HIGH); // Turn the blinking LED ON
  delay(500); // Wait for 500 milliseconds
  digitalWrite(blinkLED, LOW); // Turn the blinking LED OFF
  delay(500); // Wait for 500 milliseconds
}

Credits

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

Comments