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
| alias: AI Analyse Top Street Camera Snapshot | |
| description: >- | |
| Takes a snapshot from the top street camera and uses AI to identify cars and | |
| people. | |
| triggers: | |
| - trigger: state | |
| entity_id: | |
| - binary_sensor.top_street_motion | |
| to: | |
| - "on" |
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
| alias: Compare Ollama LLM Models | |
| mode: single | |
| fields: | |
| test_prompt: | |
| name: Prompt | |
| description: The prompt/question to send to each model. | |
| example: Summarize the current weather and energy usage. | |
| required: true | |
| selector: | |
| text: null |
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
| # Automation 3: Don't Forget Your Stuff Reminder | |
| # Reminds you to grab work essentials on workday mornings | |
| alias: Work Essentials Reminder | |
| description: >- | |
| Reminds you in the morning if you open the door and your phone is still | |
| charging. | |
| triggers: | |
| - entity_id: | |
| - lock.front_door # CHANGE THIS to your door lock or sensor | |
| to: unlocked |
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
| alias: Check if tomorrow is workday and notify | |
| description: "Sends evening notification about tomorrow's work status" | |
| triggers: | |
| - trigger: time | |
| at: "20:00:00" | |
| actions: | |
| # Step 1: Check if tomorrow is a workday | |
| - action: workday.check_date | |
| metadata: {} | |
| data: |
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
| # Automation 1: Smart Real Workday Light Alarm | |
| # This turns on bedroom lights only on real work mornings | |
| description: >- | |
| Gently turns on the bedroom light on workdays at 06:30 AM with a gradual | |
| transition. | |
| triggers: | |
| - trigger: time | |
| at: "06:30:00" | |
| conditions: | |
| - condition: state |
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
| alias: Starlink Sleep at Night to Save Data | |
| description: Enable sleep schedule overnight | |
| triggers: | |
| - trigger: state | |
| entity_id: | |
| - sensor.kirils_phone_battery_state | |
| from: Not Charging | |
| to: Charging | |
| conditions: | |
| - condition: time |
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
| alias: Starlink Thermal Throttle Alert | |
| description: Notify if performance is reduced due to overheating | |
| triggers: | |
| - entity_id: | |
| - binary_sensor.starlink_thermal_throttle | |
| to: "on" | |
| for: | |
| hours: 0 | |
| minutes: 0 | |
| seconds: 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
| alias: Starlink Dish Obstructed Alert | |
| description: Notify if dish is obstructed for too long | |
| triggers: | |
| - entity_id: | |
| - binary_sensor.starlink_obstructed | |
| to: "on" | |
| for: | |
| hours: 0 | |
| minutes: 0 | |
| seconds: 5 |
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
| alias: Starlink Offline Alert | |
| description: Notify when Starlink connection drops | |
| triggers: | |
| - entity_id: | |
| - binary_sensor.starlink_connectivity | |
| to: "off" | |
| trigger: state | |
| actions: | |
| - action: notify.mobile_app_kirils_phone | |
| data: |
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
| alias: Weather and comfort report | |
| sequence: | |
| - action: ai_task.generate_data | |
| data: | |
| task_name: weather comfort report | |
| instructions: | | |
| Based on the current conditions: | |
| - Outdoor temperature: {{ states('sensor.outdoor_temperature') }}°C | |
| - Indoor temperature: {{ states('sensor.family_room_temperature') }}°C | |
| - Indoor humidity: {{ states('sensor.family_room_humidity') }}% |
NewerOlder