|
|
Arduino Nano R3 |
x 1 | |
|
|
Rotary potentiometer (generic) |
x 1 | |
|
|
Buzzer |
x 1 | |
|
|
LED |
x 1 | |
|
|
Two Aluminum plates |
x 1 |
|
arduino IDEArduino
|
|
|
Soldering Iron Kit |
DIY simple Capacitive Proximity sensor
A capacitive proximity sensor is a type of sensor used to detect the presence of an object without physical contact. It works based on the principle of capacitance, which is the ability of an object to store an electrical charge. There are several types of such sensors on the market and each of them is intended for a specific purpose.
This time I will present you an extremely simple way to make such a sensor yourself, which is inexpensive and highly adjustable

We only need a few components to make the sensor:
- Two thin metal (in my case aluminum) plates
- Potentiometer for setting the sensitivity
- LED and Buzzer for sigmalization, or a relay module to turning on and off a device.
- And Arduino Nano Microcontroller board with appropriate software

This project is sponsored by PCBWay. They has all the services you need to create your project at the best price, whether is a scool project, or complex professional project. On PCBWay you can share your experiences, or get inspiration for your next project. They also provide completed Surface mount SMT PCB assemblY service at a best price, and ISO9001 quality control. Visit pcbway.com for more services.

The two plates are glued to an insulating substrate next to each other in the form of a so-called open capacitor, with a certain minimum distance between them. In fact, this is a capacitor with a capacity of 3 to 5 Picofarads in air. If we approach the plates with an object that has a dielectric constant different from that of the air, the capacitance will change, which is detected by the microcontroller and its output gives a suitable signal, or activates some device.
Now let's not go into the explanation of the term dielectric constant, just to give you an example of its value for some materials. For Water, dielectric constant is 80, glass from 4 to 12, PVC 4, for wood about 3, the human body about 40, and dry air has exactly 1 dielectric constant.

It can be seen from the above that the sensor will be most sensitive to water, than human body, etc...
The microcontroller code is relatively simple thanks to the wonderful "Capacitor" library that accurately measures the capacitance of an unknown capacitor without the use of external components. Now I'll show you what it looks like just using this library and a serial plotter from the Arduino IDE. The relatively constant line represents the capacitance of the open capacitor plus that of the coaxial cable that runs from the plates to the microcontroller. In this case it is about thirty picofarads

As the hand gets closer to the plates, the capacitance decreases which is clearly seen on the serial plotter. The same applies to water.
For this purpose I wrote an extremely simple code. As we can notice, we first measure the capacitance of the open capacitor plus coaxial cable system, and the value generated by the position of the potentiometer, which we have to adjust to be the closest to the above mentioned capacitance. If we bring an object with a higher dielectric constant close to the plates, the capacitance decreases and when it becomes lower than the previously set constant value of the potentiometer, an alarm is triggered or some device is turned on via a relay module.
Now I will demonstrate the features of the complete sensor device. After turning on the device, with the help of the potentiometer, we need to set the sensor activation threshold in a way that we set it in the position closest to the self-activation of the alarm. Then the sensor is most sensitive. Next I will test the functionality by bringing my hand closer to the metal plates.

The reaction of the sensor is instantaneous when we bring our hand closer to a certain distance.
If we approach, for example, wood or plastic, the sensor does not react at all. This property can be used very effectively to protect against injuries, for example when working with wood with a circular saw.

While processing the wood, the saw is in operation. If, due to carelessness or some other reason, we bring our hand close to the saw, the sensor activates a special mechanism that instantly stops the rotation of the saw and thus protects us from injury. This can also be used in many other production processes where the cooperation of robotic machines and people is needed, or work on a press, etc.
As I mentioned before, this sensor is sensitive to water so it can be used very effectively to prevent unwanted water from leaking out of the container during a certain process.

Another application is, for example, the signaling of a damaged plumbing installation or faucet that causes water to leak onto the floor.

Then a special case where the floor is metal, which makes it very difficult to detect water. With the potentiometer, we adjust the threshold at the very place where the sensor will stand. Now the sensor will not react to the metal at all, but only to the presence of water.

And so we can use this sensor in many other places such as touch switches, material level control, and counting. Now I will explain to you a practical example of an application in industry, let's say detecting irregularities on a bottle filling line.

