Ttp223 Module
Ttp223 Module
Ttp223 Module
Description
The TTP223 is a touch pad detector IC which offers 1 touch key. The touching
detection IC is designed for replacing traditional direct button key with diverse pad size.
Capacitive touch allows electronics to sense when your finger is within a few millimetres
of a surface to simulate a button “press” just like how the pushbutton works. Capacitive
sensing may be used in any place where low to no force human touch sensing is
desirable.
Specifications
3
21
11
1. VCC: 2V to 5.5V DC
2. OUT: high/low output
3. GND: ground
Schematic Diagram
Wiring Diagram
1 23
Sample Sketch
void setup(){
pinMode(2, INPUT);
Serial.begin(9600);
}
void loop(){
if(digitalRead(2) == HIGH) Serial.println("tap");
else Serial.println(" ");
delay(100);
}
How to test
Testing results