Rohan Barnwal
Published © GPL3+

Stack Player – Automatic Stack Game Playing Machine

Stack Player is an Arduino-powered servo system that auto-plays Stack, turning a simple prototype into a sleek, product-ready hardware build

BeginnerFull instructions provided1 hour4
Stack Player – Automatic Stack Game Playing Machine

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
SG90 Micro-servo motor
SG90 Micro-servo motor
×1
Jumper wires (generic)
Jumper wires (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

wfq_uFzj1KKyHk.jpg

Code

Code

Arduino
#include <Servo.h>

Servo servo1;

void setup()
{
  servo1.attach(3);
  servo1.write(125);
  delay(5000);
  servo1.write(90);
  delay(200);
  servo1.write(125);
  delay(750);
}

void loop()
{
  servo1.write(90);
  delay(200);
  servo1.write(125);
  delay(600);
}

Credits

Rohan Barnwal
43 projects • 38 followers
Rohan Barnwal - maker, hacker, tech enthusiast. I explore new tech & find innovative solutions. See my projects on hackster.io!

Comments