#include "DHT.h"
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#define SCREEN_WIDTH 128 // OLED width, in pixels
#define SCREEN_HEIGHT 64 // OLED height, in pixels
#define DHTPIN 12
#define DHTTYPE DHT22 // DHT 22 (AM2302), AM2321
DHT dht(DHTPIN, DHTTYPE);
Adafruit_SSD1306 oled(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, -1);
void setup() {
Serial.begin(115200);
dht.begin();
if (!oled.begin(SSD1306_SWITCHCAPVCC, 0x3C)) {
Serial.println(F("ไม่สามารถเชื่อมต่อกับจอได้"));
while (1);
}
}
void loop() {
float temperature = dht.readTemperature(30);
float humidity = dht.readHumidity(80);
// Check if any reads failed and exit early (to try again).
if (isnan(temperature) || isnan(humidity)) {
Serial.println(F("Failed to read from DHT sensor!"));
return;
}
delay(2000); // wait two seconds for initializing
oled.clearDisplay(); //ล้างหน้าจอ
oled.setTextSize(1); // ตั้งขนาดตัวอักษร
oled.setTextColor(WHITE); // สีตัวอักษร
oled.setCursor(0,0); // ตั้งตำแหน่งตัวอักษรตัวแรก (x,y)
oled.print("Humidity: "+String(humidity,2)+"%"); // ข้อความออกจอ
oled.setCursor(0, 10); // ตั้งตำแหน่งตัวอักษรตัวแรก (x,y)
oled.print("Temperature: "+String(temperature,2)+"C ");// ข้อความออกจอ
oled.display(); // display on OLED
}