จากไซเรนธรรมดาสู่ระบบ AI Security
สัญญาณกันขโมยแบบดั้งเดิมตรวจจับการเคลื่อนไหวแล้วดังไซเรน แต่ไม่สามารถแยกแยะว่าเป็นแมว เพื่อนบ้าน หรือผู้บุกรุก ส่งผลให้เกิด false alarm 80–95% ของการแจ้งเตือนทั้งหมด (ข้อมูล FBI) ระบบ AI + IoT ยุคใหม่แก้จุดนี้ด้วย object detection เฉพาะ (person/vehicle/animal) ผ่าน camera AI edge processing
สถาปัตยกรรม AI + IoT Security ที่แนะนำ
Layer 1: Detection
→ Frigate NVR (Coral TPU) + IP cameras RTSP
→ Aqara/Zigbee door/window sensors
→ PIR motion sensor + microwave dual-tech
Layer 2: Intelligence
→ Home Assistant automations + person zone filtering
→ Face recognition (InsightFace local)
→ Behavior: loitering > 60s → escalate
Layer 3: Response
→ Lights on + siren 5s + LINE photo alert
→ PTZ pan to zone + cloud snapshot
→ Smart lock status check
เปรียบเทียบอุปกรณ์ที่นิยมในไทย
| อุปกรณ์ | จุดเด่น | ราคา | HA Integration |
|---|---|---|---|
| Aqara Hub M3 + sensors | Zigbee/Matter, local processing | ~3,500 บาท | ✓ |
| Hikvision DS-2CD2347G2 | 4K, ColorVu low-light, ONVIF | ~4,500 บาท | ✓ ONVIF |
| Reolink RLC-810A | PoE, AI person/vehicle, free cloud | ~3,000 บาท | ✓ ONVIF |
| Frigate NVR (software) | Local AI, Coral TPU, all RTSP | ฟรี + hardware | ✓ MQTT |
| Ezviz CS-H8C | 4K PTZ, color night vision | ~4,000 บาท | ✓ ONVIF |
ลด False Alarm ด้วย Zone + Time Filter
ปัญหาใหญ่ที่สุดของระบบ security คือ false alarm ที่ทำให้เจ้าของบ้านชินชาและเพิกเฉย automation ที่ดีต้องมีชั้นกรอง:
yaml
alias: Security — Smart Alert with False Alarm Filter
trigger:
- platform: mqtt
topic: frigate/events
condition:
# กรอง: เฉพาะ person ในโซน driveway/gate
- condition: template
value_template: >-
{{ trigger.payload_json.after.label == 'person' and
('driveway_zone' in trigger.payload_json.after.current_zones or
'gate_zone' in trigger.payload_json.after.current_zones) }}
# กรอง: เฉพาะเวลา 20:00–06:00
- condition: time
after: "20:00:00"
before: "06:00:00"
# กรอง: cooldown 2 นาที
- condition: template
value_template: >-
{{ (now() - states.automation.security_smart_alert.last_triggered).seconds > 120
if states.automation.security_smart_alert.last_triggered else true }}
action:
- service: light.turn_on
target:
entity_id: light.outdoor_floodlights
data:
brightness_pct: 100
- service: notify.line_notify
data:
message: >-
🔴 พบบุคคลที่ {{ trigger.payload_json.after.camera }} — {{ now().strftime('%H:%M') }}
http://frigate.local/api/events/{{ trigger.payload_json.after.id }}/snapshot.jpg
mode: single
Matter + Zigbee: ทำไมมาตรฐานเปิดสำคัญ
การเลือกอุปกรณ์ที่รองรับ Matter (มาตรฐานสากลจาก CSA/Apple/Google/Amazon) หรือ Zigbee ทำให้:
- ใช้งานร่วมกับ Hub/Platform ใดก็ได้ในอนาคต
- ไม่ถูก lock-in กับ cloud ของผู้ผลิตรายใดรายหนึ่ง
- ทำงานได้แม้ internet ล่ม (local control)
สำหรับไทย Aqara, IKEA Tradfri, Philips Hue, และ Sonoff ZBBRIDGE รองรับ Zigbee ทั้งหมด
Cloud vs. Local: ความเสี่ยงที่หลายคนมองข้าม
ระบบ cloud-only security มีความเสี่ยง: ค่าบริการรายเดือน, privacy ข้อมูลในเซิร์ฟเวอร์ต่างประเทศ, และระบบใช้งานไม่ได้เมื่อ internet ล่ม Frigate + Home Assistant local ทำงานได้ 100% แม้ไม่มี internet — สำคัญมากสำหรับบ้านในไทยที่ internet อาจไม่เสถียรในบางพื้นที่
สรุป ROI
ระบบ AI + IoT security ที่ดีออกแบบให้ แจ้งเตือนน้อยครั้งแต่แม่นยำ — ดีกว่าระบบที่ดังบ่อยจนเจ้าของบ้านปิดการแจ้งเตือน ลงทุนเริ่มต้น 10,000–30,000 บาทสำหรับระบบ local AI ที่ไม่มีค่ารายเดือน