Journal

Smart Video Doorbell for Elderly Homes: View Visitors and Unlock Remotely via LINE From Anywhere

Video Doorbell สมาร์ทโฮมสำหรับผู้สูงอายุ: ดูผู้มาเยือนและปลดล็อคประตูผ่าน LINE จากทุกที่

May 13, 2026 · 1 min read
Smart Video Doorbell for Elderly Homes: View Visitors and Unlock Remotely via LINE From Anywhere

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.

Questions & answers

Can a video doorbell send photos directly to a LINE group?
Yes. Use a Home Assistant trigger on the doorbell button sensor, a camera snapshot action, and the LINE Notify integration. When someone rings, the system captures a snapshot and sends it with a message to the family LINE group within 2-3 seconds.
Can family members unlock the front door remotely from another location?
Yes, via HA mobile app action buttons or LINE bot commands. The system unlocks the smart lock and sends a confirmation to the LINE group. The door auto-locks after 30 seconds for security.
What features should a good video doorbell for Thai homes have?
IP65 weatherproofing (heat and rain), ≥ 10-meter night vision, two-way audio, RTSP support for local recording in HA, push notification latency under 3 seconds, and a large button size for elderly users.
Can an elderly person with a smartphone automatically see the front door camera when someone rings?
Yes. HA Companion App can be configured to automatically display the front door camera feed on the elderly resident’s phone when the doorbell rings — with no app navigation required. They see the visitor immediately without walking to the door.

Related reading