Files
hass_airsend-addon_source/README.md
T
2025-10-06 10:49:59 +02:00

1.9 KiB

App icon

AirSend Home Assistant

Home Assistant Addon to control an AirSend device in a local network.

Repository Installation

Open your Home Assistant instance and show the add add-on repository dialog with a specific repository URL pre-filled.

Manual Installation

  1. Into the terminal, run wget -q -O - https://raw.githubusercontent.com/devmel/hass_airsend-addon/master/install | bash - OR copy the airsend folder into your addon folder.
  2. In Supervisor -> Add-on store -> Local add-ons, refresh, install and start AirSend addon

Install on an external machine

  1. Clone repository
  2. Generate your API key: link to your profile (security tab, long-lived access tokens)
  3. Go to addons/airsend folder
  4. Depending on your machine architecture, run in a terminal. Example with amd64: docker build --build-arg "BUILD_FROM=ghcr.io/home-assistant/amd64-base:3.22" -t hass_airsend-addon .
  5. Depending on your home assistant server and your token, run in a terminal. Example with homeassistant.local:8123:
docker run -dp 33863:33863 \
-e HASS_HOST='homeassistant.local:8123' \
-e HASS_TOKEN='eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJiZDg1MWJlNjE1NmM0Zjc4YTRiNzhjZjRlMDc4MWZiMCIsImlhdCI6MTY5MTIyOTg5MCwiZXhwIjoyMDA2NTg5ODkwfQ._ECys-uPkM8fn1W2wvjzIJ9HLJcI7RHmZmix_2C9QgU' \
-e HASS_AUTOINCLUDE=0 \
hass_airsend-addon