Сегодня я расскажу вам про показатель температуры и влажности
Вот как он работает:
Вот программа:
// include the library code:
#include <LiquidCrystal.h>
#include "DHT.h"
#define DHTPIN 6 // what pin we're connected to
// тип датчика DHT
#define DHTTYPE DHT11 // DHT 1
// создание экземпляра объекта DHT
DHT dht(DHTPIN, DHTTYPE);
// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
// set up the LCD's number of columns and rows
lcd.begin(16, 2);
dht.begin();
// Print a message to the LCD.
}
void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
float h = dht.readHumidity();
float t = dht.readTemperature();
lcd.setCursor(0, 0);
// print the number of seconds since reset:
lcd.print(" Temp: ");
lcd.print(t);
lcd.setCursor(0, 1);
lcd.print(" Hum: ");
lcd.print(h);
delay(1000)
}
______________________________________________________________________________________________
Какие детали мне понадобились:
LSD дисплей и DHT датчик.
Это устройство подойдёт к умному дому, что узнать какая температура и влажность в доме. Узнать, одеваться теплее или нет.
Спасибо за внимание!