Journal

Smart Home Elderly Care System: Innovation to Reduce Fall Risk and Household Accidents

ระบบดูแลผู้สูงอายุด้วย Smart Home: นวัตกรรมลดความเสี่ยงการหกล้มและอุบัติเหตุในบ้าน

May 12, 2026 · 1 min read
Smart Home Elderly Care System: Innovation to Reduce Fall Risk and Household Accidents

The Scale of the Problem: Falls in Thai Elderly

Thailand’s Department of Medical Services reports that approximately 30% of Thais aged 60 and above experience at least one fall per year, and 1 in 5 of those falls results in a serious injury such as a hip fracture — which carries a 20–30% one-year mortality rate in elderly populations. The primary incident locations are bathrooms (45%), stairs (25%), and bedrooms (15%) — all of which can be monitored with smart sensors.

Fall Detection Technologies in Smart Home

Floor Pressure Sensor (FSR): Pressure-sensitive mats placed under bathroom rugs or beside beds detect walking patterns. A sudden-impact pattern (pressure spike followed by stationary weight) triggers an automatic fall alert. Ideal for bathrooms and bedside positions.

mmWave Radar (LD2410/LD2450): Detects movement and body posture without a camera, fully preserving privacy. Distinguishes between lying flat on the floor (fall) and sitting in a chair (normal). Runs locally via ESPHome in Home Assistant.

AI Camera + Pose Estimation: An IP camera running a pose estimation model (Google MediaPipe or OpenPose on Coral TPU) analyses skeleton landmarks and flags fall posture patterns. Higher accuracy than radar but raises privacy concerns.

Wearable SOS Button + Fall Detector: Devices such as Apple Watch (built-in fall detection), Philips Lifeline, or Medical Alert bracelets detect falls via accelerometer and auto-dial emergency contacts.

Designing a Smart Elderly Care Zone

Bathroom — highest risk zone:

  • Anti-slip mat with FSR pressure sensor
  • mmWave radar alerting after 15+ minutes of stillness
  • Non-contact pull-cord emergency alarm
  • Motion-activated lighting that illuminates immediately at night

Stairs — secondary risk zone:

  • Motion sensor + LED stair lighting that activates as the resident approaches
  • Stair gate sensor alerting when the elderly person uses stairs at night

Bedroom:

  • Bed exit sensor (FSR mat beside bed) alerting on night exits
  • mmWave fall detection within the room
  • Automatic night-light path from bed to bathroom

Elderly Fall Detection Automation

yaml
alias: "Elderly Fall Alert - Bathroom"
trigger:
  - platform: state
    entity_id: binary_sensor.bathroom_mmwave
    to: "on"
    for:
      minutes: 15
condition:
  - condition: time
    after: "21:00:00"
    before: "06:00:00"
action:
  - service: notify.line_notify
    data:
      message: "ALERT: Elderly resident in bathroom over 15 minutes — please check"
  - service: tts.google_translate_say
    target:
      entity_id: media_player.living_room_speaker
    data:
      message: "Attention — please check the bathroom."

Daily Activity Monitoring for Long-Term Health Tracking

Beyond fall detection, motion sensors throughout the home log activity patterns:

Morning check-in: If no movement is detected in the kitchen or bathroom by 8–9 a.m., HA sends a LINE message to family members.

Sleep quality: Beside-bed mmWave tracks breathing rate and the number of night exits. Anomalies may signal early warning signs of cardiac issues or sleep apnea.

Medication reminders: A smart plug on a medication box or an NFC tag on the pill organiser triggers a reminder automation at the scheduled medication time.

Elderly Care Smart Home Budget

Basic package (฿8,000–15,000): 2 mmWave sensors (bathroom + bedroom), 3 motion sensors, 2 smart plugs, 1 SOS button, LINE Notify integration.

Full package (฿15,000–30,000): Adds 2 FSR pressure sensor mats, sleep monitor, 1 IP camera with local AI, wearable SOS button, smart lock, automatic night lighting.

Investing in a Smart Home Elderly Care system costs far less than a single hospitalisation from a fall, and provides 24-hour peace of mind for family members living at a distance.

Questions & answers

What is the difference between mmWave and PIR for fall detection?
PIR only detects movement — it cannot differentiate postures. mmWave detects presence even when still (e.g., an unconscious person) and can partially distinguish postures. It is far more suitable for elderly care applications.
How do you install an FSR pressure sensor in a bathroom?
Place the FSR mat under an anti-slip bath mat beside the door or in front of the toilet. Connect via ESP32 to ESPHome and Home Assistant, then set a pressure threshold that identifies a fall impact pattern.
Does Apple Watch Fall Detection integrate with Home Assistant?
Partially — via the iPhone HA Companion App receiving Apple Watch Health notifications. Direct integration requires an Apple HomeKit Shortcut to trigger an HA action.
Does the elderly care system work when the internet goes down?
Yes. mmWave sensors, motion sensors, and local automations run 100% locally via ESPHome + HA. Only LINE push notifications require internet access.
Should I tell the elderly resident about the monitoring system?
Always. Transparency builds trust and preserves dignity. Using mmWave instead of cameras in the bathroom significantly reduces privacy intrusion while maintaining full safety functionality.

Related reading