Skip to content

Instantly share code, notes, and snippets.

@Blackshome
Blackshome / notifications-and-announcements.yaml
Last active April 26, 2026 19:00
notifications-and-announcements.yaml
blueprint:
name: Notifications & Announcements
description: >
# 📢 Notifications & Announcements
**Version: 1.5**
State your trigger and spread the word 💬🔉
@Blackshome
Blackshome / manual-light.yaml
Last active February 19, 2026 16:13
manual-light.yaml
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. 🪄💡
@Blackshome
Blackshome / low-battery-notifications-and-actions.yaml
Last active April 26, 2026 06:52
low-battery-notifications-and-actions.yaml
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!🔋⚡
@letsautomatenet
letsautomatenet / Home Assistant Notification Commands.yaml
Created December 6, 2023 11:17
Home Assistant Notification Commands
# 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
@Blackshome
Blackshome / sensor-light-add-on.yaml
Last active April 15, 2026 20:42
sensor-light-add-on.yaml
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! 🎬✨
@keithellis74
keithellis74 / Home-assistant-fan.yaml
Last active August 24, 2022 20:34
Home Assistant humidity controlled fan
# 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
@andycb
andycb / automations.yaml
Created July 4, 2021 17:38
Smart Bathroom Fan Automations
- id: '1624122675344'
alias: Bathroom Humidity Rising
description: ''
trigger:
- platform: state
entity_id: binary_sensor.bathroom_humity_rising
to: 'on'
from: 'off'
condition: []
action:
@bgulla
bgulla / readme.md
Last active November 11, 2025 22:00
Bad instructions on setting up a Hyperion DIY ambilight system

WLED Hyperion Ambilight Notes

Disclaimer

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.

Required hardware

  • Power Supply Amazon $22
  • WS2812B Addressable RGB LED Strips Amazon $30
  • NodeMCU 8266 Amazon $6
  • AndroidTV - There are alternatives that include using a HDMI grabber and decoding the signal on a Pi/server directly, but this works for a 0.1 alpha attempt. I used a NVidia ShieldTV
anonymous
anonymous / getECUData.py
Created January 14, 2017 07:23
Sample python3 script to scrape real-time data from an APS Systems ECU
#
# 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