Traditional vs Smart Home Burglar Alarm
Traditional alarm systems have three core limitations: siren-only notification (no push alerts to the owner), no accompanying footage making it impossible to confirm real incidents, and high false-alarm rates from low-quality sensors. Smart Home Burglar Alarms solve all three with multi-layer detection combined with AI video analytics for pre-alert verification — reducing false alarms by 80–90%.
Multi-Zone Alarm Architecture
Zone 1 — Perimeter: Door/window sensors on all ground-floor openings, motion sensors at entry points, IP cameras or Frigate at the front and entrance areas.
Zone 2 — Interior Entry: PIR motion sensors in main corridors, hallways, and stairs — acting as second confirmation when Zone 1 is triggered.
Zone 3 — Core: Bedrooms, home office, safe. Vibration sensors and glass-break sensors guard against forced-entry through windows.
Recommended Devices for Zone-Based Burglar Alarm
Door/Window Sensor — Aqara P2 (Zigbee): 3-year battery, IP65 waterproof. ~฿500–600 per unit. Ideal for front door and windows.
Motion Sensor — Aqara Motion Sensor P1 (Zigbee): 170° FOV, 7 m range. ~฿700 per unit.
Glass Break Sensor — Bosch ISSD-BSG-BLU-1: Frequency-discriminating detection of glass-break acoustic signature. Resistant to common household noise.
Vibration Sensor — Aqara Vibration Sensor (Zigbee): Attach to safes or valuables storage. Detects movement or abnormal vibration.
IP Camera + Frigate NVR: Reolink RLC-810A (PoE) + Coral USB TPU for local-AI person detection.
Configuring the Home Assistant Alarm Control Panel
HA’s built-in alarm_control_panel supports states: disarmed, armed_away, armed_home, armed_night, and triggered. Example Zone 1 automation:
yaml
alias: "Burglar Alarm - Zone 1 Trigger"
trigger:
- platform: state
entity_id:
- binary_sensor.front_door
- binary_sensor.back_door
- binary_sensor.garage_door
to: "on"
condition:
- condition: state
entity_id: alarm_control_panel.home_alarm
state: "armed_away"
action:
- service: alarm_control_panel.alarm_trigger
target:
entity_id: alarm_control_panel.home_alarm
- service: notify.line_notify
data:
message: "ALERT: {{ trigger.to_state.name }} opened while Armed Away"
- service: camera.snapshot
target:
entity_id: camera.front_door_camera
data:
filename: "/config/snapshots/alert_{{ now().strftime('%Y%m%d_%H%M%S') }}.jpg"
Anti-False Alarm: Cross-Zone Verification
To minimise false alarms, require signals from at least two zones within 60 seconds before triggering a full alert:
yaml
alias: "Anti-False Alarm - Dual Zone Confirmation"
trigger:
- platform: state
entity_id: binary_sensor.zone1_motion
to: "on"
condition:
- condition: state
entity_id: binary_sensor.zone2_motion
state: "on"
- condition: state
entity_id: alarm_control_panel.home_alarm
state: "armed_away"
action:
- service: alarm_control_panel.alarm_trigger
target:
entity_id: alarm_control_panel.home_alarm
Alert and Response Plan
Layer 1 — Push notification via LINE/mobile app with camera snapshot within 5 seconds. Layer 2 — All lights on and siren activated within 10 seconds. Layer 3 — Automated VoIP call to the owner or building management. Layer 4 — Video clip saved to NAS/cloud as evidence.
A correctly designed smart burglar alarm does not simply alert faster than a traditional system — it provides enough context for the owner to make an informed decision about calling the police, rather than reacting blindly to a siren.
