Journal

4G/LTE Cellular Backup for Home Alarm Systems: Keeping Alerts Active When Internet Fails

4G/LTE Cellular Backup สำหรับระบบกันขโมยบ้าน: ป้องกัน Alarm เงียบเมื่อ Internet ขาด

May 12, 2026 · 1 min read
4G/LTE Cellular Backup for Home Alarm Systems: Keeping Alerts Active When Internet Fails

The Critical Weakness of Internet-Only Smart Security

Smart security systems that rely solely on IP notification (Wi-Fi, fibre) have a critical vulnerability: if the router loses power, the fibre line fails, or an intruder cuts the phone/internet line before entering, all alerts go silent. Cellular backup solves this by sending alerts over a cellular network independent of the ISP.

Cellular Modules for Backup Communicators

SIM800L (2G GSM/GPRS): 80–150 THB, supports SMS and calls on 2G networks still active in Thailand. Alert-only (no meaningful data speed). Controlled by Arduino/ESP32 via AT commands.

SIM7600E (4G LTE-A): 800–1,500 THB, supports 4G LTE data + SMS + voice calls on True/DTAC/AIS 4G networks. Data speed up to 150 Mbps — can send camera snapshots via 4G.

A9G (GSM + GPS): 200–350 THB, combines GSM and GPS in one module — useful when location tracking is also required.

Cellular Backup Architecture in Home Assistant

Hardware: SIM7600E module connected to Raspberry Pi via USB; AIS/True SIM card (1GB/month data package ~100 THB); UPS for router + Pi to prevent power-cut attacks.

Software: Gammu (Python library) or HA SMS integration via notify.sms. Fallback logic: if IP notification times out after 10 seconds, automatically switch to SMS/call.

Automation example: trigger on alarm_triggered = ON, condition internet_status = offline, action: send SMS alert with ALARM! message to two mobile numbers.

Dual-Path Notification: IP + Cellular Simultaneously

For high-security setups, send alerts on both paths simultaneously — LINE OA (IP) + SMS (cellular). If LINE fails (no data signal), SMS still arrives because SMS uses circuit-switched technology requiring no data connection.

Protection Against GSM Jammers

Some intruders use GSM jammers to block cellular signals. Mitigate with: a multi-band SIM7600 operating on multiple frequencies (700/850/900/1800/2100/2600 MHz) — harder to jam across all bands simultaneously; a local siren that activates without needing to send any alert; an alarm panel with tamper detection that triggers on cover removal or sensor disconnection.

SIM Card Management for IoT

AIS NB-IoT SIM: suited to backup systems sending occasional SMS — low cost, pay-as-you-go. True Move H IoT SIM: annual package pricing, low cost, good for backup systems also needing 4G data. Choose a SIM with a long active-without-top-up life to avoid service interruption.

ROI and Cost

SIM7600E module: 800–1,500 THB. SIM card + 1-year data package: 300–600 THB. Total year-one cost: 1,100–2,100 THB — a fraction of home asset values. Subsequent years: only the SIM package renewal at 300–600 THB/year.

Questions & answers

What is the difference between SIM800L and SIM7600E — which should I choose for backup alarm?
SIM800L uses 2G GSM, costs 80–150 THB, and supports SMS and calls only — sufficient for alert-only backup. SIM7600E uses 4G LTE, costs 800–1,500 THB, and also supports data — necessary if you want to send camera snapshots via 4G.
What is Gammu and how do I configure it in Home Assistant?
Gammu is an open-source library for controlling GSM/4G modems via Python. Install Gammu on Raspberry Pi OS, configure /etc/gammu-smsdrc to point to the USB port of the SIM module, then use the HA notify.gammu_sms service to send SMS alerts.
If an intruder uses a GSM jammer, does the cellular backup still work?
Cheap jammers can only block 1–2 frequency bands. The SIM7600 supporting 6+ bands is difficult to jam completely. Additionally, install a local siren that activates without sending any alert — a jammer has no effect on a physical siren.
What UPS size is needed for the router and Pi?
A typical router draws 10–25W; Pi 5 draws 5–15W — combined 20–40W. A 300 VA UPS provides 1–2 hours of backup — sufficient time for the owner to respond to alerts. An APC Back-UPS 300–600 VA is recommended.

Related reading