Arduino Project

Touch Sensor Module

Course Introduction

In this lesson, we will learn how to use the Touch Sensor Module with Arduino.

Note

If this is your first time working with an Arduino project, we recommend downloading and reviewing the basic materials first.

1.1 Install Arduino IDE(Important)
1.2 Introduction of Arduino IDE

Required Components

In this project, we need the following components:

SN

COMPONENT INTRODUCTION

QUANTITY

PURCHASE LINK

1

Arduino UNO R4 WIFI

1

2

USB Type-C cable

1

×

3

Breadboard

1

4

Wires

Several

5

Touch Sensor Module

1

Wiring

1.png__PID:71189e6b-f73d-4d8e-985f-c16bc0a56f84

Common Connections:

Touch Sensor Module
SIG:
Connect to 7 on the Arduino.
GND: Connect to GND on the Arduino.
VCC: Connect to 5V on the Arduino.

Writing the Code

Note
You can copy this code into Arduino IDE.
Don’t forget to select the board(Arduino UNO R4 WIFI) and the correct port before clicking the Upload button.


/*
  A simple code to read input from a touch sensor
  connected to pin 7 of an Arduino Uno board.
  If the sensor is touched, the built-in LED is turned on
  and a message is printed to the serial monitor.
  If the sensor is not touched, the LED is turned off
  and a different message is printed.

  Board: Arduino Uno R3 (or R4)
  Component: Touch Sensor
*/

// Define the pin used for the touch sensor
const int sensorPin = 7;

void setup() {
  pinMode(sensorPin, INPUT);     // Set the sensor pin as input
  Serial.begin(9600);            // Start the serial communicatio
}
void loop() {
  // Check sensor state and output result
  if (digitalRead(sensorPin) == HIGH) {
    Serial.println("Touch detected!");
  } else {
    Serial.println("No touch detected...");
  }
  delay(100);  // Short pause between reads
}