Introduction: تثبيت حساس الحراة و الرطوبة على الاردوينو
HOW TO SETUP THE (DHT11 HUMIDITY SENSOR )ON AN ARDUINO
Step 1: Introduction
Attachments
Step 2: Requirements
Attachments
Step 3: Circuit Diagram
Attachments
Step 4: Code
Attachments
Step 5: Completed
Attachments
Step 6: Code (الكود)
Step 7: Code
#include <dht.h>
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
dht DHT;
#define DHT11_PIN 7
void setup(){
lcd.begin(16, 2);
}
void loop() {
int chk = DHT.read11(DHT11_PIN);
lcd.setCursor(0,0);
lcd.print("Temp: ");
lcd.print(DHT.temperature);
lcd.print((char)223);
lcd.print("C");
lcd.setCursor(0,1);
lcd.print("Humidity: ");
lcd.print(DHT.humidity);
lcd.print("%");
delay(1000);
}
2 Comments
6 years ago
Nice Arduino project. You should enter this into the Microcontroller contest.
Reply 6 years ago
thank you @DIY Hacks and How Tos , Soon I will be developing various projects