Nothing about this is turnkey. It's a mess of protocols, firmware and apps, but if you're the right kind of nuts, keep reading.
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: Notifications & Announcements | |
| description: > | |
| # 📢 Notifications & Announcements | |
| **Version: 1.5** | |
| State your trigger and spread the word 💬🔉 | |
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: Manual Light | |
| description: > | |
| # 🪄 Manual Light | |
| **Version: 1.3** | |
| 👋 Say goodbye to lights left on! Step into automated lighting with an auto shut-off and a motion sensor reset. 🪄💡 | |
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: Low Battery Notifications & Actions | |
| description: > | |
| # 🪫 Low Battery Notifications & Actions | |
| **Version: 3.4** | |
| 🚀 Stay Charged, Stay Smart! Let's automate and take charge of your battery maintenance!🔋⚡ | |
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
| # Notification Commands - The useful commands are for Android only. | |
| # See this documentation for more information: https://companion.home-assistant.io/docs/notifications/notification-commands | |
| # Pause YouTube | |
| service: notify.mobile_app_marc_phone | |
| data: | |
| message: command_media | |
| data: | |
| media_package_name: com.google.android.youtube | |
| media_command: pause |
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: Sensor Light Add On | |
| description: > | |
| # ♾️ Sensor Light Add On - Media & Movie - House Alarm - Smoke Alarm + More | |
| **Version: 2.4** | |
| Lights, Camera, Action! Get ready to grab the popcorn because it's movie time with a touch of cinematic magic! 🎬✨ |
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
| # Derivative sensor in configuration.yaml. Note this can now be setup as a helper in the UI | |
| - platform: derivative | |
| name: Bathroom humidity rate of change | |
| source: sensor.sonoff_004_humidity | |
| time_window: 00:01:00 | |
| round: 1 | |
| # Automation to turn fan 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
| - id: '1624122675344' | |
| alias: Bathroom Humidity Rising | |
| description: '' | |
| trigger: | |
| - platform: state | |
| entity_id: binary_sensor.bathroom_humity_rising | |
| to: 'on' | |
| from: 'off' | |
| condition: [] | |
| action: |
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
| # | |
| # Sample python3 script to scrape real-time data from an APS Systems ECU, software version 3.10.10 | |
| # The '###' comments are instructions for setting this up to work on your system | |
| # | |
| ### needs the bs4 libary, so "$ pip install bs4" | |
| from bs4 import BeautifulSoup | |
| import urllib.request |