Understanding of Capacitive Touch Sensor

A capacitive sensor is a type of sensor that detects and measures changes in capacitance, typically caused by the proximity, presence, or movement of objects. It works by generating an electric field and measuring the effect of an object.

01. Using Capacitive Sensor Library

The CapacitiveSensor library in Arduino provides a simple way to implement capacitive touch or proximity sensors.

How It Works

  1. Charging and Discharging Principle:

  2. RC Circuit

    time = R⋅C

    1. Measuring Charge Time:

      • The library repeatedly measures the charge time of the sensing pin.
      • An increase in charge time indicates higher capacitance, suggesting the presence of a nearby object.

      IMG_1287 Large.jpeg

capacitiveSensor(sampleCount) Function:

#include <CapacitiveSensor.h>

CapacitiveSensor capSensor1 = CapacitiveSensor(4,2);
CapacitiveSensor capSensor2 = CapacitiveSensor(4,3);

void setup() {
  Serial.begin(9600);
  // put your setup code here, to run once:
  //pin 4 transmitter
  //pin 2 reciever
  //pin 3 reciever
}

void loop() {
  // put your main code here, to run repeatedly:

//store the value reported by the sensor in a variable
long sensorValue1 = capSensor1.capacitiveSensor(30);
long sensorValue2 = capSensor2.capacitiveSensor(30);

Serial.print(sensorValue1);
Serial.print(", ");
Serial.println(sensorValue2);
delay(100);

}

Screenshot 2024-11-19 at 2.06.47 AM.png

IMG_1285 Large.jpeg