Furby. (aka Mr. Tweaky.)
he is designed to bite off fingers and scream nonsense at 3.am. he's also kind of fuzzy.
Supplies
he's built out of metal, pla, plastic, a bunch of arduino boards and wires, servo motors and an l.e.d. also tons of hot glue, not to mention my blood, sweat, and tears. also other things too abominable to mention.
create a fur shell for your furby. while I don't recommend skinning a real animal for this, you do you.
add human soul. easy to come by if you know the right (or wrong) kind of person.
cut a small metal tube and attach servos for the ears, eyes and mouth using masking tape and hot glue. for your help, there's a link to the 3.d model here.
program the farfegnugen outta them. the code for the general movements is listed below.
#include <Servo.h> //include the servo library
int LRpotPosition;
int LRservoPosition;
int UPDOWNpotPosition;
int UPDOWNservoPosition;
int FWDBACKpotPosition;
int FWDBACKservoPosition;
Servo LR;
Servo UPDOWN;
Servo FWDBACK;
void setup() {
LR.attach(9);
UPDOWN.attach(10);
FWDBACK.attach(11);
}
void loop() {
LRpotPosition = analogRead(A0);
LRservoPosition = map(LRpotPosition, 0, 1023, 20, 160);
LR.write(LRservoPosition);
}
3.d print eyes, eyelids, and a beak for your furby. that or harvest them.... how shall we say, ....locally.
you have completed your abomination against god. go think about what you have done.