Skip to content

Mini_Touch_kit_(SKU_SEN0104)

Angelo edited this page Sep 21, 2016 · 3 revisions

Editing Mini Touch kit

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

Power supply: 3.3-5v Pin definition: Digital output(Green wire) Power(Red wire) GND(Black wire)

Shipping List

ITA-Touch module with Digital sensor cable(1 unit) 3x3cm copper with the sticky part(1 unit) 15cm wire(1 unit)

Assembly instructions

Close up of PCB close up of sensor pad

Assembly video

Ft8PaVUn8G4


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


}

Video of sensor in use

HIFz47Wvbr4

image:nextredirectltr.pngGo shopping mini touch kit (sku:sen0104) category: Product Manual category: SEN Series category: Sensors category:source

Clone this wiki locally