Imagine a visitor buzzing your apartment from a cheap, no-name intercom panel bought for just 400 rubles (about $5). Now imagine that same buzz instantly triggering a Telegram notification with a photo and a live video stream on your phone. Sounds like a sci-fi hack? It’s real, and it’s surprisingly simple.
In a detailed write-up on Habr, a developer and hardware hacker documented the entire process of transforming a low-cost Chinese intercom into a smart, internet-connected doorbell that integrates seamlessly with Telegram. The project, published in mid-2026, demonstrates how accessible IoT hacking has become for anyone with basic electronics skills and a willingness to tinker.
This isn’t about building a polished consumer product. It’s about proving that even the most mundane hardware can be given a digital brain. Let’s break down the problem, the solution, the results, and what this means for the growing world of DIY smart home automation.
The Problem: Dumb Intercoms in a Smart World
Most budget intercoms from Chinese manufacturers are strictly analog. They consist of a simple audio circuit, a button to open the door, and maybe a basic speaker. No network connectivity, no camera, no logging. In 2026, that feels like a relic.
The developer’s specific challenge was an apartment building with a cheap intercom panel at the entrance. Residents had no way to see who was buzzing, let alone receive remote notifications. Traditional smart intercoms from brands like Ring or Akuvox cost hundreds of dollars and often require professional installation. The goal was to replicate that functionality at a fraction of the cost using off-the-shelf components.
The core problems were:
- No video capture on the existing panel.
- No way to trigger remote alerts.
- The intercom’s internal circuit was undocumented.
- Power and data transmission over existing wiring was limited.
The Solution: ESP32, a Camera, and Telegram Bot
The developer’s approach was a classic IoT hack: replace the intercom’s brain with a microcontroller that could handle both the analog door-open signal and digital communication. The chosen components were:
- ESP32-CAM module (a popular microcontroller with built-in camera and Wi-Fi, costs around $8-10).
- Relay module to simulate pressing the door-open button.
- Step-down voltage regulator to power the ESP32 from the intercom’s 12V line.
- A custom Telegram bot to handle incoming calls and media.
The intercom’s existing “call” button was wired to a GPIO pin on the ESP32. When a visitor pressed it, the ESP32 detected the voltage change, woke from deep sleep, captured a photo using the onboard camera, and sent it to a pre-configured Telegram chat via the bot API. Simultaneously, a two-way audio stream was established using a simple UDP-based voice protocol.
The developer also implemented a “door open” command in Telegram: the user could reply with a specific text or button press, which triggered the relay to close the circuit for a few seconds — exactly like pressing the physical unlock button.
Key Technical Decisions
| Component | Purpose | Cost (approx.) |
|---|---|---|
| ESP32-CAM | Microcontroller + camera + Wi-Fi | $8 |
| 5V relay module | Simulates door open button | $1 |
| Voltage regulator (AMS1117-3.3) | Powers ESP32 from 12V supply | $0.50 |
| Resistors, wires, PCB | Misc. wiring | $2 |
| Total | $11.50 |
The entire bill of materials was under $12 — roughly 3x the cost of the intercom itself, but still a fraction of a commercial smart doorbell.
The Results: Real-World Performance
The project team tested the setup over several weeks. Here’s what they found:
- Response time: From button press to Telegram notification: about 2–3 seconds. That’s fast enough for real-world use.
- Photo quality: The ESP32-CAM’s 2MP sensor (1600x1200) was adequate for daytime identification. At night, without IR LEDs, images were useless — a limitation noted for future improvement.
- Audio quality: The two-way audio, implemented via UDP streaming, had noticeable lag (around 1 second) but was intelligible. The built-in microphone on the ESP32-CAM was sensitive enough for hallway conversations.
- Reliability: The system crashed twice during testing due to Wi-Fi reconnection issues. The developer added a watchdog timer to auto-reboot, which solved the problem.
- Power consumption: The ESP32 in deep sleep mode drew only 5 µA, meaning it could run for months on the intercom’s power supply without issues.
The Telegram bot integration was praised for its simplicity. The developer used the standard bot API to send photos and receive callback queries for the door unlock button. No third-party cloud services were needed beyond Telegram’s servers.
Challenges and Lessons Learned
The article candidly discusses several hurdles:
- Reverse-engineering the intercom circuit: The original panel had no documentation. The developer had to trace the PCB traces and measure voltages with a multimeter to identify the call button signal and the door unlock relay coil.
- Audio streaming: The ESP32’s limited RAM (520KB) made full-duplex audio challenging. The developer settled for half-duplex (push-to-talk style) to avoid buffer overflows.
- Wi-Fi stability: The ESP32-CAM is notorious for Wi-Fi drops when streaming video. The solution was to send only a single photo per call and use a separate, lightweight UDP audio stream.
- Mounting: The ESP32-CAM had to be placed inside the intercom panel’s tiny enclosure, which required careful cutting and a custom 3D-printed bracket.
Why This Matters for Smart Home Enthusiasts
This project is a perfect example of the “right to repair” and “right to hack” movement in 2026. Instead of replacing a perfectly functional (if dumb) intercom with an expensive smart alternative, the developer extended its life with minimal cost and moderate effort.
The broader trend is clear: with components like the ESP32 becoming cheaper and more powerful, and platforms like Telegram offering free, reliable APIs, the barrier to creating custom smart home integrations has never been lower. According to a 2025 survey by the Eclipse IoT Working Group, over 40% of IoT developers now use ESP32-based boards for their prototypes, citing cost and community support as primary factors.
For apartment dwellers, landlords, or small businesses, this hack offers a path to basic security and convenience without vendor lock-in. The entire system is self-hosted — no monthly fees, no cloud dependency beyond Telegram (which is free). If Telegram’s API changes, the developer can switch to another messenger like Matrix or even a custom web server.
Conclusion: A $12 Upgrade That Changes Everything
Turning a 400-ruble Chinese intercom into a Telegram-connected video doorbell is not just a neat weekend project. It’s a statement: smart home technology doesn’t have to be expensive, proprietary, or complicated.
The developer’s detailed write-up, complete with circuit diagrams and code snippets, is a goldmine for anyone interested in IoT hacking. The total cost — under $12 — is laughably low compared to commercial alternatives. The only trade-offs are moderate technical skill required and the lack of night vision (easily fixable with an external IR illuminator).
In 2026, as more people seek to reduce e-waste and customize their living spaces, projects like this are likely to become the norm. The next time a visitor buzzes your apartment, you could be watching them from a beach in Thailand — all thanks to a $5 intercom and a few lines of code.
Comments