Compare commits

..

8 Commits

5 changed files with 115 additions and 119 deletions

4
.gitignore vendored
View File

@@ -62,6 +62,7 @@ llmvision
backups backups
deps deps
config/backups config/backups
panel-notes/
icloud icloud
__pycache__ __pycache__
hacs hacs
@@ -74,3 +75,6 @@ tts
.ssh .ssh
.auth .auth
.nest .nest
panel-notes
docker_14
docker_69

View File

@@ -1 +1 @@
2025.12.0 2025.12.1

View File

@@ -1,27 +0,0 @@
blueprint:
name: Invert a binary sensor
description: Creates a binary_sensor which holds the inverted value of a reference binary_sensor
domain: template
source_url: https://github.com/home-assistant/core/blob/dev/homeassistant/components/template/blueprints/inverted_binary_sensor.yaml
input:
reference_entity:
name: Binary sensor to be inverted
description: The binary_sensor which needs to have its value inverted
selector:
entity:
domain: binary_sensor
variables:
reference_entity: !input reference_entity
binary_sensor:
state: >
{% if states(reference_entity) == 'on' %}
off
{% elif states(reference_entity) == 'off' %}
on
{% else %}
{{ states(reference_entity) }}
{% endif %}
# delay_on: not_used in this example
# delay_off: not_used in this example
# auto_off: not_used in this example
availability: "{{ states(reference_entity) not in ('unknown', 'unavailable') }}"

View File

@@ -1,84 +1,103 @@
#------------------------------------------- ######################################################################
# HomeKit Configuration for Home Assistant # @CCOSTAN - Follow Me on X
# # For more info visit https://www.vcloudinfo.com/click-here
# Description: This file controls the HomeKit integration settings, # Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
# defining which entities are exposed to Apple HomeKit. # -------------------------------------------------------------------
# # HomeKit Configuration - Multi-bridge for stability + Alexa-friendly streams
# Follow me on https://www.vcloudinfo.com/click-here # Main bridge for lights/locks/climate; cameras/lock split to accessory bridges.
# Original Repository: https://github.com/CCOSTAN/Home-AssistantConfig # Camera streams use go2rtc substreams/restreams for faster Echo Show playback.
##------------------------------------------- # -------------------------------------------------------------------
######################################################################
filter: # Main bridge (everything except cameras + front door lock)
include_domains: - name: Home Assistant Bridge
- climate mode: bridge
- cover port: 21063
- lock filter:
exclude_domains: include_domains:
- camera - climate
- media_player - cover
- sensor - lock
- script exclude_domains:
- sensor - camera
- switch - media_player
- scene - sensor
- light - script
include_entities: - switch
- camera.bedroomgate - scene
- camera.driveway - light
- camera.filtergate include_entities:
- camera.frontdoorbell - light.bedroom
- camera.poolcam - light.bedroom_lights
- camera.frontlawn - light.den_lights
- camera.garagecam - light.dinette_lights
- light.bedroom - light.dining_room_lights
- light.bedroom_lights - light.foyer
- light.den_lights - light.garage_lights
- light.dinette_lights - light.hallway_lights
- light.dining_room_lights - light.kitchen_lights
- light.foyer - light.living_room_accents
- light.garage_lights - light.living_room_lights
- light.hallway_lights - light.office_lights
- light.kitchen_lights - light.outdoor_front_lights
- light.living_room_accents - light.upstairs_lights
- light.living_room_lights - light.upstairs_lamp
- light.office_lights - light.sink
- light.outdoor_front_lights - switch.lr_amp
- light.upstairs_lights exclude_entities:
- light.upstairs_lamp - lock.front_door
- light.sink - lock.spaceship_door_lock
- switch.lr_amp - lock.spaceship_charger_door_lock
exclude_entities: - lock.spaceship_trunk_lock
- lock.spaceship_door_lock - lock.spaceship_frunk_lock
- lock.spaceship_charger_door_lock - climate.spaceship_hvac_climate_system
- lock.spaceship_trunk_lock
- lock.spaceship_frunk_lock # Cameras in accessory mode (better performance/reliability)
- climate.spaceship_hvac_climate_system - name: HomeKit Cameras
mode: accessory
entity_config: port: 21064
camera.frontdoorbell: filter:
video_codec: copy include_entities:
stream_source: rtsp://192.168.10.14:8554/frontdoorbell?mp4 - camera.bedroomgate
camera.poolcam: - camera.driveway
linked_motion_sensor: binary_sensor.poolcam_motion_sensor - camera.filtergate
video_codec: copy - camera.frontdoorbell
stream_source: rtsp://192.168.10.14:8554/poolcam?mp4 - camera.poolcam
camera.frontlawn: - camera.frontlawn
linked_motion_sensor: binary_sensor.frontlawn_motion_sensor - camera.garagecam
video_codec: copy entity_config:
stream_source: rtsp://192.168.10.14:8554/frontlawn?mp4 camera.frontdoorbell:
camera.garagecam: video_codec: copy
linked_motion_sensor: binary_sensor.garagecam_motion_sensor stream_source: rtsp://192.168.10.14:8554/frontdoorbell_alexa
video_codec: copy camera.poolcam:
stream_source: rtsp://192.168.10.14:8554/garagecam?mp4 linked_motion_sensor: binary_sensor.poolcam_motion_sensor
camera.bedroomgate: video_codec: copy
linked_motion_sensor: binary_sensor.bedroomgate_motion_sensor stream_source: rtsp://192.168.10.14:8554/poolcam_sub
video_codec: copy camera.frontlawn:
stream_source: rtsp://192.168.10.14:8554/bedroomgate?mp4 linked_motion_sensor: binary_sensor.frontlawn_motion_sensor
camera.driveway: video_codec: copy
linked_motion_sensor: binary_sensor.driveway_motion_sensor stream_source: rtsp://192.168.10.14:8554/frontlawn_sub
video_codec: copy camera.garagecam:
stream_source: rtsp://192.168.10.14:8554/driveway?mp4 linked_motion_sensor: binary_sensor.garagecam_motion_sensor
camera.filtergate: video_codec: copy
linked_motion_sensor: binary_sensor.filtergate_motion_sensor stream_source: rtsp://192.168.10.14:8554/garagecam_sub
video_codec: copy camera.bedroomgate:
stream_source: rtsp://192.168.10.14:8554/filtergate?mp4 linked_motion_sensor: binary_sensor.bedroomgate_motion_sensor
video_codec: copy
stream_source: rtsp://192.168.10.14:8554/bedroomgate?mp4
camera.driveway:
linked_motion_sensor: binary_sensor.driveway_motion_sensor
video_codec: copy
stream_source: rtsp://192.168.10.14:8554/driveway_sub
camera.filtergate:
linked_motion_sensor: binary_sensor.filtergate_motion_sensor
video_codec: copy
stream_source: rtsp://192.168.10.14:8554/filtergate?mp4
# Front door lock in accessory mode (keeps lock responsive/available)
- name: HomeKit Front Door Lock
mode: accessory
port: 21065
filter:
include_entities:
- lock.front_door

