Event-driven, asynchronous security camera notifications

Posted March 14, 2025

Table of Contents

Overview

Image of Known Person notification from Home Assistant

Image of Known Person notification from Home Assistant

This event-driven, asynchronous camera notification system processes motion events from security cameras, classifies and describes images, and sends notifications based on various detection types such as person, pet, vehicle, or motion. Using a series of timeouts, MQTT messaging, and integration with machine learning models like YOLO and Google Gemini, the system aims to enhance detection accuracy and provide real-time alerts. It is built around an event-driven architecture that ensures responsiveness and scalability. Home Assistant supplies the data and triggers for automations, notification platform, and dashboard, while Node-RED orchestrates the logic and executes the workflows.

Yes, of course I am aware of the security implications of using cloud-based AI to describe the images. This was more of an experiment to see what’s possible than anything. I’m working on finding a locally-hosted alternative that will provide the description detail I want in under 5 seconds.

Image of camera dashboard in Home Assistant

Key features

Tech stack

Workflow & system components

1. Motion detection and initial event classification

Motion-detected flow section in Node-RED

2. Image change and download

Image-changed flow section in Node-RED

Image download flow section in Node-RED

3. Image classification / verification

Image-downloaded flow section in Node-RED

4a. Event-specific image handling

Image download flow section in Node-RED

Image download flow section in Node-RED

Image of latest camera images in Home Assistant

Image of latest camera images in Home Assistant

4b. Image description

Image classification/verification flow section in Node-RED

Image classification/verification flow section in Node-RED

Generate image description subflow in Node-RED

Generate image description subflow in Node-RED

5. Describe complete & check for police

Police check flow section in Node-RED

Police check flow section in Node-RED

6. Processing complete / timeout handling

Event notification flow section in Node-RED

7. Notification logic

“Do camera notification” subflow

Future improvements

Summary

This system ensures that camera-triggered events are processed quickly and accurately, providing reliable notifications based on detected activity. A previous iteration of this logic used wait-until nodes instead of an event-driven process. The event-driven process ensures non-blocking execution, drastically improving the reliability of the notifications while simultaneously reducing resource usage by Node-RED.


Change log