DHT11 Temperature and Humidity Sensor module

DHT11 Temperature and Humidity Sensor module

Rs. 59.00
Sale price  Rs. 59.00 Regular price  Rs. 69.00
Skip to product information
DHT11 Temperature and Humidity Sensor module

DHT11 Temperature and Humidity Sensor module

Rs. 59.00
Sale price  Rs. 59.00 Regular price  Rs. 69.00

Description

DHT11 Sensor Arduino Temperature and Humidity Module

The dht11 sensor arduino module is widely used for projects that require stable environmental monitoring, and it integrates seamlessly with microcontrollers. As a reliable dht11 temperature sensor, it provides accurate readings for DIY automation, while its role as a compact temperature and humidity sensor makes it suitable for IoT and educational applications. With these combined capabilities, the module ensures smooth data acquisition and consistent performance in various systems.

Technical Details

  • Item Type: Sensor
  • Model: Tem and Humidity Sensor
  • Temp. Range: 0~50°C, ±2°C error
  • Humidity Range: 20%~95%RH
  • Resolution: 16 bit
  • Output: Digital
  • Dimensions: 31mm (L) x 14mm (W) x 7.5mm (H)
  • Weight: 5g

Features

  • DHT11 sensor with PCB, LED indicator, and cable
  • 3-5V power and I/O, 4 pins (0.1" spacing)
  • Pre-built 4.7K or 10K pull-up resistor
  • 2.5mA max current during conversion
  • 20-80% humidity range, ±5% accuracy
  • 0-50°C temperature range, ±2°C accuracy

Applications :

  • Weather Monitoring: Ideal for real-time atmospheric data collection using the dht11 temperature sensor, ensuring accurate temperature and humidity readings for forecasting and analysis.
  • Home Automation: Helps enhance control systems by integrating the dht11 sensor arduino setup for HVAC automation, improving comfort and energy efficiency.
  • Greenhouses and Agriculture: Widely used where environmental stability is essential, and the temperature and humidity sensor module assists in maintaining optimal crop conditions.
  • Industrial and Storage Environments: Useful for monitoring storage requirements for perishable items with the precision of a dht11 temperature sensor.
  • Health and Comfort Monitoring: Supports indoor air quality tracking by utilizing a compact temperature and humidity sensor for daily environmental analysis.
  • IoT and Remote Monitoring: Commonly paired with microcontrollers as a dht11 sensor arduino module for cloud-based temperature and humidity logging in smart applications.
  • Environmental Research: Helps researchers collect consistent data using a highly stable dht11 temperature sensor module in long-term studies.
  • Outdoor and Portable Uses: Perfect for portable stations where a lightweight tem and humidity sensor supports real-time climate tracking.

Integration with Arduino

DHT11 sensor Arduino wiring diagram

Sample Code

#include <dht.h> // Include library
#define outPin 8 // Defines pin number to which the sensor is connected
dht DHT; // Creates a DHT object
void setup() {
Serial.begin(9600);
}
void loop() { //https://kitsguru.myshopify.com/products/dht11-temperature-and-humidity-sensor-module-with-led/
int readData = DHT.read11(outPin);
float t = DHT.temperature; // Read temperature
float h = DHT.humidity; // Read humidity
Serial.print("Temperature = ");
Serial.print(t);
Serial.print("°C | ");
Serial.print((t*9.0)/5.0+32.0); // Convert celsius to fahrenheit
Serial.println("°F ");
Serial.print("Humidity = ");
Serial.print(h);
Serial.println("% ");
Serial.println("");
delay(2000); // wait two seconds

} //Credits : https://lastminuteengineers.com/dht11-module-arduino-tutorial/

Integration with Raspberry PI

DHT11 temperature and humidity sensor Raspberry Pi wiring

Sample Code

import RPi.GPIO as GPIO
import Adafruit_DHT
import time
//https://kitsguru.myshopify.com/products/dht11-temperature-and-humidity-sensor-module-with-led
# Adafruit_DHT.DHT22, or Adafruit_DHT.AM2302.
DHTSensor = Adafruit_DHT.DHT11
# The pin which is connected with the sensor will be declared here
GPIO_Pin = 23
while True:
humid, temper = Adafruit_DHT.read_retry(DHTSensor, GPIO_Pin)
print(&amp;quot;Temperature: &amp;quot; + temper + &amp;quot;\n&amp;quot;)

time.sleep(3) //Credits : https://www.thegeekpub.com/wiki/sensor-wiki-ky-015-dht11-c

Physical Attributes

  • Length * Width * Height (mm): 31 x 14 x 7.5
  • Weight (gm): 5

Package Includes

  • 1 x DHT11 Temperature and Humidity Sensor Module
  • 3 x Female to Female Connecting Cables

You may also like