-
Notifications
You must be signed in to change notification settings - Fork 0
Software Setup
lennon101 edited this page Sep 23, 2025
·
4 revisions
-
Install Arduino IDE or PlatformIO.
-
Install ESP32 board support in Arduino IDE.
-
Install required libraries:
WiFi.hPubSubClientAdafruit BME280Adafruit Unified SensorEEPROM
-
Open
ESP32_WeatherStation.ino. -
Update your configuration:
const char* ssid = "YOUR_WIFI_SSID"; const char* password = "YOUR_WIFI_PASSWORD"; const char* mqtt_server = "BROKER_IP_ADDRESS";
-
Compile and upload to the ESP32.
-
Open Serial Monitor (115200 baud) for debug logs.