Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
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 hours121
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
333 projects • 339 followers
Just your average MAKER
Contact

Comments

Please log in or sign up to comment.