Mini_Touch_kit_(SKU_SEN0104) - jimaobian/DFRobotWiki GitHub Wiki
This is a cool touch sensor from dfrobot. You can hook it up to the IO Expansion shield (for arduino) directly. It includes a metallic tape with a sticky side. This make it possible for you to place your sensors anywhere you want. So, if you get sick of the typical push buttons, try this invisible button for your projects! This touch sensor works on a variety of surfaces; Metal, glass, plastic, rubber. It does not work on cardboard or wood. NOTE:This sensor requires some basic soldering.
Power supply: 3.3-5v Pin definition: Digital output(Green wire) Power(Red wire) GND(Black wire)
ITA-Touch module with Digital sensor cable(1 unit) 3x3cm copper with the sticky part(1 unit) 15cm wire(1 unit)
Ft8PaVUn8G4
void setup(){
Serial.begin(57600);
Serial.println("Start");
pinMode(13,OUTPUT);
pinMode(3,INPUT);
}
void loop(){
int val = digitalRead(3);
digitalWrite(13,val);
Serial.println(val,BIN);
delay(20);
}
HIFz47Wvbr4
shopping mini touch kit (sku:sen0104) category: Product Manual category: SEN Series category: Sensors category:source