This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import glob | |
| import time | |
| import paho.mqtt.client as mqtt | |
| import json | |
| # --- MQTT Configuration --- | |
| MQTT_BROKER = "homeassistant.local" # Example: "192.168.1.100" | |
| MQTT_PORT = 1883 | |
| MQTT_USERNAME = "mosquitto" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Camera - Send & Save Camera snapshot with custom triggers and with Conditions | |
| description: This automation blueprint creates a camera snapshot if motion is detected, | |
| or if a binary sensor's state turns 'off' to 'on', and sends a notification to | |
| your phone with the picture. Clicking the notification will navigate to dashboard | |
| URL. [More Info](https://community.home-assistant.io/t/camera-send-save-snapshot-to-mobile-device-when-motion-is-detected-with-conditions/604156) | |
| (v2.2.9) [Automation] | |
| author: TheFalseReality | |
| homeassistant: | |
| min_version: 2024.6.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Camera - Send & Save Camera snapshot when if a binary sensor's state turns | |
| 'off' to 'on', with Conditions | |
| description: This automation blueprint creates a camera snapshot if motion is detected, | |
| or if a binary sensor's state turns 'off' to 'on', and sends a notification to | |
| your phone with the picture. Clicking the notification will navigate to dashboard | |
| URL. [More Info](https://community.home-assistant.io/t/camera-send-save-snapshot-to-mobile-device-when-motion-is-detected-with-conditions/604156) | |
| (v2.3) [Automation] | |
| author: TheFalseReality | |
| homeassistant: |