Amal Mathew
Published © GPL3+

3D Printed Prosthetic Hand with Capacitive Touch Sensing

In this project capacitive touch sensing is used to actuate the 3D-printed hand.

IntermediateFull instructions provided15 hours9,458

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
MG996R Servo Motor
×1
TTP223 Capacitive Touch Sensor
×2
Jumper wires (generic)
Jumper wires (generic)
×1
Breadboard (generic)
Breadboard (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Circuit diagram

Code

Arduino Sketch

Arduino
 
#include <Servo.h>
Servo myservo; 
#define CTS1Pin 2 // Pin for capactitive touch sensor 1
#define CTS2Pin 3 // Pin for capactitive touch sensor 2
int pos;
void setup()                    
{
  
   myservo.attach(9);  // attaches the servo on pin 9 to the servo object
}

void loop()                    
{
int CTSValue1 = digitalRead(CTS1Pin);
int CTSValue2 = digitalRead(CTS2Pin);

if (CTSValue1 == HIGH)
 
 {
    for (pos = 0; pos <= 180; pos += 1)
    myservo.write(pos);
     delay(15); 
     
   }
   if(CTSValue2==HIGH)
   {  
    for (pos = 180; pos >= 0; pos -= 1)
    myservo.write(pos); 
    delay(15);
     
   }
   
}

Credits

Amal Mathew

Amal Mathew

24 projects • 78 followers
Maker | Open source ❤️| Engineer 👉🏽Technology for the Sake of Humanity

Comments