TemPro is an IoT-based temperature monitoring system using the ESP8266 microcontroller. It transmits temperature data wirelessly via MQTT and displays it in real-time through a responsive web dashboard. Ideal for home automation, agriculture, or industrial monitoring environments.
Note
Checkout the 🔗 live demo at tempro.curiosityweekends.org
- 📡 ESP8266-Powered: Wireless temperature sensing and transmission
- 🧠 MQTT Protocol: Lightweight and efficient data communication
- 🌐 Web Dashboard: Clean, real-time data visualization in any modern browser
- 🧩 Modular Structure: Separated firmware, broker, and web interface components
TemPro/
├── Code For NodeMCU/ # ESP8266 firmware (Arduino-compatible)
├── ESP8266-broker/ # MQTT broker setup and config
├── Web/ # Web UI for live temperature display
├── architecture.md # System architecture and working principles
└── README.md # Project documentationFor a detailed overview of how TemPro works (including the role of Firebase Auth, MQTT Broker, and real-time dashboard updates), check out the Architecture Documentation.
- ESP8266 (e.g. NodeMCU board)
- Arduino IDE with ESP8266 support
- MQTT broker (e.g. Mosquitto)
- Local web server (optional for hosting dashboard)
-
Clone the Repo
git clone https://github.com/CuriosityWeekends/TemPro.git cd TemPro -
Flash the ESP8266
- Open
Code For NodeMCU/in Arduino IDE - Install required libraries (e.g.,
PubSubClient,DHT) - Set Wi-Fi and MQTT details in the sketch
- Upload to your ESP8266
- Open
-
Start the MQTT Broker
- Navigate to
ESP8266-broker/and follow setup instructions - Or use a public broker like
broker.hivemq.comfor testing
- Navigate to
-
Run the Web Dashboard
- Open
Web/index.htmlin a browser - Or serve it with any HTTP server
- Monitor real-time temperature from your ESP8266
- Open
Got improvements? Found a bug?
Note
- Fork the repo
- Create your feature branch:
git checkout -b my-feature - Commit your changes:
git commit -m 'Add feature' - Push to the branch:
git push origin my-feature - Open a Pull Request!
MIT License – see LICENSE for details.