Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
In this post, we will be exploring nine different kinds of sensors and their speciality. Along with a description on how it works, each sensor will also have an example project attached to it to show how they can be potentially utilized.
A PIR Sensor is an electronic device designed to detect motion by measuring changes in infrared radiation (heat) in the environment. PIR stands for “Passive Infrared”. This means PIR sensors don’t emit any radiation or signals of their own. They only detect changes in infrared radiation from objects in their surroundings.
The PIR sensor is typically used in motion detection devices. Motion detection systems are common in alarm systems, motion lights, automatic doors, etc. The HC-SR501 PIR Sensor is widely used in Arduino projects. For more information, visit Introduction to PIR Sensor: What Is It and How Does It Work?
For a project using this sensor, visit Automated Light System with PIR Sensor.
The ‘IR’ in the name stands for Infrared Radiation, a form of invisible electromagnetic radiation that is sensed as heat emitted from objects. As such, an IR Sensor detects infrared radiation emitted by objects as heat. The effective detection range is 2cm to 30cm.
The Infrared Obstacle Avoidance IR Sensor is widely used in robotics and automation applications to enable obstacle detection and navigation for robots or automated systems. For more information, visit Easy Understanding IR Sensor: What Is It and How Does It Work?
For a project using this sensor, visit Door Security System with IR Sensor.
An ultrasonic sensor is a device that uses high-frequency sound waves (ultrasound) to detect objects, measure distances, or detect changes in the environment. Unlike the previous two sensors, this sensor emits sound waves and measures the time taken to bounce off an object and return to the sensor.
The HC-SR04 is a popular ultrasonic sensor due to its simplicity, low cost, and ease of integration with microcontrollers. It can detect distances ranging from 2 cm to 4 meters, making it useful for various applications, including obstacle navigation for robots and distance measurement. For more information, visit Exploring the Power of Ultrasonic Sensors: A Brief Introduction.
For projects using this sensor, visit Smart Blind Stick with Ultrasonic Sensor and Touch Free Automatic Hand Sanitizer.
The capacitive soil moisture sensor is widely used for measuring the volumetric water content of soil. Unlike traditional resistive sensors, which rely on electrical resistance and are prone to corrosion over time, the capacitive sensor operates on the principle of capacitance, offering better durability, stability, and accuracy in long-term soil monitoring applications.
For a project using this sensor, visit Automatic Plant Watering System.
The DHT11 is a low-cost temperature and humidity sensor. It contains two parts – a thermistor and a capacitive humidity sensor. There is a chip inside converting the analog signals to a calibrated digital output. The digital signal is easy to read and implement by using a microcontroller like Arduino.
As previously stated, the DHT11 contains two main components: humidity sensing component and NTC thermistor.
Pros
Cons
For a project using this sensor, visit Temperature Based Fan Speed Controller.
A Hall sensor/Hall effect sensor is an electronic device that senses the existence and intensity of a magnetic field. The device operates using the Hall Effect principle which was discovered by the physicist Edwin Hall. The Hall Effect principle holds that a magnetic field passing through a conductor at right angles within the device produces a small voltage known as the Hall voltage. This voltage is measured and converted into a usable output signal.
Hall Effect sensors comprise two primary types: digital hall sensor and analog hall sensor. They look pretty identical, so double check the data sheets to make sure you use the correct sensor.
Digital Hall Sensor
Analog Hall Sensor
For a project using this sensor, visit Arduino Project – Bicycle Speedometer with Hall Sensor.
A Light Dependent Resistor (LDR), or Photoresistor is a semiconductor sensor which is sensitive to light intensity and exhibits decreasing resistance with increasing light intensity. LDRs have been extensively used in automatic lighting systems due to their ease of use, affordability and high sensitivity to light intensities.
LDR uses the phenomenon of photoconductivity. In LDR when light photons fall on the semiconductor material, light energy generates excited electrons. Increase in the number of free electrons results in increased conductivity. Consequently, the resistance is decreased due to this.
Pros
Cons
For a project using this sensor, visit Automatic Night Lamp.
MQ Gas Sensors monitor the presence of combustible gas, smoke, and CO2 through air resistance measurements and is widely used for alarm and environmental sensing purposes.
Common MQ Gas Sensors
For a project using this sensor, visit Detect Chemical Components in the Air.
A Color sensor is a photoelectric device that detects and identifies colors. Color sensors are widely used in automation, sorting, and quality control. The most popular and widely available color sensor for Arduino projects is the TCS3200.
Color sensors use an array of photodiodes with red, green, and blue filters to analyze the intensity of light reflected by an object and determine its color based on RGB (Red, Green, Blue) values.
For a project using this sensor, visit TCS3200 Color Sensor with Arduino.