-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml.example
More file actions
90 lines (78 loc) · 2.28 KB
/
config.yaml.example
File metadata and controls
90 lines (78 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Example configuration for Frigate Notification App
# Copy this to your AppDaemon conf directory and customize
frigate_notify:
module: i1_frigate_notifier
class: FrigateNotification
# MQTT Configuration
mqtt_topic: "frigate/events"
# Frigate Configuration
frigate_url: "https://your-frigate-instance.com/api/events"
ext_domain: "https://your-external-domain.com"
# Storage Configuration
snapshot_dir: "/config/frigate_snapshots"
# Filtering Options
only_zones: true # Only notify when objects enter zones
# Advanced Settings
max_file_age_days: 30 # Days to keep video files before cleanup
cache_ttl_hours: 24 # Hours to keep cache entries
connection_timeout: 30 # Connection timeout in seconds
# Face Detection Settings
face_detection_enabled: true # Enable/disable face detection features
face_detection_threshold: 0.7 # Minimum confidence threshold for face detection (0.0-1.0)
# User Notifications
persons:
- name: "Primary User"
notify: "mobile_app_primary_phone"
labels:
- "person"
- "car"
- "truck"
cooldown: 120 # 2 minutes
zones:
- "driveway"
- "front_door"
- "backyard"
cameras:
- "doorbell_cam"
- "driveway_cam"
- "backyard_cam"
- name: "Secondary User"
notify: "mobile_app_secondary_phone"
labels:
- "person"
cooldown: 300 # 5 minutes
# No zone/camera filters - will receive all person events
- name: "Emergency Contact"
notify: "notify.telegram"
labels:
- "person"
- "car"
- "truck"
- "bicycle"
cooldown: 60 # 1 minute
zones:
- "driveway"
- "front_door"
cameras:
- "doorbell_cam"
- "driveway_cam"
- name: "Night Watch"
notify: "mobile_app_night_phone"
labels:
- "person"
- "car"
cooldown: 180 # 3 minutes
zones:
- "driveway"
- "side_yard"
cameras:
- "driveway_cam"
- "side_yard_cam"
# Camera Icons (optional)
cam_icons:
doorbell_cam: "mdi:doorbell-video"
driveway_cam: "mdi:car-estate"
backyard_cam: "mdi:home-group"
front_yard_cam: "mdi:home-variant"
garage_cam: "mdi:garage"
side_yard_cam: "mdi:fence"