PROSTHETIC BODY PARTS

WHAT ARE PROSTHETIC BODYPARTS

Bionic limbs are artificial prosthetics used for amputees whom have lost limbs due to traumatic injuries or diseases such as cancer or diabetes. Over 150 000 people have limbs amputated every year. Prosthetics have a significant effect on amputees lives as they can help the individual to complete daily activities such as walking, eating, dressing or even playing sports. Bionic limbs are a life-changing advancement of modern technology and coding which replecates normal human movements and integrates them into the prosthetic to be able to see (bionic eyes), hear (bionic ears or cochlea implants) and touch (sensory bionic arms)to accomplish basic movements and activities as they would with there original parts.

To see a real Amputees stories about there life with Bionics click here.

Bionic Limb

WHAT YOU WILL NEED

The Basics:

Important Items:

INSTRUCTIONS

The final result should look and function like this:

CODE FOR ARDUINO

Import this code into your Arduino to allow the finger to respond to your commands.

// Include Servo library
#include <(Servo.h)>
Servo myservo; //create servo object to control a servo
void setup() {
myservo.attach(9); // attaches the servo on pin 9 to the servo object
pinMode(A0, INPUT_PULLUP);
Serial.begin(9600);
}
void loop() {
// Variable to store the current angle
int flexSensor=analogRead(A0);
int angle=(flexSensor-450);
Serial.println(angle);
myservo.write(angle);
}

Watch this video for a full explanation of the Code