If for some previous reason the bottle moving along the line is not filled This can be easily detected with this sensor because it does not react to the glass but only to the liquid inside of the bottle. If the sensor does not give a signal, it means that the bottle is empty and needs to be removed at a later stage.
And finally a short conclusion. This is an extremely useful and adaptable sensor and the eight examples above can be used in countless other places. Also, This sensor have several advantages including high reliability, long lifespan, and resistance to environmental factors like dirt, moisture, and vibration. It is desirable for a practical performance, instead of a thin plastic film as in my case, the plates should be sealed in epoxy resin, whereby practically the sensor will be perfectly protected from any mechanical and atmospheric influences.
#include <Capacitor.h>
Capacitor cap1(7,A2);
void setup() {
Serial.begin(9600);
pinMode(5, OUTPUT);
}
void loop() {
Serial.println(cap1.Measure());
int sensorValue = analogRead(A0) / 8;
delay(10);
if (cap1.Measure() < sensorValue) {
digitalWrite(5, HIGH);
tone(10,500);
delay(500);
}
else {
digitalWrite(5, LOW);
noTone(10);
}
}
DIY simple Capacitive Proximity sensor
Raspberry Pi 5 7 Inch Touch Screen IPS 1024x600 HD LCD HDMI-compatible Display for RPI 4B 3B+ OPI 5 AIDA64 PC Secondary Screen(Without Speaker)
BUY NOW- Comments(0)
- Likes(0)
- 0 USER VOTES
- YOUR VOTE 0.00 0.00
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
More by Mirko Pavleski
-
Arduino 3D Printed self Balancing Cube
Self-balancing devices are electronic devices that use sensors and motors to keep themselves balanc...
-
Elecrow All-in-One Arduino Starter Kit Review - 20 Projects & 16 Modules
This time I will describe a simple and practical way to enter the world of microcontrollers, specif...
-
ESP32-C3 Color Detector with TCS34725, Real-Time RGB Detection & Web Interface
Color detection is a fundamental task in many embedded systems – from industrial sorting machines t...
-
DIY ESP32 Telegram Flood Protection System - Smart Home Automation
Recently I had an unpleasant experience in my home, specifically my ground floor was flooded as a r...
-
Real-Time Air Traffic Radar using ESP32 + ADS-B Data
ADS-B, which stands for Automatic Dependent Surveillance-Broadcast, is the modern standard for trac...
-
DIY Green Laser Night Sky Object Finder - Find Stars & Galaxies Instantly with great accuracy
As an amateur astronomer, especially at the beginning, the most difficult part of observing the nig...
-
DIY Avionics Simulator with ESP32 - Artificial Horizon, Compass & Altimeter
The inspiration for this project comes from classical aircraft cockpit instruments used for navigat...
-
DIY Miniature X-Ray Machine using a TV Vacuum Tube DY86
An X-ray machine (or radiograph) is a quick, painless medical test that produces images of the struc...
-
Simple SDR Receiver Using 2x NE612 - Dual Conversion, Superheterodyne (0.1–30 MHz)
SDR (Software Defined Radio) is a radio system in which most of the functions of a classic radio (f...
-
DIY Vintage TV VU Meter with peak indicators
Some time ago in one of my projects I presented you a way to turn a black and white old mini TV int...
-
DIY Tesla Coil based Plasma Rife Machine
In several of my previous videos, I presented you with different ways to make a Rife Machine, from ...
-
ESP32 Analog VU Meter – Smooth Needle, Real Audio Response (DIY Build)
In several of my previous videos I have shown you how to make analog VU meters emulated on differen...
-
The Ultimate Smartphone VFO ESP32 & Si5351 Wireless Control
Variable frequency oscillators (VFOs) are commonly used in radio transmitters and receivers, especi...
-
DIY Shortwave Propagation Monitor - Measure Ionosphere Conditions
Shortwave Propagation is the way radio waves in the 3 to 30 MHz range travel from point A to point ...
-
Professional grade Smart Lock with ESP32, BLE and Android App Control
An electronic codelock is a security device that grants access using a numerical sequence—a PIN cod...
-
Building a 3-Input Stereo ECC83 (12AX7) Tube Preamp
Some time ago I presented you a project for a 3W stereo tube amplifier with a GU32 output vacuum t...
-
ESP32 Weather Dashboard with Satellite Maps and 16-day Weather Forecast
As you can see from my previous videos, besides Electronics, my fields of experimentation and proje...
-
Retro Analog VU Meter on Round dispalys (ESP32 and GC9A01)
Recently, in one of my previous videos I presented you a Retro VU Meter project on round displays ...
-
Programmable Mist Maker - XIAO / QT PY Extension
1112 2 1 -
RadioHAT - Raspberry Pi radio development platform
920 0 2 -
QWIIC-VL53L4CD Time-of-Flight Distance Sensor Module
1126 0 1 -
-
-
-
ARPS-2 – Arduino-Compatible Robot Project Shield for Arduino UNO
3358 0 6 -
-
A Compact Charging Breakout Board For Waveshare ESP32-C3
3968 3 8 -
AI-driven LoRa & LLM-enabled Kiosk & Food Delivery System
4357 2 2