View File

@@ -1,16 +1,16 @@
<svg width="68.5" height="20" viewBox="0 0 685 200" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="2025.12.0"> <svg width="68.5" height="20" viewBox="0 0 685 200" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="2025.12.1">
<title>2025.12.0</title> <title>2025.12.1</title>
<linearGradient id="yjFTS" x2="0" y2="100%"> <linearGradient id="hPsAE" x2="0" y2="100%">
<stop offset="0" stop-opacity=".1" stop-color="#EEE"/> <stop offset="0" stop-opacity=".1" stop-color="#EEE"/>
<stop offset="1" stop-opacity=".1"/> <stop offset="1" stop-opacity=".1"/>
</linearGradient> </linearGradient>
<mask id="UGSAW"><rect width="685" height="200" rx="30" fill="#FFF"/></mask> <mask id="GHRUl"><rect width="685" height="200" rx="30" fill="#FFF"/></mask>
<g mask="url(#UGSAW)"> <g mask="url(#GHRUl)">
<rect width="685" height="200" fill="#08C" x="0"/> <rect width="685" height="200" fill="#08C" x="0"/>
<rect width="685" height="200" fill="url(#yjFTS)"/> <rect width="685" height="200" fill="url(#hPsAE)"/>
</g> </g>
<g aria-hidden="true" fill="#fff" text-anchor="start" font-family="Verdana,DejaVu Sans,sans-serif" font-size="110"> <g aria-hidden="true" fill="#fff" text-anchor="start" font-family="Verdana,DejaVu Sans,sans-serif" font-size="110">
<text x="65" y="148" textLength="570" fill="#000" opacity="0.25">2025.12.0</text> <text x="65" y="148" textLength="570" fill="#000" opacity="0.25">2025.12.1</text>
<text x="55" y="138" textLength="570">2025.12.0</text> <text x="55" y="138" textLength="570">2025.12.1</text>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 815 B

After

Width:  |  Height:  |  Size: 815 B