Wyciągnięcie danych z sensorów z raspberry PI do HA

  1. to pewnie masz z defaultu
    Raspberry Pi Power Supply Checker - Home Assistant

  2. wpisy do configuration.yaml dla HAOS >=11.0 (w starszych wersjach systemu HAOS karty sieciowe mają inne ścieżki), takie jak to są dla platformy arm64 więc m.in. dla RPi)
    edit: kwiecień 2024 - ZAWSZE NAJPIERW CZYTAMY DOKUMENTACJĘ (piję do takiego posta opublikowanego niemal pół roku później - konfiguracja YAML tej integracji w 2024 roku czyli obecnie jest przestarzała, więc zamiast tego YAML’a poniżej ogarnia się tę integrację w GUI…)

sensor:
[…]
  - platform: systemmonitor
    resources:
      - type: disk_use_percent
        arg: /config
      - type: disk_use
      - type: disk_free
      - type: memory_use_percent
      - type: memory_use
      - type: memory_free
      - type: swap_use_percent
      - type: swap_use
      - type: swap_free
      - type: load_1m
      - type: load_5m
      - type: load_15m
      - type: network_in
        arg: end0
      - type: network_out
        arg: end0
      - type: throughput_network_in
        arg: end0
      - type: throughput_network_out
        arg: end0
      - type: packets_in
        arg: end0
      - type: packets_out
        arg: end0
      - type: ipv4_address
        arg: end0
      - type: ipv6_address
        arg: end0
      - type: processor_use
      - type: processor_temperature
      - type: last_boot
[…]

[…] symbolizuje inne wpisy w sekcji sensor więc bez tego
end0 to przewodowa karta Ethernet, niezalecane WiFi jest pod wlan0 (w RPi4)~~

dokumentacja