Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions examples/home-assistant/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
this example bridges home assistant to the internal system allowing the reading of sensors and sensor attributes

<img width="573" height="237" alt="image" src="https://github.com/user-attachments/assets/d85f5cba-2fc6-4aaf-acda-8903cfe039a1" />
23 changes: 23 additions & 0 deletions examples/home-assistant/config.yaml.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
home_assistant:
host: "localhost" # Home Assistant IP or hostname
port: 443 # Home Assistant port (should be 443)
token: "your_long_lived_access_token" # HA API token
ssl: true # Use SSL/TLS (true for good installations)
verify_ssl: true
# ca_path: # Optional cert path "/usr/local/share/ca-certificates/ha-cert.crt"

sensors:
# Simple sensor - just entity ID
living_room_temp:
entity: "sensor.living_room_temperature"

vision_disk_unused:
name: "vision disk"
entity: "sensor.vision_qcow2_disk"
attribute: "available"
unit: "GB"

hushhush_vpn:
name: "vpn location"
entity: "sensor.hushush_vpn_location"
variant_type: "QString"
Loading