//Nama    : Achiyat Irsyad Cahyo Gumelar
//NIM     : 52004110001
//Prodi   : Informatika/8C
//Matkul  : Proyek Teknologi Informasi

#include "DHTesp.h"

const int DHT_PIN = 15;

DHTesp dhtSensor;
int suhu;
int kelembaban;



/* Fill-in information from Blynk Device Info here */
#define BLYNK_TEMPLATE_ID "TMPL69WrFixTo"
#define BLYNK_TEMPLATE_NAME "SMART Farming 1 Suhu Kelembaban"
#define BLYNK_AUTH_TOKEN "fU7KgeTnNntZee_FDTLojAI5xngU_-wu"


/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial


#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "Wokwi-GUEST";
char pass[] = "";

BlynkTimer timer;

// This function sends Arduino's up time every second to Virtual Pin (5).
// In the app, Widget's reading frequency should be set to PUSH. This means
// that you define how often to send data to Blynk App.
void myTimerEvent()
{
  // You can send any value at any time.
  // Please don't send more that 10 values per second.
  TempAndHumidity  data = dhtSensor.getTempAndHumidity();
  suhu=data.temperature;
  kelembaban=data.humidity;
  Blynk.virtualWrite(V0, suhu);
  Blynk.virtualWrite(V1, kelembaban);
  Serial.println("Temp: " + String(data.temperature, 2) + "°C");
  Serial.println("Humidity: " + String(data.humidity, 1) + "%");
  Serial.println("---");
  
}

void setup() {
  Serial.begin(115200);
  dhtSensor.setup(DHT_PIN, DHTesp::DHT22);

  Blynk.begin(BLYNK_AUTH_TOKEN, ssid, pass);
  timer.setInterval(1000L, myTimerEvent);
}

void loop() {
  
  Blynk.run();
  timer.run(); // Initiates BlynkTimer
  
}