Product Page
KY-015 Combi-Sensor (temperature & humidity) – SensorKit | Pakistan
₨ 500
[yith_wcwl_add_to_wishlist]
Need some help?
Contact Us
Product Ships in
2-3-business Days
Payment Methods:
KY-015 Combi-Sensor (temperature & humidity) - SensorKit | Pakistan microsolution.com.pk
DHT11 or DHT 11 or DHT-11 temperature and humidity sensor is a digital temperature and humidity sensor. This DHT11 Digital Relative Humidity & Temperature Sensor Module is pre-calibrated with resistive sense technology coupled with NTC thermistor, for the precise reading of the relative Humidity and surrounding temperature DHT 11 break-out board is a very popular, low-cost sensor from Aosong, the breakout provides easy installation of the DHT11 sensor module.
Applications:
HVAC, Testing and inspection equipment, Automotive, Datalogger, Consumer goods, Automatic control, Weather station, Home appliances, Humidity regulator, Medical, Dehumidifier, etc.
Features Of DHT11:
- Low power consumption.
- DHT11 sensor adopts
- The module can detect the surrounding environment of the humidity and temperature
- High reliability and excellent long-term stability
- The output from the digital output
- Has a fixed bolt hole and easy installation
Specifications Of DHT11 Sensor:
- Humidity Measuring Range(%): 20 to 90
- Temperature Measuring Range(°C): 0 to +50
- Humidity Measurement Accuracy(%): ±5.0
- Temperature Measurement Accuracy(°C): ±2.0
- Response Time(s): <5
- Supply Voltage (V): 5
- Breadboard Size(mm): 19×17 (LxW)
- Weight (gm): 0.6
Example Code for Arduino:
Use the popular
DHT sensor library by Adafruit. Install it via the Arduino Library Manager, then upload this sketch: [1]cpp
#include "DHT.h"
#define DHTPIN 2 // Digital pin connected to the S pin
#define DHTTYPE DHT11 // DHT 11
DHT dht(DHTPIN, DHTTYPE);
void setup() {
Serial.begin(9600);
dht.begin();
}
void loop() {
// Wait 2 seconds between measurements
delay(2000);
float h = dht.readHumidity();
float t = dht.readTemperature(); // Celsius
if (isnan(h) || isnan(t)) {
Serial.println("Failed to read from DHT sensor!");
return;
}
Serial.print("Humidity: ");
Serial.print(h);
Serial.print("% ");
Serial.print("Temperature: ");
Serial.print(t);
Serial.println("°C");
}





