The Risk of the Front Door for Elderly Living Alone
A common scenario: an elderly person lives alone, someone rings the doorbell, they don’t know who it is, they have to walk to the door — and if it is an unfamiliar delivery person or worse, a fraudster?
Problems with traditional doorbells:
- Elderly person hears the bell but arrives too slowly — delivery has already left
- No camera, no way to know who is there
- Adult children elsewhere have no idea someone visited
Recommended Video Doorbells for Thai Homes
Reolink Video Doorbell (2,500-3,500 THB):
- 5MP resolution
- Direct RTSP stream in Home Assistant
- 10-meter night vision
- Two-way audio
- IP65 weather-resistant — ideal for Thailand’s hot humid climate
Hikvision DS-KV6113 (4,000-6,000 THB):
- Complete door phone system
- H.265+ compression saves storage
- PoE powered — no extra power wiring
- Integrates with Hikvision NVR
Reolink Doorbell WiFi (1,800-2,500 THB):
- Most accessible price point
- WiFi — no cable runs needed
- Push notification via app and LINE
LINE Integration: Family Sees Visitors Instantly
When someone rings, Home Assistant sends a camera snapshot to the family LINE group:
yaml
alias: "Doorbell - Notify Family via LINE"
trigger:
- platform: state
entity_id: binary_sensor.front_doorbell
to: "on"
action:
- service: camera.snapshot
target:
entity_id: camera.front_door
data:
filename: /tmp/doorbell_snapshot.jpg
- service: notify.line_family_group
data:
title: "🔔 Someone at the door"
message: "Visitor at home. Please check."
data:
photo:
file: /tmp/doorbell_snapshot.jpg
- service: tts.speak
target:
entity_id: media_player.living_room_speaker
data:
message: "มีคนที่ประตูหน้า"
language: th
Remote Unlock: Open the Door from the Office
An adult child receives the LINE notification with the visitor photo. If recognized, they tap an action button in the LINE bot to unlock immediately:
yaml
alias: "Remote Unlock via LINE"
trigger:
- platform: event
event_type: mobile_app_notification_action
event_data:
action: UNLOCK_FRONT_DOOR
action:
- service: lock.unlock
target:
entity_id: lock.front_door_smart_lock
- service: notify.line_family_group
data:
message: "🔓 Front door unlocked by {{ trigger.event.data.device_id }}"
- delay:
seconds: 30
- service: lock.lock
target:
entity_id: lock.front_door_smart_lock
- service: notify.line_family_group
data:
message: "🔒 Front door auto-locked (30 seconds)"
Package Delivery Motion Detection
For regular delivery personnel or routine caregivers:
yaml
alias: "Package Delivery Zone Alert"
trigger:
- platform: state
entity_id: binary_sensor.front_door_motion
to: "on"
condition:
- condition: time
after: "08:00:00"
before: "20:00:00"
- condition: state
entity_id: binary_sensor.front_doorbell
state: "off"
action:
- service: camera.snapshot
target:
entity_id: camera.front_door
data:
filename: /tmp/motion_snapshot.jpg
- service: notify.mobile_app_owner
data:
title: "📦 Motion at front door"
message: "Possible delivery. Check camera."
Elderly-Friendly Doorbell Configuration
Doorbell hardware for elderly:
- Chime volume > 75 dB for those with reduced hearing
- LED flash accompanying the chime
- Large button ≥ 5×5 cm
- Automatic night illumination at the doorbell unit
Dedicated elderly phone setup: If the elderly resident has a smartphone, HA Companion App can automatically display the front door camera feed when someone rings — no app navigation needed. The camera opens instantly on the phone screen.
