IoT Home Management System With Telegram Alerts (ESP32 Project)
by oronP in Workshop > Home Improvement
70 Views, 0 Favorites, 0 Comments
IoT Home Management System With Telegram Alerts (ESP32 Project)


This smart home automation system keeps an eye on your living space through multiple sensors connected to an ESP32. It monitors temperature, light levels, and noise, displaying real time sound readings on a colorful LED strip that changes from green to red as volume increases. The system sends Telegram alerts when conditions go above certain set thresholds, like when it's too hot (oven been left on for too long) too bright (light in the room was left on), or too noisy for too long (party too loud). Everything connects through MQTT to a Node-RED dashboard where you can monitor all your home conditions at once. It's a complete IoT solution that helps you maintain a comfortable environment while being mindful of neighbors.
Supplies






Hardware:
- ESP32 development board
- DHT22 temperature/humidity sensor
- Photoresistor (LDR) for light sensing
- Analog microphone module (KY-038 or MAX9814)
- WS2812B addressable LED strip (24 LEDs recommended)
- Computer or Raspberry Pi to run Node-RED
Software:
- Arduino IDE
- Libraries:
- WiFi.h
- PubSubClient.h (MQTT)
- DHT.h
- FastLED.h
- Node-RED with these packages:
- node-red-dashboard
- node-red-contrib-telegrambot
- node-red-contrib-aedes (if not using an external MQTT broker)
Code
Below you'll find the Arduino code that needs to be ran on the ESP32.
**Important:
- You must change the IP address and wifi settings
- Configure the pins and connect the peripherlas however you want as long as they function
- You can customize the settings for how often and to what thresholds the sensors should start giving alerts
Downloads
Node-Red

Node-RED is the "brain" that processes sensor data and sends alerts.
Installing Node-RED (if you haven't already)
- Install Node.js and npm
- Install Node-RED globally:
- Start Node-RED:
- Access Node-RED in your browser at: http://localhost:1880
Installing Required Nodes
In Node-RED, go to the menu (hamburger icon) > Manage palette > Install tab, and search for and install:
- node-red-dashboard - For creating the dashboard
- node-red-contrib-telegrambot - For Telegram notifications
- node-red-contrib-aedes - For MQTT broker (if not using an external one)
Import the Flow Provided in the file
- In Node-RED, go to menu > Import
- Click "Import" to add this flow to your workspace
Downloads
Set Up Telegram Bot
Setting Up Telegram Bot for Home Automation Alerts
Telegram bots provide a convenient way to receive alerts from your home automation system. Here's a step-by-step guide to setting up your own Telegram bot for notifications:
Step 1: Create a Telegram Bot
- Open the Telegram app on your phone or desktop
- Search for "BotFather" (this is Telegram's official bot for creating bots)
- Start a chat with BotFather and send /newbot
- Follow the prompts to choose a name and username for your bot
- The name can be anything (e.g., "Home Automation Bot")
- The username must end with "bot" (e.g., "myhomeautomation_bot")
- BotFather will respond with a message containing your bot's token
- It looks something like 123456789:ABCdefGhIJKlmNoPQRsTUVwxyZ
- Copy this token and keep it secure - you'll need it for Node-RED
Step 2: Get Your Chat ID
To send messages to yourself, you need your Telegram chat ID:
- Start a chat with your newly created bot (search for its username)
- Send any message to the bot (e.g., "Hello")
- Open this URL in your browser (replace YOUR_BOT_TOKEN with your actual token):
- Look for the "chat" section in the JSON response
- Find the "id" field within the "chat" section - this is your chat ID
- It will be a number like 12345678
- If you don't see any update, try sending another message to your bot
Step 3: Configure the Telegram Bot in Node-RED
- In Node-RED, make sure you've installed the node-red-contrib-telegrambot package
- Double-click on the Telegram sender node
- Click the pencil icon next to the bot field to add a new bot configuration
- Fill in the details:
- Name: A friendly name for your bot
- Token: Paste the token you received from BotFather
- Chat IDs: Enter your chat ID from Step 2
- Click "Add" and then "Done"
Step 4: Test Your Bot
- In Node-RED, add an inject node connected to your Telegram sender node
- Configure the inject node to send a simple message like:
- Deploy your flow and click the inject node
- You should receive a test message in your Telegram app
Step 5: Add Authorization (Optional but Recommended)
For better security, you can restrict who can interact with your bot:
- In your Telegram bot configuration in Node-RED
- Add your Telegram username (without @) in the "Users" field
- This will restrict the bot to only respond to you
Common Issues and Solutions
- No message received: Verify your bot token and chat ID
- Authentication errors: Check that your token is entered correctly
- Bot not responding: Make sure Node-RED can access the Telegram API (network issues?)
- Formatting issues: Use Telegram's formatting options for better messages:
Once configured, your Telegram bot will reliably deliver alerts from your home automation system, keeping you informed about temperature changes, light levels, noise, and other important events happening in your home.
Check Node-Red Dashboard

Your dashboard will show all environmental data in one place:
- In Node-RED, go to the dashboard tab (right sidebar)
- Organize the dashboard tabs and groups:
- Main dashboard tab with groups for Temperature, Light, and Sound
- Each group contains gauges, charts, and status indicators
To access your dashboard, navigate to: http://YOUR_NODE_RED_IP:1880/ui
Calibration
Each home environment is different, so you'll need to calibrate the system:
Temperature Threshold
- Monitor normal temperature readings
- Set the tempThreshold to a few degrees above normal
- Test by increasing temperature (e.g., with a hair dryer at a safe distance)
Light Threshold
- Observe light readings during normal conditions
- Determine what "too bright for too long" means in your context
- Adjust the brightThreshold accordingly
Sound Threshold
- Note sound readings during normal activities
- Make noise at levels you consider disruptive
- Set the soundThreshold between these values
- Adjust the maxSoundReading for LED visualization
Once everything is configured, perform a comprehensive test.
Enjoy!
Have fun with your new automated home management system.