Mini_Touch_kit__SKU_SEN0104_-DFRobot

Introduction

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.

Specification

Tutorial

Requirements

Connection Diagram

Close up of PCB | Close up of Sensor pad

Sample Code


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);


}

FAQ

Q&A Some general Arduino Problems/FAQ/Tips
A For any questions, advice or cool ideas to share, please visit the DFRobot Forum.

More Documents

DFshopping_car1.png Get Mini Touch Kit from DFRobot Store or DFRobot Distributor.

Turn to the Top