/**
ESP32 + DHT22 Example for wokwi
https://wokwi.com/arduino/project/322410731508073042
*/
#include <Wifi.h>
#include "Adafruit_MQTT.h"
#include "Adafruit_MQTT.h"
#define WLAN_SSID "Wokwi-GUEST"
#define WLAN_PASS ""
#define AIO_SERVER "io.adafruit.com"
#define AIO_SERVERPORT 1883
#define AIO_USERNAME ""
#define AIO_KEY ""
#define AIO_FEED_1 "/feeds/temperature"
#define AIO_FEED_2 "/feeds/humidity"
#define AIO_FEDD_3 "/feeds/on-slash-off"
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}