HA: Difference between revisions

From Network Security Wiki
Content added Content deleted
Line 25: Line 25:


== Telegram ==
== Telegram ==
<pre>
'''
####################################################
####################################################
# Telegram #
# Telegram #
Line 47: Line 47:
name: "mygroup"
name: "mygroup"
chat_id: -xxxxxxxxx
chat_id: -xxxxxxxxx
</pre>
'''


= Sensors =
= Sensors =

Revision as of 18:28, 25 April 2024


Installation

HomeAssist Docker Install

Source: home-assistant.io

  • Installation:
sudo docker run -d \
 --name homeassistant \
 --privileged \
 --restart=unless-stopped \
 -e TZ=Europe/Dublin \
 -v /home/pi/homeassist/config:/config \
 -v /run/dbus:/run/dbus:ro \
 --network=host \
 ghcr.io/home-assistant/home-assistant:stable

Notifications

Telegram

####################################################
#                    Telegram                      #
####################################################

# Telegram Bot
telegram_bot:
  - platform: polling
    api_key: "xxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxx"
    allowed_chat_ids:
      - xxxxxxxx     # Rpiwz Personal Chat
      - -xxxxxxxx     # My Family Group Chat

# Notifier
notify:
  - platform: telegram
    name: "mychat"
    chat_id: xxxxxxxxxxx

  - platform: telegram
    name: "mygroup"
    chat_id: -xxxxxxxxx

Sensors

CPU Temperature

  1. Command Line #
  2. Pi Temperature

command_line:

 - sensor:
     command: "cat /sys/class/thermal/thermal_zone0/temp"
     name: HA CPU Temperature
     unit_of_measurement: "      C"
     value_template: 'Template:Value'



References





{{#widget:DISQUS |id=networkm |uniqid=HA |url=https://aman.awiki.org/wiki/HA }}