Carson Pippin
Published

Fist Bumper

When you have no friends, you build a machine to fist bump you instead.

BeginnerFull instructions provided1 hour2,102
Fist Bumper

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Solderless Breadboard Half Size
Solderless Breadboard Half Size
×1
Jumper wires (generic)
Jumper wires (generic)
×9
Resistor 10k ohm
Resistor 10k ohm
×1
SparkFun Servo Motor
×1
SparkFun Push Button
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Hot glue gun (generic)
Hot glue gun (generic)
Tape Dispenser

Story

Read more

Schematics

Wiring diagram

Wire your project.

Code

Fisty Fissy

Arduino
You just make it and upload it.
int btn;
#include <Servo.h>; 
Servo servo1;
void setup() {
  // put your setup code here, to run once:
servo1.attach(6  );
pinMode(9,INPUT);
Serial.begin(9600);
}
void loop() {
  // put your main code here, to run repeatedly:
  btn= digitalRead(9);
  if (btn==LOW)
  {
    servo1.write(0);
    Serial.println("pushed");
  }
else
{
  servo1.write(18);
    Serial.println("Blegh");
}
}

Credits

Carson Pippin

Carson Pippin

1 project • 1 follower
Thanks to Useless Box .

Comments