#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include <DHTesp.h>
DHTesp dhtSensor;
#define LEBAR_LAYAR 128 // Lebar layar OLED yang digunakan
#define TINGGI_LAYAR 64 // Tinggi layar OLED yang digunakan
const int DHT_PIN = 15;
Adafruit_SSD1306 oled(LEBAR_LAYAR, TINGGI_LAYAR, &Wire, -1);
void setup() {
Serial.begin(9600);
dhtSensor.setup(DHT_PIN, DHTesp::DHT22);
pinMode(4, OUTPUT);
pinMode(18, OUTPUT);
pinMode(5, OUTPUT);
pinMode(2, OUTPUT);
// initialize OLED display with I2C address 0x3C
if (!oled.begin(SSD1306_SWITCHCAPVCC, 0x3C)) {
Serial.println(F("failed to start SSD1306 OLED"));
while (1);
}
delay(2000);
oled.clearDisplay(); // clear display
oled.setTextSize(1); // Atur ukuran text
oled.setTextColor(WHITE); // Atur warna text
oled.setCursor(0, 10); // Atur posisi text pada display
oled.println("Hello World"); // Text yang dicetak
oled.display(); // menampilkan display OLED
}
void loop() {
TempAndHumidity data = dhtSensor.getTempAndHumidity();
if(data.temperature<29){
oled.clearDisplay(); // clear display
oled.setTextSize(1); // Atur ukuran text
oled.setTextColor(WHITE); // Atur warna text
oled.setCursor(0, 10);
oled.println("suhu :"+String(data.temperature, 2) + "°C");
// Atur posisi text pada display
oled.setCursor(0, 30);
oled.println("suhu rendah"); // Text yang dicetak
oled.display();
digitalWrite(4, HIGH);
}
if(data.temperature<35&&data.temperature>29){
oled.clearDisplay(); // clear display
oled.setTextSize(1); // Atur ukuran text
oled.setTextColor(WHITE); // Atur warna text
oled.setCursor(0, 10);
oled.println("suhu :"+String(data.temperature, 2) + "°C");
// Atur posisi text pada display
oled.setCursor(0, 30);
oled.println("suhu sedang"); // Text yang dicetak
oled.display();
digitalWrite(5, HIGH);
}
if(data.temperature>35){
oled.clearDisplay(); // clear display
oled.setTextSize(1); // Atur ukuran text
oled.setTextColor(WHITE); // Atur warna text
oled.setCursor(0, 10);
oled.println("suhu :"+String(data.temperature, 2) + "°C");
// Atur posisi text pada display
oled.setCursor(0, 30);
oled.println("suhu panas"); // Text yang dicetak
oled.display();
digitalWrite(18, HIGH);
digitalWrite(2, HIGH);
}
delay(100);
digitalWrite(4, LOW);
digitalWrite(5, LOW);
digitalWrite(18, LOW);
digitalWrite(2, LOW);
}