Skip to content

Software Setup

lennon101 edited this page Sep 23, 2025 · 4 revisions

Software Setup

  1. Install Arduino IDE or PlatformIO.

  2. Install ESP32 board support in Arduino IDE.

  3. Install required libraries:

    • WiFi.h
    • PubSubClient
    • Adafruit BME280
    • Adafruit Unified Sensor
    • EEPROM
  4. Open ESP32_WeatherStation.ino.

  5. Update your configuration:

    const char* ssid = "YOUR_WIFI_SSID";
    const char* password = "YOUR_WIFI_PASSWORD";
    const char* mqtt_server = "BROKER_IP_ADDRESS";
    
  6. Compile and upload to the ESP32.

  7. Open Serial Monitor (115200 baud) for debug logs.

ESP32 Weather Station

📘 Documentation

🛠 Support


👤 Author: Dane Lennon

Clone this wiki locally