玩转Arduino(1)-自制温度湿度计
思路
从温湿度传感器读取温度和湿度信息,然后在LCD显示器上展示
代码
#include <DHT11.h>
#include <Bonezegei_LCD1602_I2C.h>
DHT11 dht11(2);
Bonezegei_LCD1602_I2C lcd(0x27);
void setup() {
// Initialize serial communication to allow debugging and data readout.
// Using a baud rate of 9600 bps.
Serial.begin(9600);
lcd.begin();
}
void loop() {
int temperature = 0;
int humidity = 0;
// Attempt to read the temperature and humidity values from the DHT11 sensor.
int result = dht11.readTemperatureHumidity(temperature, humidity);
// Check the results of the readings.
// If the reading is successful, print the temperature and humidity values.
// If there are errors, print the appropriate error messages.
if (result == 0) {
Serial.print("Temperature: ");
Serial.print(temperature);
Serial.print(" °C\tHumidity: ");
Serial.print(humidity);
Serial.println(" %");
String str = String("Temperat: ") + temperature + String(" C");
lcd.setPosition(0, 0);
lcd.print(str.c_str());
lcd.setPosition(0, 1);
str = str = String("Humidity: ") + humidity + String(" %");
lcd.print(str.c_str());
} else {
// Print error message based on the error code.
Serial.println(DHT11::getErrorString(result));
}
delay(10000);
}
参考资料
作者: vearne
文章标题: 玩转Arduino(1)-自制温度湿度计
发表时间: 2024年10月20日
文章链接: https://vearne.cc/archives/40174
版权说明: CC BY-NC-ND 4.0 DEED