diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 3bf9c4e1f6..5703d39be1 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -7,11 +7,16 @@
- [ ] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
+- [ ] Code quality improvements to existing code or addition of tests
- [ ] Other
-**Related issue or feature (if applicable):** fixes
+**Related issue or feature (if applicable):**
-**Pull request in [esphome-docs](https://github.com/esphome/esphome-docs) with documentation (if applicable):** esphome/esphome-docs#
+- fixes
+
+**Pull request in [esphome-docs](https://github.com/esphome/esphome-docs) with documentation (if applicable):**
+
+- esphome/esphome-docs#
## Test Environment
@@ -23,12 +28,6 @@
- [ ] RTL87xx
## Example entry for `config.yaml`:
-
```yaml
# Example config.yaml
diff --git a/.github/actions/build-image/action.yaml b/.github/actions/build-image/action.yaml
index e2febdad1b..5c686605c3 100644
--- a/.github/actions/build-image/action.yaml
+++ b/.github/actions/build-image/action.yaml
@@ -46,7 +46,10 @@ runs:
- name: Build and push to ghcr by digest
id: build-ghcr
- uses: docker/build-push-action@v6.4.1
+ uses: docker/build-push-action@v6.9.0
+ env:
+ DOCKER_BUILD_SUMMARY: false
+ DOCKER_BUILD_RECORD_UPLOAD: false
with:
context: .
file: ./docker/Dockerfile
@@ -69,7 +72,10 @@ runs:
- name: Build and push to dockerhub by digest
id: build-dockerhub
- uses: docker/build-push-action@v6.4.1
+ uses: docker/build-push-action@v6.9.0
+ env:
+ DOCKER_BUILD_SUMMARY: false
+ DOCKER_BUILD_RECORD_UPLOAD: false
with:
context: .
file: ./docker/Dockerfile
diff --git a/.github/actions/restore-python/action.yml b/.github/actions/restore-python/action.yml
index d3fe2a89dc..06c54578f5 100644
--- a/.github/actions/restore-python/action.yml
+++ b/.github/actions/restore-python/action.yml
@@ -17,12 +17,12 @@ runs:
steps:
- name: Set up Python ${{ inputs.python-version }}
id: python
- uses: actions/setup-python@v5.1.1
+ uses: actions/setup-python@v5.3.0
with:
python-version: ${{ inputs.python-version }}
- name: Restore Python virtual environment
id: cache-venv
- uses: actions/cache/restore@v4.0.2
+ uses: actions/cache/restore@v4.1.2
with:
path: venv
# yamllint disable-line rule:line-length
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 3b6495653b..bb35f16048 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -13,6 +13,13 @@ updates:
schedule:
interval: daily
open-pull-requests-limit: 10
+ groups:
+ docker-actions:
+ applies-to: version-updates
+ patterns:
+ - "docker/setup-qemu-action"
+ - "docker/login-action"
+ - "docker/setup-buildx-action"
- package-ecosystem: github-actions
directory: "/.github/actions/build-image"
schedule:
diff --git a/.github/workflows/ci-api-proto.yml b/.github/workflows/ci-api-proto.yml
index ee08a0246d..a6b2e2b2b3 100644
--- a/.github/workflows/ci-api-proto.yml
+++ b/.github/workflows/ci-api-proto.yml
@@ -23,7 +23,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4.1.7
- name: Set up Python
- uses: actions/setup-python@v5.1.0
+ uses: actions/setup-python@v5.3.0
with:
python-version: "3.11"
diff --git a/.github/workflows/ci-docker.yml b/.github/workflows/ci-docker.yml
index 147efe089e..435a58498e 100644
--- a/.github/workflows/ci-docker.yml
+++ b/.github/workflows/ci-docker.yml
@@ -42,13 +42,13 @@ jobs:
steps:
- uses: actions/checkout@v4.1.7
- name: Set up Python
- uses: actions/setup-python@v5.1.0
+ uses: actions/setup-python@v5.3.0
with:
python-version: "3.9"
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v3.4.0
+ uses: docker/setup-buildx-action@v3.7.1
- name: Set up QEMU
- uses: docker/setup-qemu-action@v3.1.0
+ uses: docker/setup-qemu-action@v3.2.0
- name: Set TAG
run: |
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 45fe336d77..82a55d0e2a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -9,6 +9,7 @@ on:
paths:
- "**"
- "!.github/workflows/*.yml"
+ - "!.github/actions/build-image/*"
- ".github/workflows/ci.yml"
- "!.yamllint"
- "!.github/dependabot.yml"
@@ -40,12 +41,12 @@ jobs:
run: echo key="${{ hashFiles('requirements.txt', 'requirements_optional.txt', 'requirements_test.txt') }}" >> $GITHUB_OUTPUT
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
id: python
- uses: actions/setup-python@v5.1.0
+ uses: actions/setup-python@v5.3.0
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Restore Python virtual environment
id: cache-venv
- uses: actions/cache@v4.0.2
+ uses: actions/cache@v4.1.2
with:
path: venv
# yamllint disable-line rule:line-length
@@ -301,20 +302,22 @@ jobs:
- name: Cache platformio
if: github.ref == 'refs/heads/dev'
- uses: actions/cache@v4.0.2
+ uses: actions/cache@v4.1.2
with:
path: ~/.platformio
key: platformio-${{ matrix.pio_cache_key }}
- name: Cache platformio
if: github.ref != 'refs/heads/dev'
- uses: actions/cache/restore@v4.0.2
+ uses: actions/cache/restore@v4.1.2
with:
path: ~/.platformio
key: platformio-${{ matrix.pio_cache_key }}
- name: Install clang-tidy
- run: sudo apt-get install clang-tidy-14
+ run: |
+ sudo apt-get update
+ sudo apt-get install clang-tidy-14
- name: Register problem matchers
run: |
@@ -396,7 +399,9 @@ jobs:
file: ${{ fromJson(needs.list-components.outputs.components) }}
steps:
- name: Install dependencies
- run: sudo apt-get install libsodium-dev libsdl2-dev
+ run: |
+ sudo apt-get update
+ sudo apt-get install libsdl2-dev
- name: Check out code from GitHub
uses: actions/checkout@v4.1.7
@@ -450,7 +455,9 @@ jobs:
run: echo ${{ matrix.components }}
- name: Install dependencies
- run: sudo apt-get install libsodium-dev libsdl2-dev
+ run: |
+ sudo apt-get update
+ sudo apt-get install libsdl2-dev
- name: Check out code from GitHub
uses: actions/checkout@v4.1.7
@@ -468,6 +475,8 @@ jobs:
- name: Compile config
run: |
. venv/bin/activate
+ mkdir build_cache
+ export PLATFORMIO_BUILD_CACHE_DIR=$PWD/build_cache
for component in ${{ matrix.components }}; do
./script/test_build_components -e compile -c $component
done
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
new file mode 100644
index 0000000000..ddeb0a99d2
--- /dev/null
+++ b/.github/workflows/codeql.yml
@@ -0,0 +1,91 @@
+# For most projects, this workflow file will not need changing; you simply need
+# to commit it to your repository.
+#
+# You may wish to alter this file to override the set of languages analyzed,
+# or to provide custom queries or build logic.
+#
+# ******** NOTE ********
+# We have attempted to detect the languages in your repository. Please check
+# the `language` matrix defined below to confirm you have the correct set of
+# supported CodeQL languages.
+#
+name: "CodeQL Advanced"
+
+on:
+ workflow_dispatch:
+ schedule:
+ - cron: "30 18 * * 4"
+
+jobs:
+ analyze:
+ name: Analyze (${{ matrix.language }})
+ # Runner size impacts CodeQL analysis time. To learn more, please see:
+ # - https://gh.io/recommended-hardware-resources-for-running-codeql
+ # - https://gh.io/supported-runners-and-hardware-resources
+ # - https://gh.io/using-larger-runners (GitHub.com only)
+ # Consider using larger runners or machines with greater resources for possible analysis time improvements.
+ runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
+ permissions:
+ # required for all workflows
+ security-events: write
+
+ # required to fetch internal or private CodeQL packs
+ packages: read
+
+ # only required for workflows in private repositories
+ actions: read
+ contents: read
+
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ # - language: c-cpp
+ # build-mode: autobuild
+ - language: python
+ build-mode: none
+ # CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
+ # Use `c-cpp` to analyze code written in C, C++ or both
+ # Use 'java-kotlin' to analyze code written in Java, Kotlin or both
+ # Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
+ # To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
+ # see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
+ # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
+ # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+
+ # Initializes the CodeQL tools for scanning.
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v3
+ with:
+ languages: ${{ matrix.language }}
+ build-mode: ${{ matrix.build-mode }}
+ # If you wish to specify custom queries, you can do so here or in a config file.
+ # By default, queries listed here will override any specified in a config file.
+ # Prefix the list here with "+" to use these queries and those in the config file.
+
+ # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
+ # queries: security-extended,security-and-quality
+
+ # If the analyze step fails for one of the languages you are analyzing with
+ # "We were unable to automatically build your code", modify the matrix above
+ # to set the build mode to "manual" for that language. Then modify this step
+ # to build your code.
+ # ℹ️ Command-line programs to run using the OS shell.
+ # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
+ - if: matrix.build-mode == 'manual'
+ shell: bash
+ run: |
+ echo 'If you are using a "manual" build mode for one or more of the' \
+ 'languages you are analyzing, replace this with the commands to build' \
+ 'your code, for example:'
+ echo ' make bootstrap'
+ echo ' make release'
+ exit 1
+
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v3
+ with:
+ category: "/language:${{matrix.language}}"
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index f66c504bda..5072bec222 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -53,7 +53,7 @@ jobs:
steps:
- uses: actions/checkout@v4.1.7
- name: Set up Python
- uses: actions/setup-python@v5.1.0
+ uses: actions/setup-python@v5.3.0
with:
python-version: "3.x"
- name: Set up python environment
@@ -65,7 +65,7 @@ jobs:
pip3 install build
python3 -m build
- name: Publish
- uses: pypa/gh-action-pypi-publish@v1.9.0
+ uses: pypa/gh-action-pypi-publish@v1.10.3
deploy-docker:
name: Build ESPHome ${{ matrix.platform }}
@@ -85,23 +85,23 @@ jobs:
steps:
- uses: actions/checkout@v4.1.7
- name: Set up Python
- uses: actions/setup-python@v5.1.0
+ uses: actions/setup-python@v5.3.0
with:
python-version: "3.9"
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v3.4.0
+ uses: docker/setup-buildx-action@v3.7.1
- name: Set up QEMU
if: matrix.platform != 'linux/amd64'
- uses: docker/setup-qemu-action@v3.1.0
+ uses: docker/setup-qemu-action@v3.2.0
- name: Log in to docker hub
- uses: docker/login-action@v3.2.0
+ uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Log in to the GitHub container registry
- uses: docker/login-action@v3.2.0
+ uses: docker/login-action@v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
@@ -141,7 +141,7 @@ jobs:
echo name=$(cat /tmp/platform) >> $GITHUB_OUTPUT
- name: Upload digests
- uses: actions/upload-artifact@v4.3.4
+ uses: actions/upload-artifact@v4.4.3
with:
name: digests-${{ steps.sanitize.outputs.name }}
path: /tmp/digests
@@ -184,17 +184,17 @@ jobs:
merge-multiple: true
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v3.4.0
+ uses: docker/setup-buildx-action@v3.7.1
- name: Log in to docker hub
if: matrix.registry == 'dockerhub'
- uses: docker/login-action@v3.2.0
+ uses: docker/login-action@v3.3.0
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Log in to the GitHub container registry
if: matrix.registry == 'ghcr'
- uses: docker/login-action@v3.2.0
+ uses: docker/login-action@v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
diff --git a/.github/workflows/sync-device-classes.yml b/.github/workflows/sync-device-classes.yml
index 89a3627c64..7a46d596a1 100644
--- a/.github/workflows/sync-device-classes.yml
+++ b/.github/workflows/sync-device-classes.yml
@@ -22,7 +22,7 @@ jobs:
path: lib/home-assistant
- name: Setup Python
- uses: actions/setup-python@v5.1.0
+ uses: actions/setup-python@v5.3.0
with:
python-version: 3.12
@@ -36,7 +36,7 @@ jobs:
python ./script/sync-device_class.py
- name: Commit changes
- uses: peter-evans/create-pull-request@v6.1.0
+ uses: peter-evans/create-pull-request@v7.0.5
with:
commit-message: "Synchronise Device Classes from Home Assistant"
committer: esphomebot
diff --git a/.gitignore b/.gitignore
index 0c9a878400..79820249ac 100644
--- a/.gitignore
+++ b/.gitignore
@@ -138,3 +138,5 @@ sdkconfig.*
.tests/
/components
+/managed_components
+
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 74acfa1c1d..aeb434167a 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -2,6 +2,15 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
+ - repo: https://github.com/astral-sh/ruff-pre-commit
+ # Ruff version.
+ rev: v0.5.4
+ hooks:
+ # Run the linter.
+ - id: ruff
+ args: [--fix]
+ # Run the formatter.
+ - id: ruff-format
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.4.2
hooks:
diff --git a/CODEOWNERS b/CODEOWNERS
index ec946371c6..d9e5135325 100644
--- a/CODEOWNERS
+++ b/CODEOWNERS
@@ -24,6 +24,7 @@ esphome/components/ade7953_i2c/* @angelnu
esphome/components/ade7953_spi/* @angelnu
esphome/components/ads1118/* @solomondg1
esphome/components/ags10/* @mak-42
+esphome/components/aic3204/* @kbx81
esphome/components/airthings_ble/* @jeromelaban
esphome/components/airthings_wave_base/* @jeromelaban @kpfleming @ncareau
esphome/components/airthings_wave_mini/* @ncareau
@@ -37,6 +38,7 @@ esphome/components/am43/sensor/* @buxtronix
esphome/components/analog_threshold/* @ianchi
esphome/components/animation/* @syndlex
esphome/components/anova/* @buxtronix
+esphome/components/apds9306/* @aodrenah
esphome/components/api/* @OttoWinter
esphome/components/as5600/* @ammmze
esphome/components/as5600/sensor/* @ammmze
@@ -45,6 +47,10 @@ esphome/components/async_tcp/* @OttoWinter
esphome/components/at581x/* @X-Ryl669
esphome/components/atc_mithermometer/* @ahpohl
esphome/components/atm90e26/* @danieltwagner
+esphome/components/atm90e32/* @circuitsetup @descipher
+esphome/components/audio/* @kahrendt
+esphome/components/audio_dac/* @kbx81
+esphome/components/axs15231/* @clydebarrow
esphome/components/b_parasite/* @rbaron
esphome/components/ballu/* @bazuchan
esphome/components/bang_bang/* @OttoWinter
@@ -56,15 +62,21 @@ esphome/components/beken_spi_led_strip/* @Mat931
esphome/components/bh1750/* @OttoWinter
esphome/components/binary_sensor/* @esphome/core
esphome/components/bk72xx/* @kuba2k2
+esphome/components/bl0906/* @athom-tech @jesserockz @tarontop
esphome/components/bl0939/* @ziceva
esphome/components/bl0940/* @tobias-
-esphome/components/bl0942/* @dbuezas
+esphome/components/bl0942/* @dbuezas @dwmw2
esphome/components/ble_client/* @buxtronix @clydebarrow
esphome/components/bluetooth_proxy/* @jesserockz
esphome/components/bme280_base/* @esphome/core
esphome/components/bme280_spi/* @apbodrov
esphome/components/bme680_bsec/* @trvrnrth
+esphome/components/bme68x_bsec2/* @kbx81 @neffs
+esphome/components/bme68x_bsec2_i2c/* @kbx81 @neffs
esphome/components/bmi160/* @flaviut
+esphome/components/bmp280_base/* @ademuri
+esphome/components/bmp280_i2c/* @ademuri
+esphome/components/bmp280_spi/* @ademuri
esphome/components/bmp3xx/* @latonita
esphome/components/bmp3xx_base/* @latonita @martgras
esphome/components/bmp3xx_i2c/* @latonita
@@ -78,6 +90,7 @@ esphome/components/cap1188/* @mreditor97
esphome/components/captive_portal/* @OttoWinter
esphome/components/ccs811/* @habbie
esphome/components/cd74hc4067/* @asoehlke
+esphome/components/ch422g/* @clydebarrow @jesterret
esphome/components/climate/* @esphome/core
esphome/components/climate_ir/* @glmnet
esphome/components/color_temperature/* @jesserockz
@@ -143,6 +156,7 @@ esphome/components/ft63x6/* @gpambrozio
esphome/components/gcja5/* @gcormier
esphome/components/gdk101/* @Szewcson
esphome/components/globals/* @esphome/core
+esphome/components/gp2y1010au0f/* @zry98
esphome/components/gp8403/* @jesserockz
esphome/components/gpio/* @esphome/core
esphome/components/gpio/one_wire/* @ssieb
@@ -150,6 +164,7 @@ esphome/components/gps/* @coogle
esphome/components/graph/* @synco
esphome/components/graphical_display_menu/* @MrMDavidson
esphome/components/gree/* @orestismers
+esphome/components/grove_gas_mc_v2/* @YorkshireIoT
esphome/components/grove_tb6612fng/* @max246
esphome/components/growatt_solar/* @leeuwte
esphome/components/gt911/* @clydebarrow @jesserockz
@@ -157,6 +172,7 @@ esphome/components/haier/* @paveldn
esphome/components/haier/binary_sensor/* @paveldn
esphome/components/haier/button/* @paveldn
esphome/components/haier/sensor/* @paveldn
+esphome/components/haier/switch/* @paveldn
esphome/components/haier/text_sensor/* @paveldn
esphome/components/havells_solar/* @sourabhjaiswal
esphome/components/hbridge/fan/* @WeekendWarrior
@@ -165,7 +181,10 @@ esphome/components/he60r/* @clydebarrow
esphome/components/heatpumpir/* @rob-deutsch
esphome/components/hitachi_ac424/* @sourabhjaiswal
esphome/components/hm3301/* @freekode
-esphome/components/homeassistant/* @OttoWinter
+esphome/components/hmac_md5/* @dwmw2
+esphome/components/homeassistant/* @OttoWinter @esphome/core
+esphome/components/homeassistant/number/* @landonr
+esphome/components/homeassistant/switch/* @Links2004
esphome/components/honeywell_hih_i2c/* @Benichou34
esphome/components/honeywellabp/* @RubyBailey
esphome/components/honeywellabp2_i2c/* @jpfaff
@@ -179,10 +198,11 @@ esphome/components/htu31d/* @betterengineering
esphome/components/hydreon_rgxx/* @functionpointer
esphome/components/hyt271/* @Philippe12
esphome/components/i2c/* @esphome/core
+esphome/components/i2c_device/* @gabest11
esphome/components/i2s_audio/* @jesserockz
esphome/components/i2s_audio/media_player/* @jesserockz
esphome/components/i2s_audio/microphone/* @jesserockz
-esphome/components/i2s_audio/speaker/* @jesserockz
+esphome/components/i2s_audio/speaker/* @jesserockz @kahrendt
esphome/components/iaqcore/* @yozik04
esphome/components/ili9xxx/* @clydebarrow @nielsnl68
esphome/components/improv_base/* @esphome/core
@@ -215,8 +235,12 @@ esphome/components/lilygo_t5_47/touchscreen/* @jesserockz
esphome/components/lock/* @esphome/core
esphome/components/logger/* @esphome/core
esphome/components/ltr390/* @latonita @sjtrny
+esphome/components/ltr501/* @latonita
esphome/components/ltr_als_ps/* @latonita
+esphome/components/lvgl/* @clydebarrow
+esphome/components/m5stack_8angle/* @rnauber
esphome/components/matrix_keypad/* @ssieb
+esphome/components/max17043/* @blacknell
esphome/components/max31865/* @DAVe3283
esphome/components/max44009/* @berfenger
esphome/components/max6956/* @looping40
@@ -263,6 +287,7 @@ esphome/components/mopeka_std_check/* @Fabian-Schmidt
esphome/components/mpl3115a2/* @kbickar
esphome/components/mpu6886/* @fabaff
esphome/components/ms8607/* @e28eta
+esphome/components/nau7802/* @cujomalainey
esphome/components/network/* @esphome/core
esphome/components/nextion/* @edwardtfn @senexcrenshaw
esphome/components/nextion/binary_sensor/* @senexcrenshaw
@@ -271,6 +296,7 @@ esphome/components/nextion/switch/* @senexcrenshaw
esphome/components/nextion/text_sensor/* @senexcrenshaw
esphome/components/nfc/* @jesserockz @kbx81
esphome/components/noblex/* @AGalfra
+esphome/components/npi19/* @bakerkj
esphome/components/number/* @esphome/core
esphome/components/one_wire/* @ssieb
esphome/components/optolink/* @j0ta29
@@ -281,6 +307,8 @@ esphome/components/optolink/sensor/* @j0ta29
esphome/components/optolink/switch/* @j0ta29
esphome/components/optolink/text/* @j0ta29
esphome/components/optolink/text_sensor/* @j0ta29
+esphome/components/online_image/* @guillempages
+esphome/components/opentherm/* @olegtarasov
esphome/components/ota/* @esphome/core
esphome/components/output/* @esphome/core
esphome/components/pca6416a/* @Mat931
@@ -308,7 +336,7 @@ esphome/components/pvvx_mithermometer/* @pasiz
esphome/components/pylontech/* @functionpointer
esphome/components/qmp6988/* @andrewpc
esphome/components/qr_code/* @wjtje
-esphome/components/qspi_amoled/* @clydebarrow
+esphome/components/qspi_dbi/* @clydebarrow
esphome/components/qwiic_pir/* @kahrendt
esphome/components/radon_eye_ble/* @jeffeb3
esphome/components/radon_eye_rd200/* @jeffeb3
@@ -357,7 +385,7 @@ esphome/components/smt100/* @piechade
esphome/components/sn74hc165/* @jesserockz
esphome/components/socket/* @esphome/core
esphome/components/sonoff_d1/* @anatoly-savchenkov
-esphome/components/speaker/* @jesserockz
+esphome/components/speaker/* @jesserockz @kahrendt
esphome/components/spi/* @clydebarrow @esphome/core
esphome/components/spi_device/* @clydebarrow
esphome/components/spi_led_strip/* @clydebarrow
@@ -381,15 +409,19 @@ esphome/components/st7701s/* @clydebarrow
esphome/components/st7735/* @SenexCrenshaw
esphome/components/st7789v/* @kbx81
esphome/components/st7920/* @marsjan155
+esphome/components/statsd/* @Links2004
esphome/components/substitutions/* @esphome/core
esphome/components/sun/* @OttoWinter
esphome/components/sun_gtil2/* @Mat931
esphome/components/switch/* @esphome/core
esphome/components/t6615/* @tylermenezes
+esphome/components/tc74/* @sethgirvan
esphome/components/tca9548a/* @andreashergert1984
+esphome/components/tca9555/* @mobrembski
esphome/components/tcl112/* @glmnet
esphome/components/tee501/* @Stock-M
esphome/components/teleinfo/* @0hax
+esphome/components/tem3200/* @bakerkj
esphome/components/template/alarm_control_panel/* @grahambrown11 @hwstar
esphome/components/template/datetime/* @rfdarter
esphome/components/template/event/* @nohat
@@ -420,6 +452,7 @@ esphome/components/tuya/switch/* @jesserockz
esphome/components/tuya/text_sensor/* @dentra
esphome/components/uart/* @esphome/core
esphome/components/uart/button/* @ssieb
+esphome/components/udp/* @clydebarrow
esphome/components/ufire_ec/* @pvizeli
esphome/components/ufire_ise/* @pvizeli
esphome/components/ultrasonic/* @OttoWinter
@@ -432,6 +465,7 @@ esphome/components/veml7700/* @latonita
esphome/components/version/* @esphome/core
esphome/components/voice_assistant/* @jesserockz
esphome/components/wake_on_lan/* @clydebarrow @willwill2will54
+esphome/components/watchdog/* @oarcher
esphome/components/waveshare_epaper/* @clydebarrow
esphome/components/web_server_base/* @OttoWinter
esphome/components/web_server_idf/* @dentra
@@ -454,6 +488,7 @@ esphome/components/wl_134/* @hobbypunk90
esphome/components/x9c/* @EtienneMD
esphome/components/xgzp68xx/* @gcormier
esphome/components/xiaomi_hhccjcy10/* @fariouche
+esphome/components/xiaomi_lywsd02mmc/* @juanluss31
esphome/components/xiaomi_lywsd03mmc/* @ahpohl
esphome/components/xiaomi_mhoc303/* @drug123
esphome/components/xiaomi_mhoc401/* @vevsvevs
diff --git a/README.md b/README.md
index bb6fb37d3a..da1b2b3650 100644
--- a/README.md
+++ b/README.md
@@ -7,3 +7,5 @@
For issues, please go to [the issue tracker](https://github.com/esphome/issues/issues).
For feature requests, please see [feature requests](https://github.com/esphome/feature-requests/issues).
+
+[![ESPHome - A project from the Open Home Foundation](https://www.openhomefoundation.org/badges/esphome.png)](https://www.openhomefoundation.org/)
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 16f37274c6..52a4794f24 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -33,9 +33,9 @@ RUN \
python3-venv=3.11.2-1+b1 \
python3-wheel=0.38.4-2 \
iputils-ping=3:20221126-1 \
- git=1:2.39.2-1.1 \
- curl=7.88.1-10+deb12u6 \
- openssh-client=1:9.2p1-2+deb12u2 \
+ git=1:2.39.5-0+deb12u1 \
+ curl=7.88.1-10+deb12u7 \
+ openssh-client=1:9.2p1-2+deb12u3 \
python3-cffi=1.15.1-5 \
libcairo2=1.16.0-7 \
libmagic1=1:5.44-3 \
@@ -49,7 +49,7 @@ RUN \
zlib1g-dev=1:1.2.13.dfsg-1 \
libjpeg-dev=1:2.1.5-2 \
libfreetype-dev=2.12.1+dfsg-5+deb12u3 \
- libssl-dev=3.0.13-1~deb12u1 \
+ libssl-dev=3.0.14-1~deb12u2 \
libffi-dev=3.4.4-1 \
libopenjp2-7=2.5.0-2 \
libtiff6=4.5.0-6+deb12u1 \
@@ -86,7 +86,7 @@ RUN \
pip3 install \
--break-system-packages --no-cache-dir \
# Keep platformio version in sync with requirements.txt
- platformio==6.1.15 \
+ platformio==6.1.16 \
# Change some platformio settings
&& platformio settings set enable_telemetry No \
&& platformio settings set check_platformio_interval 1000000 \
@@ -96,14 +96,19 @@ RUN \
# First install requirements to leverage caching when requirements don't change
# tmpfs is for https://github.com/rust-lang/cargo/issues/8719
-COPY requirements.txt requirements_optional.txt script/platformio_install_deps.py platformio.ini /
+COPY requirements.txt requirements_optional.txt /
RUN --mount=type=tmpfs,target=/root/.cargo if [ "$TARGETARCH$TARGETVARIANT" = "armv7" ]; then \
- export PIP_EXTRA_INDEX_URL="https://www.piwheels.org/simple"; \
+ curl -L https://www.piwheels.org/cp311/cryptography-43.0.0-cp37-abi3-linux_armv7l.whl -o /tmp/cryptography-43.0.0-cp37-abi3-linux_armv7l.whl \
+ && pip3 install --break-system-packages --no-cache-dir /tmp/cryptography-43.0.0-cp37-abi3-linux_armv7l.whl \
+ && rm /tmp/cryptography-43.0.0-cp37-abi3-linux_armv7l.whl \
+ && export PIP_EXTRA_INDEX_URL="https://www.piwheels.org/simple"; \
fi; \
CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse CARGO_HOME=/root/.cargo \
pip3 install \
- --break-system-packages --no-cache-dir -r /requirements.txt -r /requirements_optional.txt \
- && /platformio_install_deps.py /platformio.ini --libraries
+ --break-system-packages --no-cache-dir -r /requirements.txt -r /requirements_optional.txt
+
+COPY script/platformio_install_deps.py platformio.ini /
+RUN /platformio_install_deps.py /platformio.ini --libraries
# Avoid unsafe git error when container user and file config volume permissions don't match
RUN git config --system --add safe.directory '*'
diff --git a/docker/docker_entrypoint.sh b/docker/docker_entrypoint.sh
index 397b1528c5..1b9224244c 100755
--- a/docker/docker_entrypoint.sh
+++ b/docker/docker_entrypoint.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
# If /cache is mounted, use that as PIO's coredir
# otherwise use path in /config (so that PIO packages aren't downloaded on each compile)
diff --git a/esphome/__main__.py b/esphome/__main__.py
index b13f96daf7..cf2741dbdb 100644
--- a/esphome/__main__.py
+++ b/esphome/__main__.py
@@ -1,12 +1,12 @@
# PYTHON_ARGCOMPLETE_OK
import argparse
+from datetime import datetime
import functools
import logging
import os
import re
import sys
import time
-from datetime import datetime
import argcomplete
@@ -38,15 +38,15 @@ from esphome.const import (
SECRETS_FILES,
)
from esphome.core import CORE, EsphomeError, coroutine
-from esphome.helpers import indent, is_ip_address
+from esphome.helpers import indent, is_ip_address, get_bool_env
+from esphome.log import Fore, color, setup_log
from esphome.util import (
+ get_serial_ports,
+ list_yaml_files,
run_external_command,
run_external_process,
safe_print,
- list_yaml_files,
- get_serial_ports,
)
-from esphome.log import color, setup_log, Fore
_LOGGER = logging.getLogger(__name__)
@@ -116,6 +116,7 @@ def get_port_type(port):
def run_miniterm(config, port):
import serial
+
from esphome import platformio_api
if CONF_LOGGER not in config:
@@ -596,9 +597,10 @@ def command_update_all(args):
def command_idedata(args, config):
- from esphome import platformio_api
import json
+ from esphome import platformio_api
+
logging.disable(logging.INFO)
logging.disable(logging.WARNING)
@@ -729,7 +731,11 @@ POST_CONFIG_ACTIONS = {
def parse_args(argv):
options_parser = argparse.ArgumentParser(add_help=False)
options_parser.add_argument(
- "-v", "--verbose", help="Enable verbose ESPHome logs.", action="store_true"
+ "-v",
+ "--verbose",
+ help="Enable verbose ESPHome logs.",
+ action="store_true",
+ default=get_bool_env("ESPHOME_VERBOSE"),
)
options_parser.add_argument(
"-q", "--quiet", help="Disable all ESPHome logs.", action="store_true"
@@ -747,7 +753,14 @@ def parse_args(argv):
)
parser = argparse.ArgumentParser(
- description=f"ESPHome v{const.__version__}", parents=[options_parser]
+ description=f"ESPHome {const.__version__}", parents=[options_parser]
+ )
+
+ parser.add_argument(
+ "--version",
+ action="version",
+ version=f"Version: {const.__version__}",
+ help="Print the ESPHome version and exit.",
)
mqtt_options = argparse.ArgumentParser(add_help=False)
@@ -948,67 +961,6 @@ def parse_args(argv):
# a deprecation warning).
arguments = argv[1:]
- # On Python 3.9+ we can simply set exit_on_error=False in the constructor
- def _raise(x):
- raise argparse.ArgumentError(None, x)
-
- # First, try new-style parsing, but don't exit in case of failure
- try:
- # duplicate parser so that we can use the original one to raise errors later on
- current_parser = argparse.ArgumentParser(add_help=False, parents=[parser])
- current_parser.set_defaults(deprecated_argv_suggestion=None)
- current_parser.error = _raise
- return current_parser.parse_args(arguments)
- except argparse.ArgumentError:
- pass
-
- # Second, try compat parsing and rearrange the command-line if it succeeds
- # Disable argparse's built-in help option and add it manually to prevent this
- # parser from printing the help messagefor the old format when invoked with -h.
- compat_parser = argparse.ArgumentParser(parents=[options_parser], add_help=False)
- compat_parser.add_argument("-h", "--help", action="store_true")
- compat_parser.add_argument("configuration", nargs="*")
- compat_parser.add_argument(
- "command",
- choices=[
- "config",
- "compile",
- "upload",
- "logs",
- "run",
- "clean-mqtt",
- "wizard",
- "mqtt-fingerprint",
- "version",
- "clean",
- "dashboard",
- "vscode",
- "update-all",
- ],
- )
-
- try:
- compat_parser.error = _raise
- result, unparsed = compat_parser.parse_known_args(argv[1:])
- last_option = len(arguments) - len(unparsed) - 1 - len(result.configuration)
- unparsed = [
- "--device" if arg in ("--upload-port", "--serial-port") else arg
- for arg in unparsed
- ]
- arguments = (
- arguments[0:last_option]
- + [result.command]
- + result.configuration
- + unparsed
- )
- deprecated_argv_suggestion = arguments
- except argparse.ArgumentError:
- # old-style parsing failed, don't suggest any argument
- deprecated_argv_suggestion = None
-
- # Finally, run the new-style parser again with the possibly swapped arguments,
- # and let it error out if the command is unparsable.
- parser.set_defaults(deprecated_argv_suggestion=deprecated_argv_suggestion)
argcomplete.autocomplete(parser)
return parser.parse_args(arguments)
@@ -1023,20 +975,6 @@ def run_esphome(argv):
# Show timestamp for dashboard access logs
args.command == "dashboard",
)
- if args.deprecated_argv_suggestion is not None and args.command != "vscode":
- _LOGGER.warning(
- "Calling ESPHome with the configuration before the command is deprecated "
- "and will be removed in the future. "
- )
- _LOGGER.warning("Please instead use:")
- _LOGGER.warning(" esphome %s", " ".join(args.deprecated_argv_suggestion))
-
- if sys.version_info < (3, 8, 0):
- _LOGGER.error(
- "You're running ESPHome with Python <3.8. ESPHome is no longer compatible "
- "with this Python version. Please reinstall ESPHome with Python 3.8+"
- )
- return 1
if args.command in PRE_CONFIG_ACTIONS:
try:
diff --git a/esphome/automation.py b/esphome/automation.py
index b25ffa5abe..34159561c2 100644
--- a/esphome/automation.py
+++ b/esphome/automation.py
@@ -1,16 +1,18 @@
import esphome.codegen as cg
import esphome.config_validation as cv
from esphome.const import (
+ CONF_ALL,
+ CONF_ANY,
CONF_AUTOMATION_ID,
CONF_CONDITION,
CONF_COUNT,
CONF_ELSE,
CONF_ID,
CONF_THEN,
+ CONF_TIME,
CONF_TIMEOUT,
CONF_TRIGGER_ID,
CONF_TYPE_ID,
- CONF_TIME,
CONF_UPDATE_INTERVAL,
)
from esphome.schema_extractors import SCHEMA_EXTRACT, schema_extractor
@@ -73,6 +75,13 @@ def validate_potentially_and_condition(value):
return validate_condition(value)
+def validate_potentially_or_condition(value):
+ if isinstance(value, list):
+ with cv.remove_prepend_path(["or"]):
+ return validate_condition({"or": value})
+ return validate_condition(value)
+
+
DelayAction = cg.esphome_ns.class_("DelayAction", Action, cg.Component)
LambdaAction = cg.esphome_ns.class_("LambdaAction", Action)
IfAction = cg.esphome_ns.class_("IfAction", Action)
@@ -166,6 +175,18 @@ async def or_condition_to_code(config, condition_id, template_arg, args):
return cg.new_Pvariable(condition_id, template_arg, conditions)
+@register_condition("all", AndCondition, validate_condition_list)
+async def all_condition_to_code(config, condition_id, template_arg, args):
+ conditions = await build_condition_list(config, template_arg, args)
+ return cg.new_Pvariable(condition_id, template_arg, conditions)
+
+
+@register_condition("any", OrCondition, validate_condition_list)
+async def any_condition_to_code(config, condition_id, template_arg, args):
+ conditions = await build_condition_list(config, template_arg, args)
+ return cg.new_Pvariable(condition_id, template_arg, conditions)
+
+
@register_condition("not", NotCondition, validate_potentially_and_condition)
async def not_condition_to_code(config, condition_id, template_arg, args):
condition = await build_condition(config, template_arg, args)
@@ -223,15 +244,21 @@ async def delay_action_to_code(config, action_id, template_arg, args):
IfAction,
cv.All(
{
- cv.Required(CONF_CONDITION): validate_potentially_and_condition,
+ cv.Exclusive(
+ CONF_CONDITION, CONF_CONDITION
+ ): validate_potentially_and_condition,
+ cv.Exclusive(CONF_ANY, CONF_CONDITION): validate_potentially_or_condition,
+ cv.Exclusive(CONF_ALL, CONF_CONDITION): validate_potentially_and_condition,
cv.Optional(CONF_THEN): validate_action_list,
cv.Optional(CONF_ELSE): validate_action_list,
},
cv.has_at_least_one_key(CONF_THEN, CONF_ELSE),
+ cv.has_at_least_one_key(CONF_CONDITION, CONF_ANY, CONF_ALL),
),
)
async def if_action_to_code(config, action_id, template_arg, args):
- conditions = await build_condition(config[CONF_CONDITION], template_arg, args)
+ cond_conf = next(el for el in config if el in (CONF_ANY, CONF_ALL, CONF_CONDITION))
+ conditions = await build_condition(config[cond_conf], template_arg, args)
var = cg.new_Pvariable(action_id, template_arg, conditions)
if CONF_THEN in config:
actions = await build_action_list(config[CONF_THEN], template_arg, args)
diff --git a/esphome/codegen.py b/esphome/codegen.py
index 6b000b53a1..bfa1683ce7 100644
--- a/esphome/codegen.py
+++ b/esphome/codegen.py
@@ -8,55 +8,78 @@
# want to break suddenly due to a rename (this file will get backports for features).
# pylint: disable=unused-import
-from esphome.cpp_generator import ( # noqa
+from esphome.cpp_generator import ( # noqa: F401
+ ArrayInitializer,
Expression,
+ LineComment,
+ MockObj,
+ MockObjClass,
+ Pvariable,
RawExpression,
RawStatement,
- TemplateArguments,
- StructInitializer,
- ArrayInitializer,
- safe_exp,
Statement,
- LineComment,
- progmem_array,
- static_const_array,
- statement,
- variable,
- with_local_variable,
- new_variable,
- Pvariable,
- new_Pvariable,
+ StructInitializer,
+ TemplateArguments,
add,
- add_global,
- add_library,
add_build_flag,
add_define,
+ add_global,
+ add_library,
add_platformio_option,
get_variable,
get_variable_with_full_id,
- process_lambda,
is_template,
+ new_Pvariable,
+ new_variable,
+ process_lambda,
+ progmem_array,
+ safe_exp,
+ statement,
+ static_const_array,
templatable,
- MockObj,
- MockObjClass,
+ variable,
+ with_local_variable,
)
-from esphome.cpp_helpers import ( # noqa
- gpio_pin_expression,
- register_component,
+from esphome.cpp_helpers import ( # noqa: F401
build_registry_entry,
build_registry_list,
extract_registry_entry_config,
- register_parented,
+ gpio_pin_expression,
past_safe_mode,
+ register_component,
+ register_parented,
)
-from esphome.cpp_types import ( # noqa
- global_ns,
- void,
- nullptr,
- float_,
- double,
+from esphome.cpp_types import ( # noqa: F401
+ NAN,
+ App,
+ Application,
+ Component,
+ ComponentPtr,
+ Controller,
+ EntityBase,
+ EntityCategory,
+ ESPTime,
+ GPIOPin,
+ InternalGPIOPin,
+ JsonObject,
+ JsonObjectConst,
+ Parented,
+ PollingComponent,
+ arduino_json_ns,
bool_,
+ const_char_ptr,
+ double,
+ esphome_ns,
+ float_,
+ global_ns,
+ gpio_Flags,
+ int16,
+ int32,
+ int64,
int_,
+ nullptr,
+ optional,
+ size_t,
std_ns,
std_shared_ptr,
std_string,
@@ -66,28 +89,5 @@ from esphome.cpp_types import ( # noqa
uint16,
uint32,
uint64,
- int16,
- int32,
- int64,
- size_t,
- const_char_ptr,
- NAN,
- esphome_ns,
- App,
- EntityBase,
- Component,
- ComponentPtr,
- PollingComponent,
- Application,
- optional,
- arduino_json_ns,
- JsonObject,
- JsonObjectConst,
- Controller,
- GPIOPin,
- InternalGPIOPin,
- gpio_Flags,
- EntityCategory,
- Parented,
- ESPTime,
+ void,
)
diff --git a/esphome/components/ade7953/sensor.py b/esphome/components/ade7953/sensor.py
index 0caa2ef454..fc79888129 100644
--- a/esphome/components/ade7953/sensor.py
+++ b/esphome/components/ade7953/sensor.py
@@ -1,5 +1,5 @@
import esphome.config_validation as cv
-CONFIG_SCHEMA = CONFIG_SCHEMA = cv.invalid(
+CONFIG_SCHEMA = cv.invalid(
"The ade7953 sensor component has been renamed to ade7953_i2c."
)
diff --git a/esphome/components/ade7953_spi/ade7953_spi.cpp b/esphome/components/ade7953_spi/ade7953_spi.cpp
index cfd5d71d0a..77a2a8adc7 100644
--- a/esphome/components/ade7953_spi/ade7953_spi.cpp
+++ b/esphome/components/ade7953_spi/ade7953_spi.cpp
@@ -60,7 +60,7 @@ bool AdE7953Spi::ade_read_16(uint16_t reg, uint16_t *value) {
this->write_byte16(reg);
this->transfer_byte(0x80);
uint8_t recv[2];
- this->read_array(recv, 4);
+ this->read_array(recv, 2);
*value = encode_uint16(recv[0], recv[1]);
this->disable();
return false;
diff --git a/esphome/components/aic3204/__init__.py b/esphome/components/aic3204/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/esphome/components/aic3204/aic3204.cpp b/esphome/components/aic3204/aic3204.cpp
new file mode 100644
index 0000000000..0560f2366b
--- /dev/null
+++ b/esphome/components/aic3204/aic3204.cpp
@@ -0,0 +1,173 @@
+#include "aic3204.h"
+
+#include "esphome/core/defines.h"
+#include "esphome/core/helpers.h"
+#include "esphome/core/log.h"
+
+namespace esphome {
+namespace aic3204 {
+
+static const char *const TAG = "aic3204";
+
+#define ERROR_CHECK(err, msg) \
+ if (!(err)) { \
+ ESP_LOGE(TAG, msg); \
+ this->mark_failed(); \
+ return; \
+ }
+
+void AIC3204::setup() {
+ ESP_LOGCONFIG(TAG, "Setting up AIC3204...");
+
+ // Set register page to 0
+ ERROR_CHECK(this->write_byte(AIC3204_PAGE_CTRL, 0x00), "Set page 0 failed");
+ // Initiate SW reset (PLL is powered off as part of reset)
+ ERROR_CHECK(this->write_byte(AIC3204_SW_RST, 0x01), "Software reset failed");
+ // *** Program clock settings ***
+ // Default is CODEC_CLKIN is from MCLK pin. Don't need to change this.
+ // MDAC*NDAC*FOSR*48Khz = mClk (24.576 MHz when the XMOS is expecting 48kHz audio)
+ // (See page 51 of https://www.ti.com/lit/ml/slaa557/slaa557.pdf)
+ // We do need MDAC*DOSR/32 >= the resource compute level for the processing block
+ // So here 2*128/32 = 8, which is equal to processing block 1 's resource compute
+ // See page 5 of https://www.ti.com/lit/an/slaa404c/slaa404c.pdf for the workflow
+ // for determining these settings.
+
+ // Power up NDAC and set to 2
+ ERROR_CHECK(this->write_byte(AIC3204_NDAC, 0x82), "Set NDAC failed");
+ // Power up MDAC and set to 2
+ ERROR_CHECK(this->write_byte(AIC3204_MDAC, 0x82), "Set MDAC failed");
+ // Program DOSR = 128
+ ERROR_CHECK(this->write_byte(AIC3204_DOSR, 0x80), "Set DOSR failed");
+ // Set Audio Interface Config: I2S, 32 bits, DOUT always driving
+ ERROR_CHECK(this->write_byte(AIC3204_CODEC_IF, 0x30), "Set CODEC_IF failed");
+ // For I2S Firmware only, set SCLK/MFP3 pin as Audio Data In
+ ERROR_CHECK(this->write_byte(AIC3204_SCLK_MFP3, 0x02), "Set SCLK/MFP3 failed");
+ ERROR_CHECK(this->write_byte(AIC3204_AUDIO_IF_4, 0x01), "Set AUDIO_IF_4 failed");
+ ERROR_CHECK(this->write_byte(AIC3204_AUDIO_IF_5, 0x01), "Set AUDIO_IF_5 failed");
+ // Program the DAC processing block to be used - PRB_P1
+ ERROR_CHECK(this->write_byte(AIC3204_DAC_SIG_PROC, 0x01), "Set DAC_SIG_PROC failed");
+
+ // *** Select Page 1 ***
+ ERROR_CHECK(this->write_byte(AIC3204_PAGE_CTRL, 0x01), "Set page 1 failed");
+ // Enable the internal AVDD_LDO:
+ ERROR_CHECK(this->write_byte(AIC3204_LDO_CTRL, 0x09), "Set LDO_CTRL failed");
+ // *** Program Analog Blocks ***
+ // Disable Internal Crude AVdd in presence of external AVdd supply or before powering up internal AVdd LDO
+ ERROR_CHECK(this->write_byte(AIC3204_PWR_CFG, 0x08), "Set PWR_CFG failed");
+ // Enable Master Analog Power Control
+ ERROR_CHECK(this->write_byte(AIC3204_LDO_CTRL, 0x01), "Set LDO_CTRL failed");
+ // Page 125: Common mode control register, set d6 to 1 to make the full chip common mode = 0.75 v
+ // We are using the internal AVdd regulator with a nominal output of 1.72 V (see LDO_CTRL_REGISTER on page 123)
+ // Page 86 says to only set the common mode voltage to 0.9 v if AVdd >= 1.8... but it isn't on our hardware
+ // We also adjust the HPL and HPR gains to -2dB gian later in this config flow compensate (see page 47)
+ // (All pages refer to the TLV320AIC3204 Application Reference Guide)
+ ERROR_CHECK(this->write_byte(AIC3204_CM_CTRL, 0x40), "Set CM_CTRL failed");
+ // *** Set PowerTune Modes ***
+ // Set the Left & Right DAC PowerTune mode to PTM_P3/4. Use Class-AB driver.
+ ERROR_CHECK(this->write_byte(AIC3204_PLAY_CFG1, 0x00), "Set PLAY_CFG1 failed");
+ ERROR_CHECK(this->write_byte(AIC3204_PLAY_CFG2, 0x00), "Set PLAY_CFG2 failed");
+ // Set the REF charging time to 40ms
+ ERROR_CHECK(this->write_byte(AIC3204_REF_STARTUP, 0x01), "Set REF_STARTUP failed");
+ // HP soft stepping settings for optimal pop performance at power up
+ // Rpop used is 6k with N = 6 and soft step = 20usec. This should work with 47uF coupling
+ // capacitor. Can try N=5,6 or 7 time constants as well. Trade-off delay vs “pop” sound.
+ ERROR_CHECK(this->write_byte(AIC3204_HP_START, 0x25), "Set HP_START failed");
+ // Route Left DAC to HPL
+ ERROR_CHECK(this->write_byte(AIC3204_HPL_ROUTE, 0x08), "Set HPL_ROUTE failed");
+ // Route Right DAC to HPR
+ ERROR_CHECK(this->write_byte(AIC3204_HPR_ROUTE, 0x08), "Set HPR_ROUTE failed");
+ // Route Left DAC to LOL
+ ERROR_CHECK(this->write_byte(AIC3204_LOL_ROUTE, 0x08), "Set LOL_ROUTE failed");
+ // Route Right DAC to LOR
+ ERROR_CHECK(this->write_byte(AIC3204_LOR_ROUTE, 0x08), "Set LOR_ROUTE failed");
+
+ // Unmute HPL and set gain to -2dB (see comment before configuring the AIC3204_CM_CTRL register)
+ ERROR_CHECK(this->write_byte(AIC3204_HPL_GAIN, 0x3e), "Set HPL_GAIN failed");
+ // Unmute HPR and set gain to -2dB (see comment before configuring the AIC3204_CM_CTRL register)
+ ERROR_CHECK(this->write_byte(AIC3204_HPR_GAIN, 0x3e), "Set HPR_GAIN failed");
+ // Unmute LOL and set gain to 0dB
+ ERROR_CHECK(this->write_byte(AIC3204_LOL_DRV_GAIN, 0x00), "Set LOL_DRV_GAIN failed");
+ // Unmute LOR and set gain to 0dB
+ ERROR_CHECK(this->write_byte(AIC3204_LOR_DRV_GAIN, 0x00), "Set LOR_DRV_GAIN failed");
+
+ // Power up HPL and HPR, LOL and LOR drivers
+ ERROR_CHECK(this->write_byte(AIC3204_OP_PWR_CTRL, 0x3C), "Set OP_PWR_CTRL failed");
+
+ // Wait for 2.5 sec for soft stepping to take effect before attempting power-up
+ this->set_timeout(2500, [this]() {
+ // *** Power Up DAC ***
+ // Select Page 0
+ ERROR_CHECK(this->write_byte(AIC3204_PAGE_CTRL, 0x00), "Set PAGE_CTRL failed");
+ // Power up the Left and Right DAC Channels. Route Left data to Left DAC and Right data to Right DAC.
+ // DAC Vol control soft step 1 step per DAC word clock.
+ ERROR_CHECK(this->write_byte(AIC3204_DAC_CH_SET1, 0xd4), "Set DAC_CH_SET1 failed");
+ // Set left and right DAC digital volume control
+ ERROR_CHECK(this->write_volume_(), "Set volume failed");
+ // Unmute left and right channels
+ ERROR_CHECK(this->write_mute_(), "Set mute failed");
+ });
+}
+
+void AIC3204::dump_config() {
+ ESP_LOGCONFIG(TAG, "AIC3204:");
+ LOG_I2C_DEVICE(this);
+
+ if (this->is_failed()) {
+ ESP_LOGE(TAG, "Communication with AIC3204 failed");
+ }
+}
+
+bool AIC3204::set_mute_off() {
+ this->is_muted_ = false;
+ return this->write_mute_();
+}
+
+bool AIC3204::set_mute_on() {
+ this->is_muted_ = true;
+ return this->write_mute_();
+}
+
+bool AIC3204::set_auto_mute_mode(uint8_t auto_mute_mode) {
+ this->auto_mute_mode_ = auto_mute_mode & 0x07;
+ ESP_LOGVV(TAG, "Setting auto_mute_mode to 0x%.2x", this->auto_mute_mode_);
+ return this->write_mute_();
+}
+
+bool AIC3204::set_volume(float volume) {
+ this->volume_ = clamp(volume, 0.0, 1.0);
+ return this->write_volume_();
+}
+
+bool AIC3204::is_muted() { return this->is_muted_; }
+
+float AIC3204::volume() { return this->volume_; }
+
+bool AIC3204::write_mute_() {
+ uint8_t mute_mode_byte = this->auto_mute_mode_ << 4; // auto-mute control is bits 4-6
+ mute_mode_byte |= this->is_muted_ ? 0x0c : 0x00; // mute bits are 2-3
+ if (!this->write_byte(AIC3204_PAGE_CTRL, 0x00) || !this->write_byte(AIC3204_DAC_CH_SET2, mute_mode_byte)) {
+ ESP_LOGE(TAG, "Writing mute modes failed");
+ return false;
+ }
+ return true;
+}
+
+bool AIC3204::write_volume_() {
+ const int8_t dvc_min_byte = -127;
+ const int8_t dvc_max_byte = 48;
+
+ int8_t volume_byte = dvc_min_byte + (this->volume_ * (dvc_max_byte - dvc_min_byte));
+ volume_byte = clamp(volume_byte, dvc_min_byte, dvc_max_byte);
+
+ ESP_LOGVV(TAG, "Setting volume to 0x%.2x", volume_byte & 0xFF);
+
+ if ((!this->write_byte(AIC3204_PAGE_CTRL, 0x00)) || (!this->write_byte(AIC3204_DACL_VOL_D, volume_byte)) ||
+ (!this->write_byte(AIC3204_DACR_VOL_D, volume_byte))) {
+ ESP_LOGE(TAG, "Writing volume failed");
+ return false;
+ }
+ return true;
+}
+
+} // namespace aic3204
+} // namespace esphome
diff --git a/esphome/components/aic3204/aic3204.h b/esphome/components/aic3204/aic3204.h
new file mode 100644
index 0000000000..783a58a2b9
--- /dev/null
+++ b/esphome/components/aic3204/aic3204.h
@@ -0,0 +1,88 @@
+#pragma once
+
+#include "esphome/components/audio_dac/audio_dac.h"
+#include "esphome/components/i2c/i2c.h"
+#include "esphome/core/component.h"
+#include "esphome/core/defines.h"
+#include "esphome/core/hal.h"
+
+namespace esphome {
+namespace aic3204 {
+
+// TLV320AIC3204 Register Addresses
+// Page 0
+static const uint8_t AIC3204_PAGE_CTRL = 0x00; // Register 0 - Page Control
+static const uint8_t AIC3204_SW_RST = 0x01; // Register 1 - Software Reset
+static const uint8_t AIC3204_CLK_PLL1 = 0x04; // Register 4 - Clock Setting Register 1, Multiplexers
+static const uint8_t AIC3204_CLK_PLL2 = 0x05; // Register 5 - Clock Setting Register 2, P and R values
+static const uint8_t AIC3204_CLK_PLL3 = 0x06; // Register 6 - Clock Setting Register 3, J values
+static const uint8_t AIC3204_NDAC = 0x0B; // Register 11 - NDAC Divider Value
+static const uint8_t AIC3204_MDAC = 0x0C; // Register 12 - MDAC Divider Value
+static const uint8_t AIC3204_DOSR = 0x0E; // Register 14 - DOSR Divider Value (LS Byte)
+static const uint8_t AIC3204_NADC = 0x12; // Register 18 - NADC Divider Value
+static const uint8_t AIC3204_MADC = 0x13; // Register 19 - MADC Divider Value
+static const uint8_t AIC3204_AOSR = 0x14; // Register 20 - AOSR Divider Value
+static const uint8_t AIC3204_CODEC_IF = 0x1B; // Register 27 - CODEC Interface Control
+static const uint8_t AIC3204_AUDIO_IF_4 = 0x1F; // Register 31 - Audio Interface Setting Register 4
+static const uint8_t AIC3204_AUDIO_IF_5 = 0x20; // Register 32 - Audio Interface Setting Register 5
+static const uint8_t AIC3204_SCLK_MFP3 = 0x38; // Register 56 - SCLK/MFP3 Function Control
+static const uint8_t AIC3204_DAC_SIG_PROC = 0x3C; // Register 60 - DAC Sig Processing Block Control
+static const uint8_t AIC3204_ADC_SIG_PROC = 0x3D; // Register 61 - ADC Sig Processing Block Control
+static const uint8_t AIC3204_DAC_CH_SET1 = 0x3F; // Register 63 - DAC Channel Setup 1
+static const uint8_t AIC3204_DAC_CH_SET2 = 0x40; // Register 64 - DAC Channel Setup 2
+static const uint8_t AIC3204_DACL_VOL_D = 0x41; // Register 65 - DAC Left Digital Vol Control
+static const uint8_t AIC3204_DACR_VOL_D = 0x42; // Register 66 - DAC Right Digital Vol Control
+static const uint8_t AIC3204_DRC_ENABLE = 0x44;
+static const uint8_t AIC3204_ADC_CH_SET = 0x51; // Register 81 - ADC Channel Setup
+static const uint8_t AIC3204_ADC_FGA_MUTE = 0x52; // Register 82 - ADC Fine Gain Adjust/Mute
+
+// Page 1
+static const uint8_t AIC3204_PWR_CFG = 0x01; // Register 1 - Power Config
+static const uint8_t AIC3204_LDO_CTRL = 0x02; // Register 2 - LDO Control
+static const uint8_t AIC3204_PLAY_CFG1 = 0x03; // Register 3 - Playback Config 1
+static const uint8_t AIC3204_PLAY_CFG2 = 0x04; // Register 4 - Playback Config 2
+static const uint8_t AIC3204_OP_PWR_CTRL = 0x09; // Register 9 - Output Driver Power Control
+static const uint8_t AIC3204_CM_CTRL = 0x0A; // Register 10 - Common Mode Control
+static const uint8_t AIC3204_HPL_ROUTE = 0x0C; // Register 12 - HPL Routing Select
+static const uint8_t AIC3204_HPR_ROUTE = 0x0D; // Register 13 - HPR Routing Select
+static const uint8_t AIC3204_LOL_ROUTE = 0x0E; // Register 14 - LOL Routing Selection
+static const uint8_t AIC3204_LOR_ROUTE = 0x0F; // Register 15 - LOR Routing Selection
+static const uint8_t AIC3204_HPL_GAIN = 0x10; // Register 16 - HPL Driver Gain
+static const uint8_t AIC3204_HPR_GAIN = 0x11; // Register 17 - HPR Driver Gain
+static const uint8_t AIC3204_LOL_DRV_GAIN = 0x12; // Register 18 - LOL Driver Gain Setting
+static const uint8_t AIC3204_LOR_DRV_GAIN = 0x13; // Register 19 - LOR Driver Gain Setting
+static const uint8_t AIC3204_HP_START = 0x14; // Register 20 - Headphone Driver Startup
+static const uint8_t AIC3204_LPGA_P_ROUTE = 0x34; // Register 52 - Left PGA Positive Input Route
+static const uint8_t AIC3204_LPGA_N_ROUTE = 0x36; // Register 54 - Left PGA Negative Input Route
+static const uint8_t AIC3204_RPGA_P_ROUTE = 0x37; // Register 55 - Right PGA Positive Input Route
+static const uint8_t AIC3204_RPGA_N_ROUTE = 0x39; // Register 57 - Right PGA Negative Input Route
+static const uint8_t AIC3204_LPGA_VOL = 0x3B; // Register 59 - Left PGA Volume
+static const uint8_t AIC3204_RPGA_VOL = 0x3C; // Register 60 - Right PGA Volume
+static const uint8_t AIC3204_ADC_PTM = 0x3D; // Register 61 - ADC Power Tune Config
+static const uint8_t AIC3204_AN_IN_CHRG = 0x47; // Register 71 - Analog Input Quick Charging Config
+static const uint8_t AIC3204_REF_STARTUP = 0x7B; // Register 123 - Reference Power Up Config
+
+class AIC3204 : public audio_dac::AudioDac, public Component, public i2c::I2CDevice {
+ public:
+ void setup() override;
+ void dump_config() override;
+ float get_setup_priority() const override { return setup_priority::DATA; }
+
+ bool set_mute_off() override;
+ bool set_mute_on() override;
+ bool set_auto_mute_mode(uint8_t auto_mute_mode);
+ bool set_volume(float volume) override;
+
+ bool is_muted() override;
+ float volume() override;
+
+ protected:
+ bool write_mute_();
+ bool write_volume_();
+
+ uint8_t auto_mute_mode_{0};
+ float volume_{0};
+};
+
+} // namespace aic3204
+} // namespace esphome
diff --git a/esphome/components/aic3204/audio_dac.py b/esphome/components/aic3204/audio_dac.py
new file mode 100644
index 0000000000..da7a54df54
--- /dev/null
+++ b/esphome/components/aic3204/audio_dac.py
@@ -0,0 +1,52 @@
+from esphome import automation
+import esphome.codegen as cg
+from esphome.components import i2c
+from esphome.components.audio_dac import AudioDac
+import esphome.config_validation as cv
+from esphome.const import CONF_ID, CONF_MODE
+
+CODEOWNERS = ["@kbx81"]
+DEPENDENCIES = ["i2c"]
+
+aic3204_ns = cg.esphome_ns.namespace("aic3204")
+AIC3204 = aic3204_ns.class_("AIC3204", AudioDac, cg.Component, i2c.I2CDevice)
+
+SetAutoMuteAction = aic3204_ns.class_("SetAutoMuteAction", automation.Action)
+
+CONFIG_SCHEMA = (
+ cv.Schema(
+ {
+ cv.GenerateID(): cv.declare_id(AIC3204),
+ }
+ )
+ .extend(cv.COMPONENT_SCHEMA)
+ .extend(i2c.i2c_device_schema(0x18))
+)
+
+
+SET_AUTO_MUTE_ACTION_SCHEMA = cv.maybe_simple_value(
+ {
+ cv.GenerateID(): cv.use_id(AIC3204),
+ cv.Required(CONF_MODE): cv.templatable(cv.int_range(max=7, min=0)),
+ },
+ key=CONF_MODE,
+)
+
+
+@automation.register_action(
+ "aic3204.set_auto_mute_mode", SetAutoMuteAction, SET_AUTO_MUTE_ACTION_SCHEMA
+)
+async def aic3204_set_volume_to_code(config, action_id, template_arg, args):
+ paren = await cg.get_variable(config[CONF_ID])
+ var = cg.new_Pvariable(action_id, template_arg, paren)
+
+ template_ = await cg.templatable(config.get(CONF_MODE), args, int)
+ cg.add(var.set_auto_mute_mode(template_))
+
+ return var
+
+
+async def to_code(config):
+ var = cg.new_Pvariable(config[CONF_ID])
+ await cg.register_component(var, config)
+ await i2c.register_i2c_device(var, config)
diff --git a/esphome/components/aic3204/automation.h b/esphome/components/aic3204/automation.h
new file mode 100644
index 0000000000..416a88fa12
--- /dev/null
+++ b/esphome/components/aic3204/automation.h
@@ -0,0 +1,23 @@
+#pragma once
+
+#include "esphome/core/automation.h"
+#include "esphome/core/component.h"
+#include "aic3204.h"
+
+namespace esphome {
+namespace aic3204 {
+
+template class SetAutoMuteAction : public Action {
+ public:
+ explicit SetAutoMuteAction(AIC3204 *aic3204) : aic3204_(aic3204) {}
+
+ TEMPLATABLE_VALUE(uint8_t, auto_mute_mode)
+
+ void play(Ts... x) override { this->aic3204_->set_auto_mute_mode(this->auto_mute_mode_.value(x...)); }
+
+ protected:
+ AIC3204 *aic3204_;
+};
+
+} // namespace aic3204
+} // namespace esphome
diff --git a/esphome/components/airthings_wave_plus/airthings_wave_plus.cpp b/esphome/components/airthings_wave_plus/airthings_wave_plus.cpp
index a32128e992..8c8c514fdb 100644
--- a/esphome/components/airthings_wave_plus/airthings_wave_plus.cpp
+++ b/esphome/components/airthings_wave_plus/airthings_wave_plus.cpp
@@ -14,8 +14,6 @@ void AirthingsWavePlus::read_sensors(uint8_t *raw_value, uint16_t value_len) {
ESP_LOGD(TAG, "version = %d", value->version);
if (value->version == 1) {
- ESP_LOGD(TAG, "ambient light = %d", value->ambientLight);
-
if (this->humidity_sensor_ != nullptr) {
this->humidity_sensor_->publish_state(value->humidity / 2.0f);
}
@@ -43,6 +41,10 @@ void AirthingsWavePlus::read_sensors(uint8_t *raw_value, uint16_t value_len) {
if ((this->tvoc_sensor_ != nullptr) && this->is_valid_voc_value_(value->voc)) {
this->tvoc_sensor_->publish_state(value->voc);
}
+
+ if (this->illuminance_sensor_ != nullptr) {
+ this->illuminance_sensor_->publish_state(value->ambientLight);
+ }
} else {
ESP_LOGE(TAG, "Invalid payload version (%d != 1, newer version or not a Wave Plus?)", value->version);
}
@@ -68,6 +70,7 @@ void AirthingsWavePlus::dump_config() {
LOG_SENSOR(" ", "Radon", this->radon_sensor_);
LOG_SENSOR(" ", "Radon Long Term", this->radon_long_term_sensor_);
LOG_SENSOR(" ", "CO2", this->co2_sensor_);
+ LOG_SENSOR(" ", "Illuminance", this->illuminance_sensor_);
}
AirthingsWavePlus::AirthingsWavePlus() {
diff --git a/esphome/components/airthings_wave_plus/airthings_wave_plus.h b/esphome/components/airthings_wave_plus/airthings_wave_plus.h
index 23c8cbb166..bd7a40ef8b 100644
--- a/esphome/components/airthings_wave_plus/airthings_wave_plus.h
+++ b/esphome/components/airthings_wave_plus/airthings_wave_plus.h
@@ -22,6 +22,7 @@ class AirthingsWavePlus : public airthings_wave_base::AirthingsWaveBase {
void set_radon(sensor::Sensor *radon) { radon_sensor_ = radon; }
void set_radon_long_term(sensor::Sensor *radon_long_term) { radon_long_term_sensor_ = radon_long_term; }
void set_co2(sensor::Sensor *co2) { co2_sensor_ = co2; }
+ void set_illuminance(sensor::Sensor *illuminance) { illuminance_sensor_ = illuminance; }
protected:
bool is_valid_radon_value_(uint16_t radon);
@@ -32,6 +33,7 @@ class AirthingsWavePlus : public airthings_wave_base::AirthingsWaveBase {
sensor::Sensor *radon_sensor_{nullptr};
sensor::Sensor *radon_long_term_sensor_{nullptr};
sensor::Sensor *co2_sensor_{nullptr};
+ sensor::Sensor *illuminance_sensor_{nullptr};
struct WavePlusReadings {
uint8_t version;
diff --git a/esphome/components/airthings_wave_plus/sensor.py b/esphome/components/airthings_wave_plus/sensor.py
index 643a2bfb68..d28c7e2abc 100644
--- a/esphome/components/airthings_wave_plus/sensor.py
+++ b/esphome/components/airthings_wave_plus/sensor.py
@@ -12,6 +12,9 @@ from esphome.const import (
CONF_CO2,
UNIT_BECQUEREL_PER_CUBIC_METER,
UNIT_PARTS_PER_MILLION,
+ CONF_ILLUMINANCE,
+ UNIT_LUX,
+ DEVICE_CLASS_ILLUMINANCE,
)
DEPENDENCIES = airthings_wave_base.DEPENDENCIES
@@ -45,6 +48,12 @@ CONFIG_SCHEMA = airthings_wave_base.BASE_SCHEMA.extend(
device_class=DEVICE_CLASS_CARBON_DIOXIDE,
state_class=STATE_CLASS_MEASUREMENT,
),
+ cv.Optional(CONF_ILLUMINANCE): sensor.sensor_schema(
+ unit_of_measurement=UNIT_LUX,
+ accuracy_decimals=0,
+ device_class=DEVICE_CLASS_ILLUMINANCE,
+ state_class=STATE_CLASS_MEASUREMENT,
+ ),
}
)
@@ -62,3 +71,6 @@ async def to_code(config):
if config_co2 := config.get(CONF_CO2):
sens = await sensor.new_sensor(config_co2)
cg.add(var.set_co2(sens))
+ if config_illuminance := config.get(CONF_ILLUMINANCE):
+ sens = await sensor.new_sensor(config_illuminance)
+ cg.add(var.set_illuminance(sens))
diff --git a/esphome/components/alarm_control_panel/__init__.py b/esphome/components/alarm_control_panel/__init__.py
index 7ad4358011..379fbf32f9 100644
--- a/esphome/components/alarm_control_panel/__init__.py
+++ b/esphome/components/alarm_control_panel/__init__.py
@@ -1,16 +1,17 @@
-import esphome.codegen as cg
-import esphome.config_validation as cv
-from esphome.components import web_server
from esphome import automation
from esphome.automation import maybe_simple_id
-from esphome.core import CORE, coroutine_with_priority
+import esphome.codegen as cg
+from esphome.components import mqtt, web_server
+import esphome.config_validation as cv
from esphome.const import (
+ CONF_CODE,
CONF_ID,
+ CONF_MQTT_ID,
CONF_ON_STATE,
CONF_TRIGGER_ID,
- CONF_CODE,
- CONF_WEB_SERVER_ID,
+ CONF_WEB_SERVER,
)
+from esphome.core import CORE, coroutine_with_priority
from esphome.cpp_helpers import setup_entity
CODEOWNERS = ["@grahambrown11", "@hwstar"]
@@ -77,67 +78,72 @@ AlarmControlPanelCondition = alarm_control_panel_ns.class_(
"AlarmControlPanelCondition", automation.Condition
)
-ALARM_CONTROL_PANEL_SCHEMA = cv.ENTITY_BASE_SCHEMA.extend(
- web_server.WEBSERVER_SORTING_SCHEMA
-).extend(
- {
- cv.GenerateID(): cv.declare_id(AlarmControlPanel),
- cv.Optional(CONF_ON_STATE): automation.validate_automation(
- {
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(StateTrigger),
- }
- ),
- cv.Optional(CONF_ON_TRIGGERED): automation.validate_automation(
- {
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(TriggeredTrigger),
- }
- ),
- cv.Optional(CONF_ON_ARMING): automation.validate_automation(
- {
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ArmingTrigger),
- }
- ),
- cv.Optional(CONF_ON_PENDING): automation.validate_automation(
- {
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(PendingTrigger),
- }
- ),
- cv.Optional(CONF_ON_ARMED_HOME): automation.validate_automation(
- {
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ArmedHomeTrigger),
- }
- ),
- cv.Optional(CONF_ON_ARMED_NIGHT): automation.validate_automation(
- {
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ArmedNightTrigger),
- }
- ),
- cv.Optional(CONF_ON_ARMED_AWAY): automation.validate_automation(
- {
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ArmedAwayTrigger),
- }
- ),
- cv.Optional(CONF_ON_DISARMED): automation.validate_automation(
- {
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(DisarmedTrigger),
- }
- ),
- cv.Optional(CONF_ON_CLEARED): automation.validate_automation(
- {
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ClearedTrigger),
- }
- ),
- cv.Optional(CONF_ON_CHIME): automation.validate_automation(
- {
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ChimeTrigger),
- }
- ),
- cv.Optional(CONF_ON_READY): automation.validate_automation(
- {
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ReadyTrigger),
- }
- ),
- }
+ALARM_CONTROL_PANEL_SCHEMA = (
+ cv.ENTITY_BASE_SCHEMA.extend(web_server.WEBSERVER_SORTING_SCHEMA)
+ .extend(cv.MQTT_COMMAND_COMPONENT_SCHEMA)
+ .extend(
+ {
+ cv.GenerateID(): cv.declare_id(AlarmControlPanel),
+ cv.OnlyWith(CONF_MQTT_ID, "mqtt"): cv.declare_id(
+ mqtt.MQTTAlarmControlPanelComponent
+ ),
+ cv.Optional(CONF_ON_STATE): automation.validate_automation(
+ {
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(StateTrigger),
+ }
+ ),
+ cv.Optional(CONF_ON_TRIGGERED): automation.validate_automation(
+ {
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(TriggeredTrigger),
+ }
+ ),
+ cv.Optional(CONF_ON_ARMING): automation.validate_automation(
+ {
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ArmingTrigger),
+ }
+ ),
+ cv.Optional(CONF_ON_PENDING): automation.validate_automation(
+ {
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(PendingTrigger),
+ }
+ ),
+ cv.Optional(CONF_ON_ARMED_HOME): automation.validate_automation(
+ {
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ArmedHomeTrigger),
+ }
+ ),
+ cv.Optional(CONF_ON_ARMED_NIGHT): automation.validate_automation(
+ {
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ArmedNightTrigger),
+ }
+ ),
+ cv.Optional(CONF_ON_ARMED_AWAY): automation.validate_automation(
+ {
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ArmedAwayTrigger),
+ }
+ ),
+ cv.Optional(CONF_ON_DISARMED): automation.validate_automation(
+ {
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(DisarmedTrigger),
+ }
+ ),
+ cv.Optional(CONF_ON_CLEARED): automation.validate_automation(
+ {
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ClearedTrigger),
+ }
+ ),
+ cv.Optional(CONF_ON_CHIME): automation.validate_automation(
+ {
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ChimeTrigger),
+ }
+ ),
+ cv.Optional(CONF_ON_READY): automation.validate_automation(
+ {
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(ReadyTrigger),
+ }
+ ),
+ }
+ )
)
ALARM_CONTROL_PANEL_ACTION_SCHEMA = maybe_simple_id(
@@ -189,9 +195,11 @@ async def setup_alarm_control_panel_core_(var, config):
for conf in config.get(CONF_ON_READY, []):
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
await automation.build_automation(trigger, [], conf)
- if (webserver_id := config.get(CONF_WEB_SERVER_ID)) is not None:
- web_server_ = await cg.get_variable(webserver_id)
- web_server.add_entity_to_sorting_list(web_server_, var, config)
+ if web_server_config := config.get(CONF_WEB_SERVER):
+ await web_server.add_entity_config(var, web_server_config)
+ if mqtt_id := config.get(CONF_MQTT_ID):
+ mqtt_ = cg.new_Pvariable(mqtt_id, var)
+ await mqtt.register_mqtt_component(mqtt_, config)
async def register_alarm_control_panel(var, config):
diff --git a/esphome/components/animation/__init__.py b/esphome/components/animation/__init__.py
index dbfc82c891..5a308855de 100644
--- a/esphome/components/animation/__init__.py
+++ b/esphome/components/animation/__init__.py
@@ -1,26 +1,26 @@
import logging
from esphome import automation, core
+import esphome.codegen as cg
from esphome.components import font
import esphome.components.image as espImage
from esphome.components.image import (
CONF_USE_TRANSPARENCY,
LOCAL_SCHEMA,
- WEB_SCHEMA,
- SOURCE_WEB,
SOURCE_LOCAL,
+ SOURCE_WEB,
+ WEB_SCHEMA,
)
import esphome.config_validation as cv
-import esphome.codegen as cg
from esphome.const import (
CONF_FILE,
CONF_ID,
+ CONF_PATH,
CONF_RAW_DATA_ID,
CONF_REPEAT,
CONF_RESIZE,
- CONF_TYPE,
CONF_SOURCE,
- CONF_PATH,
+ CONF_TYPE,
CONF_URL,
)
from esphome.core import CORE, HexInt
@@ -172,6 +172,9 @@ async def to_code(config):
path = CORE.relative_config_path(conf_file[CONF_PATH])
elif conf_file[CONF_SOURCE] == SOURCE_WEB:
path = espImage.compute_local_image_path(conf_file).as_posix()
+ else:
+ raise core.EsphomeError(f"Unknown animation source: {conf_file[CONF_SOURCE]}")
+
try:
image = Image.open(path)
except Exception as e:
@@ -183,13 +186,12 @@ async def to_code(config):
new_width_max, new_height_max = config[CONF_RESIZE]
ratio = min(new_width_max / width, new_height_max / height)
width, height = int(width * ratio), int(height * ratio)
- else:
- if width > 500 or height > 500:
- _LOGGER.warning(
- 'The image "%s" you requested is very big. Please consider'
- " using the resize parameter.",
- path,
- )
+ elif width > 500 or height > 500:
+ _LOGGER.warning(
+ 'The image "%s" you requested is very big. Please consider'
+ " using the resize parameter.",
+ path,
+ )
transparent = config[CONF_USE_TRANSPARENCY]
@@ -269,7 +271,8 @@ async def to_code(config):
pos += 1
elif config[CONF_TYPE] in ["RGB565", "TRANSPARENT_IMAGE"]:
- data = [0 for _ in range(height * width * 2 * frames)]
+ bytes_per_pixel = 3 if transparent else 2
+ data = [0 for _ in range(height * width * bytes_per_pixel * frames)]
pos = 0
for frameIndex in range(frames):
image.seek(frameIndex)
@@ -286,17 +289,13 @@ async def to_code(config):
G = g >> 2
B = b >> 3
rgb = (R << 11) | (G << 5) | B
-
- if transparent:
- if rgb == 0x0020:
- rgb = 0
- if a < 0x80:
- rgb = 0x0020
-
data[pos] = rgb >> 8
pos += 1
data[pos] = rgb & 0xFF
pos += 1
+ if transparent:
+ data[pos] = a
+ pos += 1
elif config[CONF_TYPE] in ["BINARY", "TRANSPARENT_BINARY"]:
width8 = ((width + 7) // 8) * 8
@@ -306,6 +305,8 @@ async def to_code(config):
if transparent:
alpha = image.split()[-1]
has_alpha = alpha.getextrema()[0] < 0xFF
+ else:
+ has_alpha = False
frame = image.convert("1", dither=Image.Dither.NONE)
if CONF_RESIZE in config:
frame = frame.resize([width, height])
diff --git a/esphome/components/animation/animation.cpp b/esphome/components/animation/animation.cpp
index 7e0efa97e0..1375dfe07e 100644
--- a/esphome/components/animation/animation.cpp
+++ b/esphome/components/animation/animation.cpp
@@ -62,7 +62,7 @@ void Animation::set_frame(int frame) {
}
void Animation::update_data_start_() {
- const uint32_t image_size = image_type_to_width_stride(this->width_, this->type_) * this->height_;
+ const uint32_t image_size = this->get_width_stride() * this->height_;
this->data_start_ = this->animation_data_start_ + image_size * this->current_frame_;
}
diff --git a/esphome/components/apds9306/__init__.py b/esphome/components/apds9306/__init__.py
new file mode 100644
index 0000000000..3dc8fcf5ff
--- /dev/null
+++ b/esphome/components/apds9306/__init__.py
@@ -0,0 +1,4 @@
+# Based on this datasheet:
+# https://www.mouser.ca/datasheet/2/678/AVGO_S_A0002854364_1-2574547.pdf
+
+CODEOWNERS = ["@aodrenah"]
diff --git a/esphome/components/apds9306/apds9306.cpp b/esphome/components/apds9306/apds9306.cpp
new file mode 100644
index 0000000000..7b79b0964c
--- /dev/null
+++ b/esphome/components/apds9306/apds9306.cpp
@@ -0,0 +1,151 @@
+// Based on this datasheet:
+// https://www.mouser.ca/datasheet/2/678/AVGO_S_A0002854364_1-2574547.pdf
+
+#include "apds9306.h"
+#include "esphome/core/helpers.h"
+#include "esphome/core/log.h"
+
+namespace esphome {
+namespace apds9306 {
+
+static const char *const TAG = "apds9306";
+
+enum { // APDS9306 registers
+ APDS9306_MAIN_CTRL = 0x00,
+ APDS9306_ALS_MEAS_RATE = 0x04,
+ APDS9306_ALS_GAIN = 0x05,
+ APDS9306_PART_ID = 0x06,
+ APDS9306_MAIN_STATUS = 0x07,
+ APDS9306_CLEAR_DATA_0 = 0x0A, // LSB
+ APDS9306_CLEAR_DATA_1 = 0x0B,
+ APDS9306_CLEAR_DATA_2 = 0x0C, // MSB
+ APDS9306_ALS_DATA_0 = 0x0D, // LSB
+ APDS9306_ALS_DATA_1 = 0x0E,
+ APDS9306_ALS_DATA_2 = 0x0F, // MSB
+ APDS9306_INT_CFG = 0x19,
+ APDS9306_INT_PERSISTENCE = 0x1A,
+ APDS9306_ALS_THRES_UP_0 = 0x21, // LSB
+ APDS9306_ALS_THRES_UP_1 = 0x22,
+ APDS9306_ALS_THRES_UP_2 = 0x23, // MSB
+ APDS9306_ALS_THRES_LOW_0 = 0x24, // LSB
+ APDS9306_ALS_THRES_LOW_1 = 0x25,
+ APDS9306_ALS_THRES_LOW_2 = 0x26, // MSB
+ APDS9306_ALS_THRES_VAR = 0x27
+};
+
+#define APDS9306_ERROR_CHECK(func, error) \
+ if (!(func)) { \
+ ESP_LOGE(TAG, error); \
+ this->mark_failed(); \
+ return; \
+ }
+#define APDS9306_WARNING_CHECK(func, warning) \
+ if (!(func)) { \
+ ESP_LOGW(TAG, warning); \
+ this->status_set_warning(); \
+ return; \
+ }
+#define APDS9306_WRITE_BYTE(reg, value) \
+ ESP_LOGV(TAG, "Writing 0x%02x to 0x%02x", value, reg); \
+ if (!this->write_byte(reg, value)) { \
+ ESP_LOGE(TAG, "Failed writing 0x%02x to 0x%02x", value, reg); \
+ this->mark_failed(); \
+ return; \
+ }
+
+void APDS9306::setup() {
+ ESP_LOGCONFIG(TAG, "Setting up APDS9306...");
+
+ uint8_t id;
+ if (!this->read_byte(APDS9306_PART_ID, &id)) { // Part ID register
+ this->error_code_ = COMMUNICATION_FAILED;
+ this->mark_failed();
+ return;
+ }
+
+ if (id != 0xB1 && id != 0xB3) { // 0xB1 for APDS9306 0xB3 for APDS9306-065
+ this->error_code_ = WRONG_ID;
+ this->mark_failed();
+ return;
+ }
+
+ // ALS resolution and measurement, see datasheet or init.py for options
+ uint8_t als_meas_rate = ((this->bit_width_ & 0x07) << 4) | (this->measurement_rate_ & 0x07);
+ APDS9306_WRITE_BYTE(APDS9306_ALS_MEAS_RATE, als_meas_rate);
+
+ // ALS gain, see datasheet or init.py for options
+ uint8_t als_gain = (this->gain_ & 0x07);
+ APDS9306_WRITE_BYTE(APDS9306_ALS_GAIN, als_gain);
+
+ // Set to standby mode
+ APDS9306_WRITE_BYTE(APDS9306_MAIN_CTRL, 0x00);
+
+ // Check for data, clear main status
+ uint8_t status;
+ APDS9306_WARNING_CHECK(this->read_byte(APDS9306_MAIN_STATUS, &status), "Reading MAIN STATUS failed.");
+
+ // Set to active mode
+ APDS9306_WRITE_BYTE(APDS9306_MAIN_CTRL, 0x02);
+
+ ESP_LOGCONFIG(TAG, "APDS9306 setup complete");
+}
+
+void APDS9306::dump_config() {
+ LOG_SENSOR("", "APDS9306", this);
+ LOG_I2C_DEVICE(this);
+
+ if (this->is_failed()) {
+ switch (this->error_code_) {
+ case COMMUNICATION_FAILED:
+ ESP_LOGE(TAG, "Communication with APDS9306 failed!");
+ break;
+ case WRONG_ID:
+ ESP_LOGE(TAG, "APDS9306 has invalid id!");
+ break;
+ default:
+ ESP_LOGE(TAG, "Setting up APDS9306 registers failed!");
+ break;
+ }
+ }
+
+ ESP_LOGCONFIG(TAG, " Gain: %u", AMBIENT_LIGHT_GAIN_VALUES[this->gain_]);
+ ESP_LOGCONFIG(TAG, " Measurement rate: %u", MEASUREMENT_RATE_VALUES[this->measurement_rate_]);
+ ESP_LOGCONFIG(TAG, " Measurement Resolution/Bit width: %d", MEASUREMENT_BIT_WIDTH_VALUES[this->bit_width_]);
+
+ LOG_UPDATE_INTERVAL(this);
+}
+
+void APDS9306::update() {
+ // Check for new data
+ uint8_t status;
+ APDS9306_WARNING_CHECK(this->read_byte(APDS9306_MAIN_STATUS, &status), "Reading MAIN STATUS failed.");
+
+ this->status_clear_warning();
+
+ if (!(status &= 0b00001000)) { // No new data
+ return;
+ }
+
+ // Set to standby mode
+ APDS9306_WRITE_BYTE(APDS9306_MAIN_CTRL, 0x00);
+
+ // Clear MAIN STATUS
+ APDS9306_WARNING_CHECK(this->read_byte(APDS9306_MAIN_STATUS, &status), "Reading MAIN STATUS failed.");
+
+ uint8_t als_data[3];
+ APDS9306_WARNING_CHECK(this->read_bytes(APDS9306_ALS_DATA_0, als_data, 3), "Reading ALS data has failed.");
+
+ // Set to active mode
+ APDS9306_WRITE_BYTE(APDS9306_MAIN_CTRL, 0x02);
+
+ uint32_t light_level = 0x00 | encode_uint24(als_data[2], als_data[1], als_data[0]);
+
+ float lux = ((float) light_level / AMBIENT_LIGHT_GAIN_VALUES[this->gain_]) *
+ (100.0f / MEASUREMENT_RATE_VALUES[this->measurement_rate_]);
+
+ ESP_LOGD(TAG, "Got illuminance=%.1flx from", lux);
+ this->publish_state(lux);
+}
+
+} // namespace apds9306
+} // namespace esphome
diff --git a/esphome/components/apds9306/apds9306.h b/esphome/components/apds9306/apds9306.h
new file mode 100644
index 0000000000..44362908c8
--- /dev/null
+++ b/esphome/components/apds9306/apds9306.h
@@ -0,0 +1,66 @@
+// Based on this datasheet:
+// https://www.mouser.ca/datasheet/2/678/AVGO_S_A0002854364_1-2574547.pdf
+
+#pragma once
+
+#include "esphome/components/i2c/i2c.h"
+#include "esphome/components/sensor/sensor.h"
+#include "esphome/core/component.h"
+
+namespace esphome {
+namespace apds9306 {
+
+enum MeasurementBitWidth : uint8_t {
+ MEASUREMENT_BIT_WIDTH_20 = 0,
+ MEASUREMENT_BIT_WIDTH_19 = 1,
+ MEASUREMENT_BIT_WIDTH_18 = 2,
+ MEASUREMENT_BIT_WIDTH_17 = 3,
+ MEASUREMENT_BIT_WIDTH_16 = 4,
+ MEASUREMENT_BIT_WIDTH_13 = 5,
+};
+static const uint8_t MEASUREMENT_BIT_WIDTH_VALUES[] = {20, 19, 18, 17, 16, 13};
+
+enum MeasurementRate : uint8_t {
+ MEASUREMENT_RATE_25 = 0,
+ MEASUREMENT_RATE_50 = 1,
+ MEASUREMENT_RATE_100 = 2,
+ MEASUREMENT_RATE_200 = 3,
+ MEASUREMENT_RATE_500 = 4,
+ MEASUREMENT_RATE_1000 = 5,
+ MEASUREMENT_RATE_2000 = 6,
+};
+static const uint16_t MEASUREMENT_RATE_VALUES[] = {25, 50, 100, 200, 500, 1000, 2000};
+
+enum AmbientLightGain : uint8_t {
+ AMBIENT_LIGHT_GAIN_1 = 0,
+ AMBIENT_LIGHT_GAIN_3 = 1,
+ AMBIENT_LIGHT_GAIN_6 = 2,
+ AMBIENT_LIGHT_GAIN_9 = 3,
+ AMBIENT_LIGHT_GAIN_18 = 4,
+};
+static const uint8_t AMBIENT_LIGHT_GAIN_VALUES[] = {1, 3, 6, 9, 18};
+
+class APDS9306 : public sensor::Sensor, public PollingComponent, public i2c::I2CDevice {
+ public:
+ void setup() override;
+ float get_setup_priority() const override { return setup_priority::BUS; }
+ void dump_config() override;
+ void update() override;
+ void set_bit_width(MeasurementBitWidth bit_width) { this->bit_width_ = bit_width; }
+ void set_measurement_rate(MeasurementRate measurement_rate) { this->measurement_rate_ = measurement_rate; }
+ void set_ambient_light_gain(AmbientLightGain gain) { this->gain_ = gain; }
+
+ protected:
+ enum ErrorCode {
+ NONE = 0,
+ COMMUNICATION_FAILED,
+ WRONG_ID,
+ } error_code_{NONE};
+
+ MeasurementBitWidth bit_width_;
+ MeasurementRate measurement_rate_;
+ AmbientLightGain gain_;
+};
+
+} // namespace apds9306
+} // namespace esphome
diff --git a/esphome/components/apds9306/sensor.py b/esphome/components/apds9306/sensor.py
new file mode 100644
index 0000000000..25b301444f
--- /dev/null
+++ b/esphome/components/apds9306/sensor.py
@@ -0,0 +1,95 @@
+# Based on this datasheet:
+# https://www.mouser.ca/datasheet/2/678/AVGO_S_A0002854364_1-2574547.pdf
+
+import esphome.codegen as cg
+import esphome.config_validation as cv
+from esphome.components import i2c, sensor
+from esphome.const import (
+ CONF_GAIN,
+ DEVICE_CLASS_ILLUMINANCE,
+ ICON_LIGHTBULB,
+ STATE_CLASS_MEASUREMENT,
+ UNIT_LUX,
+)
+
+DEPENDENCIES = ["i2c"]
+
+CONF_APDS9306_ID = "apds9306_id"
+CONF_BIT_WIDTH = "bit_width"
+CONF_MEASUREMENT_RATE = "measurement_rate"
+
+apds9306_ns = cg.esphome_ns.namespace("apds9306")
+APDS9306 = apds9306_ns.class_(
+ "APDS9306", sensor.Sensor, cg.PollingComponent, i2c.I2CDevice
+)
+
+MeasurementBitWidth = apds9306_ns.enum("MeasurementBitWidth")
+MeasurementRate = apds9306_ns.enum("MeasurementRate")
+AmbientLightGain = apds9306_ns.enum("AmbientLightGain")
+
+MEASUREMENT_BIT_WIDTHS = {
+ 20: MeasurementBitWidth.MEASUREMENT_BIT_WIDTH_20,
+ 19: MeasurementBitWidth.MEASUREMENT_BIT_WIDTH_19,
+ 18: MeasurementBitWidth.MEASUREMENT_BIT_WIDTH_18,
+ 17: MeasurementBitWidth.MEASUREMENT_BIT_WIDTH_17,
+ 16: MeasurementBitWidth.MEASUREMENT_BIT_WIDTH_16,
+ 13: MeasurementBitWidth.MEASUREMENT_BIT_WIDTH_13,
+}
+
+MEASUREMENT_RATES = {
+ 25: MeasurementRate.MEASUREMENT_RATE_25,
+ 50: MeasurementRate.MEASUREMENT_RATE_50,
+ 100: MeasurementRate.MEASUREMENT_RATE_100,
+ 200: MeasurementRate.MEASUREMENT_RATE_200,
+ 500: MeasurementRate.MEASUREMENT_RATE_500,
+ 1000: MeasurementRate.MEASUREMENT_RATE_1000,
+ 2000: MeasurementRate.MEASUREMENT_RATE_2000,
+}
+
+AMBIENT_LIGHT_GAINS = {
+ 1: AmbientLightGain.AMBIENT_LIGHT_GAIN_1,
+ 3: AmbientLightGain.AMBIENT_LIGHT_GAIN_3,
+ 6: AmbientLightGain.AMBIENT_LIGHT_GAIN_6,
+ 9: AmbientLightGain.AMBIENT_LIGHT_GAIN_9,
+ 18: AmbientLightGain.AMBIENT_LIGHT_GAIN_18,
+}
+
+
+def _validate_measurement_rate(value):
+ value = cv.positive_time_period_milliseconds(value)
+ return cv.enum(MEASUREMENT_RATES, int=True)(value.total_milliseconds)
+
+
+CONFIG_SCHEMA = (
+ sensor.sensor_schema(
+ APDS9306,
+ unit_of_measurement=UNIT_LUX,
+ accuracy_decimals=1,
+ device_class=DEVICE_CLASS_ILLUMINANCE,
+ state_class=STATE_CLASS_MEASUREMENT,
+ icon=ICON_LIGHTBULB,
+ )
+ .extend(
+ {
+ cv.Optional(CONF_GAIN, default="1"): cv.enum(AMBIENT_LIGHT_GAINS, int=True),
+ cv.Optional(CONF_BIT_WIDTH, default="18"): cv.enum(
+ MEASUREMENT_BIT_WIDTHS, int=True
+ ),
+ cv.Optional(
+ CONF_MEASUREMENT_RATE, default="100ms"
+ ): _validate_measurement_rate,
+ }
+ )
+ .extend(cv.polling_component_schema("60s"))
+ .extend(i2c.i2c_device_schema(0x52))
+)
+
+
+async def to_code(config):
+ var = await sensor.new_sensor(config)
+ await cg.register_component(var, config)
+ await i2c.register_i2c_device(var, config)
+
+ cg.add(var.set_bit_width(config[CONF_BIT_WIDTH]))
+ cg.add(var.set_measurement_rate(config[CONF_MEASUREMENT_RATE]))
+ cg.add(var.set_ambient_light_gain(config[CONF_GAIN]))
diff --git a/esphome/components/api/__init__.py b/esphome/components/api/__init__.py
index d6b4416af8..27de5c873b 100644
--- a/esphome/components/api/__init__.py
+++ b/esphome/components/api/__init__.py
@@ -1,25 +1,27 @@
import base64
-import esphome.codegen as cg
-import esphome.config_validation as cv
from esphome import automation
from esphome.automation import Condition
+import esphome.codegen as cg
+import esphome.config_validation as cv
from esphome.const import (
+ CONF_ACTION,
+ CONF_ACTIONS,
CONF_DATA,
CONF_DATA_TEMPLATE,
+ CONF_EVENT,
CONF_ID,
CONF_KEY,
+ CONF_ON_CLIENT_CONNECTED,
+ CONF_ON_CLIENT_DISCONNECTED,
CONF_PASSWORD,
CONF_PORT,
CONF_REBOOT_TIMEOUT,
CONF_SERVICE,
- CONF_VARIABLES,
CONF_SERVICES,
- CONF_TRIGGER_ID,
- CONF_EVENT,
CONF_TAG,
- CONF_ON_CLIENT_CONNECTED,
- CONF_ON_CLIENT_DISCONNECTED,
+ CONF_TRIGGER_ID,
+ CONF_VARIABLES,
)
from esphome.core import coroutine_with_priority
@@ -63,40 +65,51 @@ def validate_encryption_key(value):
return value
-CONFIG_SCHEMA = cv.Schema(
+ACTIONS_SCHEMA = automation.validate_automation(
{
- cv.GenerateID(): cv.declare_id(APIServer),
- cv.Optional(CONF_PORT, default=6053): cv.port,
- cv.Optional(CONF_PASSWORD, default=""): cv.string_strict,
- cv.Optional(
- CONF_REBOOT_TIMEOUT, default="15min"
- ): cv.positive_time_period_milliseconds,
- cv.Optional(CONF_SERVICES): automation.validate_automation(
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(UserServiceTrigger),
+ cv.Exclusive(CONF_SERVICE, group_of_exclusion=CONF_ACTION): cv.valid_name,
+ cv.Exclusive(CONF_ACTION, group_of_exclusion=CONF_ACTION): cv.valid_name,
+ cv.Optional(CONF_VARIABLES, default={}): cv.Schema(
{
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(UserServiceTrigger),
- cv.Required(CONF_SERVICE): cv.valid_name,
- cv.Optional(CONF_VARIABLES, default={}): cv.Schema(
- {
- cv.validate_id_name: cv.one_of(
- *SERVICE_ARG_NATIVE_TYPES, lower=True
- ),
- }
- ),
+ cv.validate_id_name: cv.one_of(*SERVICE_ARG_NATIVE_TYPES, lower=True),
}
),
- cv.Optional(CONF_ENCRYPTION): cv.Schema(
- {
- cv.Required(CONF_KEY): validate_encryption_key,
- }
- ),
- cv.Optional(CONF_ON_CLIENT_CONNECTED): automation.validate_automation(
- single=True
- ),
- cv.Optional(CONF_ON_CLIENT_DISCONNECTED): automation.validate_automation(
- single=True
- ),
- }
-).extend(cv.COMPONENT_SCHEMA)
+ },
+ cv.All(
+ cv.has_exactly_one_key(CONF_SERVICE, CONF_ACTION),
+ cv.rename_key(CONF_SERVICE, CONF_ACTION),
+ ),
+)
+
+CONFIG_SCHEMA = cv.All(
+ cv.Schema(
+ {
+ cv.GenerateID(): cv.declare_id(APIServer),
+ cv.Optional(CONF_PORT, default=6053): cv.port,
+ cv.Optional(CONF_PASSWORD, default=""): cv.string_strict,
+ cv.Optional(
+ CONF_REBOOT_TIMEOUT, default="15min"
+ ): cv.positive_time_period_milliseconds,
+ cv.Exclusive(
+ CONF_SERVICES, group_of_exclusion=CONF_ACTIONS
+ ): ACTIONS_SCHEMA,
+ cv.Exclusive(CONF_ACTIONS, group_of_exclusion=CONF_ACTIONS): ACTIONS_SCHEMA,
+ cv.Optional(CONF_ENCRYPTION): cv.Schema(
+ {
+ cv.Required(CONF_KEY): validate_encryption_key,
+ }
+ ),
+ cv.Optional(CONF_ON_CLIENT_CONNECTED): automation.validate_automation(
+ single=True
+ ),
+ cv.Optional(CONF_ON_CLIENT_DISCONNECTED): automation.validate_automation(
+ single=True
+ ),
+ }
+ ).extend(cv.COMPONENT_SCHEMA),
+ cv.rename_key(CONF_SERVICES, CONF_ACTIONS),
+)
@coroutine_with_priority(40.0)
@@ -108,7 +121,7 @@ async def to_code(config):
cg.add(var.set_password(config[CONF_PASSWORD]))
cg.add(var.set_reboot_timeout(config[CONF_REBOOT_TIMEOUT]))
- for conf in config.get(CONF_SERVICES, []):
+ for conf in config.get(CONF_ACTIONS, []):
template_args = []
func_args = []
service_arg_names = []
@@ -119,7 +132,7 @@ async def to_code(config):
service_arg_names.append(name)
templ = cg.TemplateArguments(*template_args)
trigger = cg.new_Pvariable(
- conf[CONF_TRIGGER_ID], templ, conf[CONF_SERVICE], service_arg_names
+ conf[CONF_TRIGGER_ID], templ, conf[CONF_ACTION], service_arg_names
)
cg.add(var.register_user_service(trigger))
await automation.build_automation(trigger, func_args, conf)
@@ -142,7 +155,7 @@ async def to_code(config):
decoded = base64.b64decode(encryption_config[CONF_KEY])
cg.add(var.set_noise_psk(list(decoded)))
cg.add_define("USE_API_NOISE")
- cg.add_library("esphome/noise-c", "0.1.4")
+ cg.add_library("esphome/noise-c", "0.1.6")
else:
cg.add_define("USE_API_PLAINTEXT")
@@ -152,28 +165,43 @@ async def to_code(config):
KEY_VALUE_SCHEMA = cv.Schema({cv.string: cv.templatable(cv.string_strict)})
-HOMEASSISTANT_SERVICE_ACTION_SCHEMA = cv.Schema(
- {
- cv.GenerateID(): cv.use_id(APIServer),
- cv.Required(CONF_SERVICE): cv.templatable(cv.string),
- cv.Optional(CONF_DATA, default={}): KEY_VALUE_SCHEMA,
- cv.Optional(CONF_DATA_TEMPLATE, default={}): KEY_VALUE_SCHEMA,
- cv.Optional(CONF_VARIABLES, default={}): cv.Schema(
- {cv.string: cv.returning_lambda}
- ),
- }
+
+HOMEASSISTANT_ACTION_ACTION_SCHEMA = cv.All(
+ cv.Schema(
+ {
+ cv.GenerateID(): cv.use_id(APIServer),
+ cv.Exclusive(CONF_SERVICE, group_of_exclusion=CONF_ACTION): cv.templatable(
+ cv.string
+ ),
+ cv.Exclusive(CONF_ACTION, group_of_exclusion=CONF_ACTION): cv.templatable(
+ cv.string
+ ),
+ cv.Optional(CONF_DATA, default={}): KEY_VALUE_SCHEMA,
+ cv.Optional(CONF_DATA_TEMPLATE, default={}): KEY_VALUE_SCHEMA,
+ cv.Optional(CONF_VARIABLES, default={}): cv.Schema(
+ {cv.string: cv.returning_lambda}
+ ),
+ }
+ ),
+ cv.has_exactly_one_key(CONF_SERVICE, CONF_ACTION),
+ cv.rename_key(CONF_SERVICE, CONF_ACTION),
)
+@automation.register_action(
+ "homeassistant.action",
+ HomeAssistantServiceCallAction,
+ HOMEASSISTANT_ACTION_ACTION_SCHEMA,
+)
@automation.register_action(
"homeassistant.service",
HomeAssistantServiceCallAction,
- HOMEASSISTANT_SERVICE_ACTION_SCHEMA,
+ HOMEASSISTANT_ACTION_ACTION_SCHEMA,
)
async def homeassistant_service_to_code(config, action_id, template_arg, args):
serv = await cg.get_variable(config[CONF_ID])
var = cg.new_Pvariable(action_id, template_arg, serv, False)
- templ = await cg.templatable(config[CONF_SERVICE], args, None)
+ templ = await cg.templatable(config[CONF_ACTION], args, None)
cg.add(var.set_service(templ))
for key, value in config[CONF_DATA].items():
templ = await cg.templatable(value, args, None)
diff --git a/esphome/components/api/api.proto b/esphome/components/api/api.proto
index 812a1d74ae..684540ffa6 100644
--- a/esphome/components/api/api.proto
+++ b/esphome/components/api/api.proto
@@ -62,6 +62,8 @@ service APIConnection {
rpc unsubscribe_bluetooth_le_advertisements(UnsubscribeBluetoothLEAdvertisementsRequest) returns (void) {}
rpc subscribe_voice_assistant(SubscribeVoiceAssistantRequest) returns (void) {}
+ rpc voice_assistant_get_configuration(VoiceAssistantConfigurationRequest) returns (VoiceAssistantConfigurationResponse) {}
+ rpc voice_assistant_set_configuration(VoiceAssistantSetConfiguration) returns (void) {}
rpc alarm_control_panel_command (AlarmControlPanelCommandRequest) returns (void) {}
}
@@ -686,6 +688,7 @@ message SubscribeHomeAssistantStateResponse {
option (source) = SOURCE_SERVER;
string entity_id = 1;
string attribute = 2;
+ bool once = 3;
}
message HomeAssistantStateResponse {
@@ -1106,6 +1109,19 @@ enum MediaPlayerCommand {
MEDIA_PLAYER_COMMAND_MUTE = 3;
MEDIA_PLAYER_COMMAND_UNMUTE = 4;
}
+enum MediaPlayerFormatPurpose {
+ MEDIA_PLAYER_FORMAT_PURPOSE_DEFAULT = 0;
+ MEDIA_PLAYER_FORMAT_PURPOSE_ANNOUNCEMENT = 1;
+}
+message MediaPlayerSupportedFormat {
+ option (ifdef) = "USE_MEDIA_PLAYER";
+
+ string format = 1;
+ uint32 sample_rate = 2;
+ uint32 num_channels = 3;
+ MediaPlayerFormatPurpose purpose = 4;
+ uint32 sample_bytes = 5;
+}
message ListEntitiesMediaPlayerResponse {
option (id) = 63;
option (source) = SOURCE_SERVER;
@@ -1121,6 +1137,8 @@ message ListEntitiesMediaPlayerResponse {
EntityCategory entity_category = 7;
bool supports_pause = 8;
+
+ repeated MediaPlayerSupportedFormat supported_formats = 9;
}
message MediaPlayerStateResponse {
option (id) = 64;
@@ -1538,6 +1556,53 @@ message VoiceAssistantTimerEventResponse {
bool is_active = 6;
}
+message VoiceAssistantAnnounceRequest {
+ option (id) = 119;
+ option (source) = SOURCE_CLIENT;
+ option (ifdef) = "USE_VOICE_ASSISTANT";
+
+ string media_id = 1;
+ string text = 2;
+}
+
+message VoiceAssistantAnnounceFinished {
+ option (id) = 120;
+ option (source) = SOURCE_SERVER;
+ option (ifdef) = "USE_VOICE_ASSISTANT";
+
+ bool success = 1;
+}
+
+message VoiceAssistantWakeWord {
+ string id = 1;
+ string wake_word = 2;
+ repeated string trained_languages = 3;
+}
+
+message VoiceAssistantConfigurationRequest {
+ option (id) = 121;
+ option (source) = SOURCE_CLIENT;
+ option (ifdef) = "USE_VOICE_ASSISTANT";
+}
+
+message VoiceAssistantConfigurationResponse {
+ option (id) = 122;
+ option (source) = SOURCE_SERVER;
+ option (ifdef) = "USE_VOICE_ASSISTANT";
+
+ repeated VoiceAssistantWakeWord available_wake_words = 1;
+ repeated string active_wake_words = 2;
+ uint32 max_active_wake_words = 3;
+}
+
+message VoiceAssistantSetConfiguration {
+ option (id) = 123;
+ option (source) = SOURCE_CLIENT;
+ option (ifdef) = "USE_VOICE_ASSISTANT";
+
+ repeated string active_wake_words = 1;
+}
+
// ==================== ALARM CONTROL PANEL ====================
enum AlarmControlPanelState {
ALARM_STATE_DISARMED = 0;
@@ -1872,6 +1937,11 @@ message UpdateStateResponse {
string release_summary = 9;
string release_url = 10;
}
+enum UpdateCommand {
+ UPDATE_COMMAND_NONE = 0;
+ UPDATE_COMMAND_UPDATE = 1;
+ UPDATE_COMMAND_CHECK = 2;
+}
message UpdateCommandRequest {
option (id) = 118;
option (source) = SOURCE_CLIENT;
@@ -1879,5 +1949,5 @@ message UpdateCommandRequest {
option (no_delay) = true;
fixed32 key = 1;
- bool install = 2;
+ UpdateCommand command = 2;
}
diff --git a/esphome/components/api/api_connection.cpp b/esphome/components/api/api_connection.cpp
index 2e73a8336e..bb55a2ccf6 100644
--- a/esphome/components/api/api_connection.cpp
+++ b/esphome/components/api/api_connection.cpp
@@ -1,4 +1,5 @@
#include "api_connection.h"
+#ifdef USE_API
#include
#include
#include
@@ -179,6 +180,7 @@ void APIConnection::loop() {
SubscribeHomeAssistantStateResponse resp;
resp.entity_id = it.entity_id;
resp.attribute = it.attribute.value();
+ resp.once = it.once;
if (this->send_subscribe_home_assistant_state_response(resp)) {
state_subs_at_++;
}
@@ -1025,6 +1027,16 @@ bool APIConnection::send_media_player_info(media_player::MediaPlayer *media_play
auto traits = media_player->get_traits();
msg.supports_pause = traits.get_supports_pause();
+ for (auto &supported_format : traits.get_supported_formats()) {
+ MediaPlayerSupportedFormat media_format;
+ media_format.format = supported_format.format;
+ media_format.sample_rate = supported_format.sample_rate;
+ media_format.num_channels = supported_format.num_channels;
+ media_format.purpose = static_cast(supported_format.purpose);
+ media_format.sample_bytes = supported_format.sample_bytes;
+ msg.supported_formats.push_back(media_format);
+ }
+
return this->send_list_entities_media_player_response(msg);
}
void APIConnection::media_player_command(const MediaPlayerCommandRequest &msg) {
@@ -1203,6 +1215,52 @@ void APIConnection::on_voice_assistant_timer_event_response(const VoiceAssistant
}
};
+void APIConnection::on_voice_assistant_announce_request(const VoiceAssistantAnnounceRequest &msg) {
+ if (voice_assistant::global_voice_assistant != nullptr) {
+ if (voice_assistant::global_voice_assistant->get_api_connection() != this) {
+ return;
+ }
+
+ voice_assistant::global_voice_assistant->on_announce(msg);
+ }
+}
+
+VoiceAssistantConfigurationResponse APIConnection::voice_assistant_get_configuration(
+ const VoiceAssistantConfigurationRequest &msg) {
+ VoiceAssistantConfigurationResponse resp;
+ if (voice_assistant::global_voice_assistant != nullptr) {
+ if (voice_assistant::global_voice_assistant->get_api_connection() != this) {
+ return resp;
+ }
+
+ auto &config = voice_assistant::global_voice_assistant->get_configuration();
+ for (auto &wake_word : config.available_wake_words) {
+ VoiceAssistantWakeWord resp_wake_word;
+ resp_wake_word.id = wake_word.id;
+ resp_wake_word.wake_word = wake_word.wake_word;
+ for (const auto &lang : wake_word.trained_languages) {
+ resp_wake_word.trained_languages.push_back(lang);
+ }
+ resp.available_wake_words.push_back(std::move(resp_wake_word));
+ }
+ for (auto &wake_word_id : config.active_wake_words) {
+ resp.active_wake_words.push_back(wake_word_id);
+ }
+ resp.max_active_wake_words = config.max_active_wake_words;
+ }
+ return resp;
+}
+
+void APIConnection::voice_assistant_set_configuration(const VoiceAssistantSetConfiguration &msg) {
+ if (voice_assistant::global_voice_assistant != nullptr) {
+ if (voice_assistant::global_voice_assistant->get_api_connection() != this) {
+ return;
+ }
+
+ voice_assistant::global_voice_assistant->on_set_configuration(msg.active_wake_words);
+ }
+}
+
#endif
#ifdef USE_ALARM_CONTROL_PANEL
@@ -1328,7 +1386,20 @@ void APIConnection::update_command(const UpdateCommandRequest &msg) {
if (update == nullptr)
return;
- update->perform();
+ switch (msg.command) {
+ case enums::UPDATE_COMMAND_UPDATE:
+ update->perform();
+ break;
+ case enums::UPDATE_COMMAND_CHECK:
+ update->check();
+ break;
+ case enums::UPDATE_COMMAND_NONE:
+ ESP_LOGE(TAG, "UPDATE_COMMAND_NONE not handled. Check client is sending the correct command");
+ break;
+ default:
+ ESP_LOGW(TAG, "Unknown update command: %" PRIu32, msg.command);
+ break;
+ }
}
#endif
@@ -1498,3 +1569,4 @@ void APIConnection::on_fatal_error() {
} // namespace api
} // namespace esphome
+#endif
diff --git a/esphome/components/api/api_connection.h b/esphome/components/api/api_connection.h
index 714e806470..043aaee421 100644
--- a/esphome/components/api/api_connection.h
+++ b/esphome/components/api/api_connection.h
@@ -1,12 +1,13 @@
#pragma once
+#include "esphome/core/defines.h"
+#ifdef USE_API
#include "api_frame_helper.h"
#include "api_pb2.h"
#include "api_pb2_service.h"
#include "api_server.h"
#include "esphome/core/application.h"
#include "esphome/core/component.h"
-#include "esphome/core/defines.h"
#include
@@ -151,6 +152,10 @@ class APIConnection : public APIServerConnection {
void on_voice_assistant_event_response(const VoiceAssistantEventResponse &msg) override;
void on_voice_assistant_audio(const VoiceAssistantAudio &msg) override;
void on_voice_assistant_timer_event_response(const VoiceAssistantTimerEventResponse &msg) override;
+ void on_voice_assistant_announce_request(const VoiceAssistantAnnounceRequest &msg) override;
+ VoiceAssistantConfigurationResponse voice_assistant_get_configuration(
+ const VoiceAssistantConfigurationRequest &msg) override;
+ void voice_assistant_set_configuration(const VoiceAssistantSetConfiguration &msg) override;
#endif
#ifdef USE_ALARM_CONTROL_PANEL
@@ -264,3 +269,4 @@ class APIConnection : public APIServerConnection {
} // namespace api
} // namespace esphome
+#endif
diff --git a/esphome/components/api/api_frame_helper.cpp b/esphome/components/api/api_frame_helper.cpp
index f4b18a1fd6..62f375508c 100644
--- a/esphome/components/api/api_frame_helper.cpp
+++ b/esphome/components/api/api_frame_helper.cpp
@@ -1,5 +1,5 @@
#include "api_frame_helper.h"
-
+#ifdef USE_API
#include "esphome/core/log.h"
#include "esphome/core/hal.h"
#include "esphome/core/helpers.h"
@@ -1028,3 +1028,4 @@ APIError APIPlaintextFrameHelper::shutdown(int how) {
} // namespace api
} // namespace esphome
+#endif
diff --git a/esphome/components/api/api_frame_helper.h b/esphome/components/api/api_frame_helper.h
index bf4872d2d6..56d8bf1973 100644
--- a/esphome/components/api/api_frame_helper.h
+++ b/esphome/components/api/api_frame_helper.h
@@ -5,7 +5,7 @@
#include
#include "esphome/core/defines.h"
-
+#ifdef USE_API
#ifdef USE_API_NOISE
#include "noise/protocol.h"
#endif
@@ -190,3 +190,4 @@ class APIPlaintextFrameHelper : public APIFrameHelper {
} // namespace api
} // namespace esphome
+#endif
diff --git a/esphome/components/api/api_pb2.cpp b/esphome/components/api/api_pb2.cpp
index e6e905c6d1..8df152881c 100644
--- a/esphome/components/api/api_pb2.cpp
+++ b/esphome/components/api/api_pb2.cpp
@@ -387,6 +387,18 @@ template<> const char *proto_enum_to_string(enums::Me
}
#endif
#ifdef HAS_PROTO_MESSAGE_DUMP
+template<> const char *proto_enum_to_string(enums::MediaPlayerFormatPurpose value) {
+ switch (value) {
+ case enums::MEDIA_PLAYER_FORMAT_PURPOSE_DEFAULT:
+ return "MEDIA_PLAYER_FORMAT_PURPOSE_DEFAULT";
+ case enums::MEDIA_PLAYER_FORMAT_PURPOSE_ANNOUNCEMENT:
+ return "MEDIA_PLAYER_FORMAT_PURPOSE_ANNOUNCEMENT";
+ default:
+ return "UNKNOWN";
+ }
+}
+#endif
+#ifdef HAS_PROTO_MESSAGE_DUMP
template<>
const char *proto_enum_to_string(enums::BluetoothDeviceRequestType value) {
switch (value) {
@@ -567,6 +579,20 @@ template<> const char *proto_enum_to_string(enums::ValveO
}
}
#endif
+#ifdef HAS_PROTO_MESSAGE_DUMP
+template<> const char *proto_enum_to_string(enums::UpdateCommand value) {
+ switch (value) {
+ case enums::UPDATE_COMMAND_NONE:
+ return "UPDATE_COMMAND_NONE";
+ case enums::UPDATE_COMMAND_UPDATE:
+ return "UPDATE_COMMAND_UPDATE";
+ case enums::UPDATE_COMMAND_CHECK:
+ return "UPDATE_COMMAND_CHECK";
+ default:
+ return "UNKNOWN";
+ }
+}
+#endif
bool HelloRequest::decode_varint(uint32_t field_id, ProtoVarInt value) {
switch (field_id) {
case 2: {
@@ -3095,6 +3121,16 @@ void SubscribeHomeAssistantStatesRequest::dump_to(std::string &out) const {
out.append("SubscribeHomeAssistantStatesRequest {}");
}
#endif
+bool SubscribeHomeAssistantStateResponse::decode_varint(uint32_t field_id, ProtoVarInt value) {
+ switch (field_id) {
+ case 3: {
+ this->once = value.as_bool();
+ return true;
+ }
+ default:
+ return false;
+ }
+}
bool SubscribeHomeAssistantStateResponse::decode_length(uint32_t field_id, ProtoLengthDelimited value) {
switch (field_id) {
case 1: {
@@ -3112,6 +3148,7 @@ bool SubscribeHomeAssistantStateResponse::decode_length(uint32_t field_id, Proto
void SubscribeHomeAssistantStateResponse::encode(ProtoWriteBuffer buffer) const {
buffer.encode_string(1, this->entity_id);
buffer.encode_string(2, this->attribute);
+ buffer.encode_bool(3, this->once);
}
#ifdef HAS_PROTO_MESSAGE_DUMP
void SubscribeHomeAssistantStateResponse::dump_to(std::string &out) const {
@@ -3124,6 +3161,10 @@ void SubscribeHomeAssistantStateResponse::dump_to(std::string &out) const {
out.append(" attribute: ");
out.append("'").append(this->attribute).append("'");
out.append("\n");
+
+ out.append(" once: ");
+ out.append(YESNO(this->once));
+ out.append("\n");
out.append("}");
}
#endif
@@ -5094,6 +5135,74 @@ void ButtonCommandRequest::dump_to(std::string &out) const {
out.append("}");
}
#endif
+bool MediaPlayerSupportedFormat::decode_varint(uint32_t field_id, ProtoVarInt value) {
+ switch (field_id) {
+ case 2: {
+ this->sample_rate = value.as_uint32();
+ return true;
+ }
+ case 3: {
+ this->num_channels = value.as_uint32();
+ return true;
+ }
+ case 4: {
+ this->purpose = value.as_enum();
+ return true;
+ }
+ case 5: {
+ this->sample_bytes = value.as_uint32();
+ return true;
+ }
+ default:
+ return false;
+ }
+}
+bool MediaPlayerSupportedFormat::decode_length(uint32_t field_id, ProtoLengthDelimited value) {
+ switch (field_id) {
+ case 1: {
+ this->format = value.as_string();
+ return true;
+ }
+ default:
+ return false;
+ }
+}
+void MediaPlayerSupportedFormat::encode(ProtoWriteBuffer buffer) const {
+ buffer.encode_string(1, this->format);
+ buffer.encode_uint32(2, this->sample_rate);
+ buffer.encode_uint32(3, this->num_channels);
+ buffer.encode_enum(4, this->purpose);
+ buffer.encode_uint32(5, this->sample_bytes);
+}
+#ifdef HAS_PROTO_MESSAGE_DUMP
+void MediaPlayerSupportedFormat::dump_to(std::string &out) const {
+ __attribute__((unused)) char buffer[64];
+ out.append("MediaPlayerSupportedFormat {\n");
+ out.append(" format: ");
+ out.append("'").append(this->format).append("'");
+ out.append("\n");
+
+ out.append(" sample_rate: ");
+ sprintf(buffer, "%" PRIu32, this->sample_rate);
+ out.append(buffer);
+ out.append("\n");
+
+ out.append(" num_channels: ");
+ sprintf(buffer, "%" PRIu32, this->num_channels);
+ out.append(buffer);
+ out.append("\n");
+
+ out.append(" purpose: ");
+ out.append(proto_enum_to_string(this->purpose));
+ out.append("\n");
+
+ out.append(" sample_bytes: ");
+ sprintf(buffer, "%" PRIu32, this->sample_bytes);
+ out.append(buffer);
+ out.append("\n");
+ out.append("}");
+}
+#endif
bool ListEntitiesMediaPlayerResponse::decode_varint(uint32_t field_id, ProtoVarInt value) {
switch (field_id) {
case 6: {
@@ -5130,6 +5239,10 @@ bool ListEntitiesMediaPlayerResponse::decode_length(uint32_t field_id, ProtoLeng
this->icon = value.as_string();
return true;
}
+ case 9: {
+ this->supported_formats.push_back(value.as_message());
+ return true;
+ }
default:
return false;
}
@@ -5153,6 +5266,9 @@ void ListEntitiesMediaPlayerResponse::encode(ProtoWriteBuffer buffer) const {
buffer.encode_bool(6, this->disabled_by_default);
buffer.encode_enum(7, this->entity_category);
buffer.encode_bool(8, this->supports_pause);
+ for (auto &it : this->supported_formats) {
+ buffer.encode_message(9, it, true);
+ }
}
#ifdef HAS_PROTO_MESSAGE_DUMP
void ListEntitiesMediaPlayerResponse::dump_to(std::string &out) const {
@@ -5190,6 +5306,12 @@ void ListEntitiesMediaPlayerResponse::dump_to(std::string &out) const {
out.append(" supports_pause: ");
out.append(YESNO(this->supports_pause));
out.append("\n");
+
+ for (const auto &it : this->supported_formats) {
+ out.append(" supported_formats: ");
+ it.dump_to(out);
+ out.append("\n");
+ }
out.append("}");
}
#endif
@@ -6949,6 +7071,193 @@ void VoiceAssistantTimerEventResponse::dump_to(std::string &out) const {
out.append("}");
}
#endif
+bool VoiceAssistantAnnounceRequest::decode_length(uint32_t field_id, ProtoLengthDelimited value) {
+ switch (field_id) {
+ case 1: {
+ this->media_id = value.as_string();
+ return true;
+ }
+ case 2: {
+ this->text = value.as_string();
+ return true;
+ }
+ default:
+ return false;
+ }
+}
+void VoiceAssistantAnnounceRequest::encode(ProtoWriteBuffer buffer) const {
+ buffer.encode_string(1, this->media_id);
+ buffer.encode_string(2, this->text);
+}
+#ifdef HAS_PROTO_MESSAGE_DUMP
+void VoiceAssistantAnnounceRequest::dump_to(std::string &out) const {
+ __attribute__((unused)) char buffer[64];
+ out.append("VoiceAssistantAnnounceRequest {\n");
+ out.append(" media_id: ");
+ out.append("'").append(this->media_id).append("'");
+ out.append("\n");
+
+ out.append(" text: ");
+ out.append("'").append(this->text).append("'");
+ out.append("\n");
+ out.append("}");
+}
+#endif
+bool VoiceAssistantAnnounceFinished::decode_varint(uint32_t field_id, ProtoVarInt value) {
+ switch (field_id) {
+ case 1: {
+ this->success = value.as_bool();
+ return true;
+ }
+ default:
+ return false;
+ }
+}
+void VoiceAssistantAnnounceFinished::encode(ProtoWriteBuffer buffer) const { buffer.encode_bool(1, this->success); }
+#ifdef HAS_PROTO_MESSAGE_DUMP
+void VoiceAssistantAnnounceFinished::dump_to(std::string &out) const {
+ __attribute__((unused)) char buffer[64];
+ out.append("VoiceAssistantAnnounceFinished {\n");
+ out.append(" success: ");
+ out.append(YESNO(this->success));
+ out.append("\n");
+ out.append("}");
+}
+#endif
+bool VoiceAssistantWakeWord::decode_length(uint32_t field_id, ProtoLengthDelimited value) {
+ switch (field_id) {
+ case 1: {
+ this->id = value.as_string();
+ return true;
+ }
+ case 2: {
+ this->wake_word = value.as_string();
+ return true;
+ }
+ case 3: {
+ this->trained_languages.push_back(value.as_string());
+ return true;
+ }
+ default:
+ return false;
+ }
+}
+void VoiceAssistantWakeWord::encode(ProtoWriteBuffer buffer) const {
+ buffer.encode_string(1, this->id);
+ buffer.encode_string(2, this->wake_word);
+ for (auto &it : this->trained_languages) {
+ buffer.encode_string(3, it, true);
+ }
+}
+#ifdef HAS_PROTO_MESSAGE_DUMP
+void VoiceAssistantWakeWord::dump_to(std::string &out) const {
+ __attribute__((unused)) char buffer[64];
+ out.append("VoiceAssistantWakeWord {\n");
+ out.append(" id: ");
+ out.append("'").append(this->id).append("'");
+ out.append("\n");
+
+ out.append(" wake_word: ");
+ out.append("'").append(this->wake_word).append("'");
+ out.append("\n");
+
+ for (const auto &it : this->trained_languages) {
+ out.append(" trained_languages: ");
+ out.append("'").append(it).append("'");
+ out.append("\n");
+ }
+ out.append("}");
+}
+#endif
+void VoiceAssistantConfigurationRequest::encode(ProtoWriteBuffer buffer) const {}
+#ifdef HAS_PROTO_MESSAGE_DUMP
+void VoiceAssistantConfigurationRequest::dump_to(std::string &out) const {
+ out.append("VoiceAssistantConfigurationRequest {}");
+}
+#endif
+bool VoiceAssistantConfigurationResponse::decode_varint(uint32_t field_id, ProtoVarInt value) {
+ switch (field_id) {
+ case 3: {
+ this->max_active_wake_words = value.as_uint32();
+ return true;
+ }
+ default:
+ return false;
+ }
+}
+bool VoiceAssistantConfigurationResponse::decode_length(uint32_t field_id, ProtoLengthDelimited value) {
+ switch (field_id) {
+ case 1: {
+ this->available_wake_words.push_back(value.as_message());
+ return true;
+ }
+ case 2: {
+ this->active_wake_words.push_back(value.as_string());
+ return true;
+ }
+ default:
+ return false;
+ }
+}
+void VoiceAssistantConfigurationResponse::encode(ProtoWriteBuffer buffer) const {
+ for (auto &it : this->available_wake_words) {
+ buffer.encode_message(1, it, true);
+ }
+ for (auto &it : this->active_wake_words) {
+ buffer.encode_string(2, it, true);
+ }
+ buffer.encode_uint32(3, this->max_active_wake_words);
+}
+#ifdef HAS_PROTO_MESSAGE_DUMP
+void VoiceAssistantConfigurationResponse::dump_to(std::string &out) const {
+ __attribute__((unused)) char buffer[64];
+ out.append("VoiceAssistantConfigurationResponse {\n");
+ for (const auto &it : this->available_wake_words) {
+ out.append(" available_wake_words: ");
+ it.dump_to(out);
+ out.append("\n");
+ }
+
+ for (const auto &it : this->active_wake_words) {
+ out.append(" active_wake_words: ");
+ out.append("'").append(it).append("'");
+ out.append("\n");
+ }
+
+ out.append(" max_active_wake_words: ");
+ sprintf(buffer, "%" PRIu32, this->max_active_wake_words);
+ out.append(buffer);
+ out.append("\n");
+ out.append("}");
+}
+#endif
+bool VoiceAssistantSetConfiguration::decode_length(uint32_t field_id, ProtoLengthDelimited value) {
+ switch (field_id) {
+ case 1: {
+ this->active_wake_words.push_back(value.as_string());
+ return true;
+ }
+ default:
+ return false;
+ }
+}
+void VoiceAssistantSetConfiguration::encode(ProtoWriteBuffer buffer) const {
+ for (auto &it : this->active_wake_words) {
+ buffer.encode_string(1, it, true);
+ }
+}
+#ifdef HAS_PROTO_MESSAGE_DUMP
+void VoiceAssistantSetConfiguration::dump_to(std::string &out) const {
+ __attribute__((unused)) char buffer[64];
+ out.append("VoiceAssistantSetConfiguration {\n");
+ for (const auto &it : this->active_wake_words) {
+ out.append(" active_wake_words: ");
+ out.append("'").append(it).append("'");
+ out.append("\n");
+ }
+ out.append("}");
+}
+#endif
bool ListEntitiesAlarmControlPanelResponse::decode_varint(uint32_t field_id, ProtoVarInt value) {
switch (field_id) {
case 6: {
@@ -8596,7 +8905,7 @@ void UpdateStateResponse::dump_to(std::string &out) const {
bool UpdateCommandRequest::decode_varint(uint32_t field_id, ProtoVarInt value) {
switch (field_id) {
case 2: {
- this->install = value.as_bool();
+ this->command = value.as_enum();
return true;
}
default:
@@ -8615,7 +8924,7 @@ bool UpdateCommandRequest::decode_32bit(uint32_t field_id, Proto32Bit value) {
}
void UpdateCommandRequest::encode(ProtoWriteBuffer buffer) const {
buffer.encode_fixed32(1, this->key);
- buffer.encode_bool(2, this->install);
+ buffer.encode_enum(2, this->command);
}
#ifdef HAS_PROTO_MESSAGE_DUMP
void UpdateCommandRequest::dump_to(std::string &out) const {
@@ -8626,8 +8935,8 @@ void UpdateCommandRequest::dump_to(std::string &out) const {
out.append(buffer);
out.append("\n");
- out.append(" install: ");
- out.append(YESNO(this->install));
+ out.append(" command: ");
+ out.append(proto_enum_to_string(this->command));
out.append("\n");
out.append("}");
}
diff --git a/esphome/components/api/api_pb2.h b/esphome/components/api/api_pb2.h
index ef051eecf1..063c217bf7 100644
--- a/esphome/components/api/api_pb2.h
+++ b/esphome/components/api/api_pb2.h
@@ -156,6 +156,10 @@ enum MediaPlayerCommand : uint32_t {
MEDIA_PLAYER_COMMAND_MUTE = 3,
MEDIA_PLAYER_COMMAND_UNMUTE = 4,
};
+enum MediaPlayerFormatPurpose : uint32_t {
+ MEDIA_PLAYER_FORMAT_PURPOSE_DEFAULT = 0,
+ MEDIA_PLAYER_FORMAT_PURPOSE_ANNOUNCEMENT = 1,
+};
enum BluetoothDeviceRequestType : uint32_t {
BLUETOOTH_DEVICE_REQUEST_TYPE_CONNECT = 0,
BLUETOOTH_DEVICE_REQUEST_TYPE_DISCONNECT = 1,
@@ -227,6 +231,11 @@ enum ValveOperation : uint32_t {
VALVE_OPERATION_IS_OPENING = 1,
VALVE_OPERATION_IS_CLOSING = 2,
};
+enum UpdateCommand : uint32_t {
+ UPDATE_COMMAND_NONE = 0,
+ UPDATE_COMMAND_UPDATE = 1,
+ UPDATE_COMMAND_CHECK = 2,
+};
} // namespace enums
@@ -831,6 +840,7 @@ class SubscribeHomeAssistantStateResponse : public ProtoMessage {
public:
std::string entity_id{};
std::string attribute{};
+ bool once{false};
void encode(ProtoWriteBuffer buffer) const override;
#ifdef HAS_PROTO_MESSAGE_DUMP
void dump_to(std::string &out) const override;
@@ -838,6 +848,7 @@ class SubscribeHomeAssistantStateResponse : public ProtoMessage {
protected:
bool decode_length(uint32_t field_id, ProtoLengthDelimited value) override;
+ bool decode_varint(uint32_t field_id, ProtoVarInt value) override;
};
class HomeAssistantStateResponse : public ProtoMessage {
public:
@@ -1260,6 +1271,22 @@ class ButtonCommandRequest : public ProtoMessage {
protected:
bool decode_32bit(uint32_t field_id, Proto32Bit value) override;
};
+class MediaPlayerSupportedFormat : public ProtoMessage {
+ public:
+ std::string format{};
+ uint32_t sample_rate{0};
+ uint32_t num_channels{0};
+ enums::MediaPlayerFormatPurpose purpose{};
+ uint32_t sample_bytes{0};
+ void encode(ProtoWriteBuffer buffer) const override;
+#ifdef HAS_PROTO_MESSAGE_DUMP
+ void dump_to(std::string &out) const override;
+#endif
+
+ protected:
+ bool decode_length(uint32_t field_id, ProtoLengthDelimited value) override;
+ bool decode_varint(uint32_t field_id, ProtoVarInt value) override;
+};
class ListEntitiesMediaPlayerResponse : public ProtoMessage {
public:
std::string object_id{};
@@ -1270,6 +1297,7 @@ class ListEntitiesMediaPlayerResponse : public ProtoMessage {
bool disabled_by_default{false};
enums::EntityCategory entity_category{};
bool supports_pause{false};
+ std::vector supported_formats{};
void encode(ProtoWriteBuffer buffer) const override;
#ifdef HAS_PROTO_MESSAGE_DUMP
void dump_to(std::string &out) const override;
@@ -1798,6 +1826,76 @@ class VoiceAssistantTimerEventResponse : public ProtoMessage {
bool decode_length(uint32_t field_id, ProtoLengthDelimited value) override;
bool decode_varint(uint32_t field_id, ProtoVarInt value) override;
};
+class VoiceAssistantAnnounceRequest : public ProtoMessage {
+ public:
+ std::string media_id{};
+ std::string text{};
+ void encode(ProtoWriteBuffer buffer) const override;
+#ifdef HAS_PROTO_MESSAGE_DUMP
+ void dump_to(std::string &out) const override;
+#endif
+
+ protected:
+ bool decode_length(uint32_t field_id, ProtoLengthDelimited value) override;
+};
+class VoiceAssistantAnnounceFinished : public ProtoMessage {
+ public:
+ bool success{false};
+ void encode(ProtoWriteBuffer buffer) const override;
+#ifdef HAS_PROTO_MESSAGE_DUMP
+ void dump_to(std::string &out) const override;
+#endif
+
+ protected:
+ bool decode_varint(uint32_t field_id, ProtoVarInt value) override;
+};
+class VoiceAssistantWakeWord : public ProtoMessage {
+ public:
+ std::string id{};
+ std::string wake_word{};
+ std::vector trained_languages{};
+ void encode(ProtoWriteBuffer buffer) const override;
+#ifdef HAS_PROTO_MESSAGE_DUMP
+ void dump_to(std::string &out) const override;
+#endif
+
+ protected:
+ bool decode_length(uint32_t field_id, ProtoLengthDelimited value) override;
+};
+class VoiceAssistantConfigurationRequest : public ProtoMessage {
+ public:
+ void encode(ProtoWriteBuffer buffer) const override;
+#ifdef HAS_PROTO_MESSAGE_DUMP
+ void dump_to(std::string &out) const override;
+#endif
+
+ protected:
+};
+class VoiceAssistantConfigurationResponse : public ProtoMessage {
+ public:
+ std::vector available_wake_words{};
+ std::vector active_wake_words{};
+ uint32_t max_active_wake_words{0};
+ void encode(ProtoWriteBuffer buffer) const override;
+#ifdef HAS_PROTO_MESSAGE_DUMP
+ void dump_to(std::string &out) const override;
+#endif
+
+ protected:
+ bool decode_length(uint32_t field_id, ProtoLengthDelimited value) override;
+ bool decode_varint(uint32_t field_id, ProtoVarInt value) override;
+};
+class VoiceAssistantSetConfiguration : public ProtoMessage {
+ public:
+ std::vector active_wake_words{};
+ void encode(ProtoWriteBuffer buffer) const override;
+#ifdef HAS_PROTO_MESSAGE_DUMP
+ void dump_to(std::string &out) const override;
+#endif
+
+ protected:
+ bool decode_length(uint32_t field_id, ProtoLengthDelimited value) override;
+};
class ListEntitiesAlarmControlPanelResponse : public ProtoMessage {
public:
std::string object_id{};
@@ -2175,7 +2273,7 @@ class UpdateStateResponse : public ProtoMessage {
class UpdateCommandRequest : public ProtoMessage {
public:
uint32_t key{0};
- bool install{false};
+ enums::UpdateCommand command{};
void encode(ProtoWriteBuffer buffer) const override;
#ifdef HAS_PROTO_MESSAGE_DUMP
void dump_to(std::string &out) const override;
diff --git a/esphome/components/api/api_pb2_service.cpp b/esphome/components/api/api_pb2_service.cpp
index 269a755e9e..6e11d7169d 100644
--- a/esphome/components/api/api_pb2_service.cpp
+++ b/esphome/components/api/api_pb2_service.cpp
@@ -486,6 +486,29 @@ bool APIServerConnectionBase::send_voice_assistant_audio(const VoiceAssistantAud
#endif
#ifdef USE_VOICE_ASSISTANT
#endif
+#ifdef USE_VOICE_ASSISTANT
+#endif
+#ifdef USE_VOICE_ASSISTANT
+bool APIServerConnectionBase::send_voice_assistant_announce_finished(const VoiceAssistantAnnounceFinished &msg) {
+#ifdef HAS_PROTO_MESSAGE_DUMP
+ ESP_LOGVV(TAG, "send_voice_assistant_announce_finished: %s", msg.dump().c_str());
+#endif
+ return this->send_message_(msg, 120);
+}
+#endif
+#ifdef USE_VOICE_ASSISTANT
+#endif
+#ifdef USE_VOICE_ASSISTANT
+bool APIServerConnectionBase::send_voice_assistant_configuration_response(
+ const VoiceAssistantConfigurationResponse &msg) {
+#ifdef HAS_PROTO_MESSAGE_DUMP
+ ESP_LOGVV(TAG, "send_voice_assistant_configuration_response: %s", msg.dump().c_str());
+#endif
+ return this->send_message_(msg, 122);
+}
+#endif
+#ifdef USE_VOICE_ASSISTANT
+#endif
#ifdef USE_ALARM_CONTROL_PANEL
bool APIServerConnectionBase::send_list_entities_alarm_control_panel_response(
const ListEntitiesAlarmControlPanelResponse &msg) {
@@ -1135,6 +1158,39 @@ bool APIServerConnectionBase::read_message(uint32_t msg_size, uint32_t msg_type,
ESP_LOGVV(TAG, "on_update_command_request: %s", msg.dump().c_str());
#endif
this->on_update_command_request(msg);
+#endif
+ break;
+ }
+ case 119: {
+#ifdef USE_VOICE_ASSISTANT
+ VoiceAssistantAnnounceRequest msg;
+ msg.decode(msg_data, msg_size);
+#ifdef HAS_PROTO_MESSAGE_DUMP
+ ESP_LOGVV(TAG, "on_voice_assistant_announce_request: %s", msg.dump().c_str());
+#endif
+ this->on_voice_assistant_announce_request(msg);
+#endif
+ break;
+ }
+ case 121: {
+#ifdef USE_VOICE_ASSISTANT
+ VoiceAssistantConfigurationRequest msg;
+ msg.decode(msg_data, msg_size);
+#ifdef HAS_PROTO_MESSAGE_DUMP
+ ESP_LOGVV(TAG, "on_voice_assistant_configuration_request: %s", msg.dump().c_str());
+#endif
+ this->on_voice_assistant_configuration_request(msg);
+#endif
+ break;
+ }
+ case 123: {
+#ifdef USE_VOICE_ASSISTANT
+ VoiceAssistantSetConfiguration msg;
+ msg.decode(msg_data, msg_size);
+#ifdef HAS_PROTO_MESSAGE_DUMP
+ ESP_LOGVV(TAG, "on_voice_assistant_set_configuration: %s", msg.dump().c_str());
+#endif
+ this->on_voice_assistant_set_configuration(msg);
#endif
break;
}
@@ -1625,6 +1681,35 @@ void APIServerConnection::on_subscribe_voice_assistant_request(const SubscribeVo
this->subscribe_voice_assistant(msg);
}
#endif
+#ifdef USE_VOICE_ASSISTANT
+void APIServerConnection::on_voice_assistant_configuration_request(const VoiceAssistantConfigurationRequest &msg) {
+ if (!this->is_connection_setup()) {
+ this->on_no_setup_connection();
+ return;
+ }
+ if (!this->is_authenticated()) {
+ this->on_unauthenticated_access();
+ return;
+ }
+ VoiceAssistantConfigurationResponse ret = this->voice_assistant_get_configuration(msg);
+ if (!this->send_voice_assistant_configuration_response(ret)) {
+ this->on_fatal_error();
+ }
+}
+#endif
+#ifdef USE_VOICE_ASSISTANT
+void APIServerConnection::on_voice_assistant_set_configuration(const VoiceAssistantSetConfiguration &msg) {
+ if (!this->is_connection_setup()) {
+ this->on_no_setup_connection();
+ return;
+ }
+ if (!this->is_authenticated()) {
+ this->on_unauthenticated_access();
+ return;
+ }
+ this->voice_assistant_set_configuration(msg);
+}
+#endif
#ifdef USE_ALARM_CONTROL_PANEL
void APIServerConnection::on_alarm_control_panel_command_request(const AlarmControlPanelCommandRequest &msg) {
if (!this->is_connection_setup()) {
diff --git a/esphome/components/api/api_pb2_service.h b/esphome/components/api/api_pb2_service.h
index 83bfc2ed98..51b94bf530 100644
--- a/esphome/components/api/api_pb2_service.h
+++ b/esphome/components/api/api_pb2_service.h
@@ -247,6 +247,21 @@ class APIServerConnectionBase : public ProtoService {
#ifdef USE_VOICE_ASSISTANT
virtual void on_voice_assistant_timer_event_response(const VoiceAssistantTimerEventResponse &value){};
#endif
+#ifdef USE_VOICE_ASSISTANT
+ virtual void on_voice_assistant_announce_request(const VoiceAssistantAnnounceRequest &value){};
+#endif
+#ifdef USE_VOICE_ASSISTANT
+ bool send_voice_assistant_announce_finished(const VoiceAssistantAnnounceFinished &msg);
+#endif
+#ifdef USE_VOICE_ASSISTANT
+ virtual void on_voice_assistant_configuration_request(const VoiceAssistantConfigurationRequest &value){};
+#endif
+#ifdef USE_VOICE_ASSISTANT
+ bool send_voice_assistant_configuration_response(const VoiceAssistantConfigurationResponse &msg);
+#endif
+#ifdef USE_VOICE_ASSISTANT
+ virtual void on_voice_assistant_set_configuration(const VoiceAssistantSetConfiguration &value){};
+#endif
#ifdef USE_ALARM_CONTROL_PANEL
bool send_list_entities_alarm_control_panel_response(const ListEntitiesAlarmControlPanelResponse &msg);
#endif
@@ -419,6 +434,13 @@ class APIServerConnection : public APIServerConnectionBase {
#ifdef USE_VOICE_ASSISTANT
virtual void subscribe_voice_assistant(const SubscribeVoiceAssistantRequest &msg) = 0;
#endif
+#ifdef USE_VOICE_ASSISTANT
+ virtual VoiceAssistantConfigurationResponse voice_assistant_get_configuration(
+ const VoiceAssistantConfigurationRequest &msg) = 0;
+#endif
+#ifdef USE_VOICE_ASSISTANT
+ virtual void voice_assistant_set_configuration(const VoiceAssistantSetConfiguration &msg) = 0;
+#endif
#ifdef USE_ALARM_CONTROL_PANEL
virtual void alarm_control_panel_command(const AlarmControlPanelCommandRequest &msg) = 0;
#endif
@@ -520,6 +542,12 @@ class APIServerConnection : public APIServerConnectionBase {
#ifdef USE_VOICE_ASSISTANT
void on_subscribe_voice_assistant_request(const SubscribeVoiceAssistantRequest &msg) override;
#endif
+#ifdef USE_VOICE_ASSISTANT
+ void on_voice_assistant_configuration_request(const VoiceAssistantConfigurationRequest &msg) override;
+#endif
+#ifdef USE_VOICE_ASSISTANT
+ void on_voice_assistant_set_configuration(const VoiceAssistantSetConfiguration &msg) override;
+#endif
#ifdef USE_ALARM_CONTROL_PANEL
void on_alarm_control_panel_command_request(const AlarmControlPanelCommandRequest &msg) override;
#endif
diff --git a/esphome/components/api/api_server.cpp b/esphome/components/api/api_server.cpp
index a61ae89243..f16b5a13cf 100644
--- a/esphome/components/api/api_server.cpp
+++ b/esphome/components/api/api_server.cpp
@@ -1,4 +1,5 @@
#include "api_server.h"
+#ifdef USE_API
#include
#include "api_connection.h"
#include "esphome/components/network/util.h"
@@ -359,8 +360,18 @@ void APIServer::subscribe_home_assistant_state(std::string entity_id, optional attribute,
+ std::function f) {
+ this->state_subs_.push_back(HomeAssistantStateSubscription{
+ .entity_id = std::move(entity_id),
+ .attribute = std::move(attribute),
+ .callback = std::move(f),
+ .once = true,
+ });
+};
const std::vector &APIServer::get_state_subs() const {
return this->state_subs_;
}
@@ -393,3 +404,4 @@ void APIServer::on_alarm_control_panel_update(alarm_control_panel::AlarmControlP
} // namespace api
} // namespace esphome
+#endif
diff --git a/esphome/components/api/api_server.h b/esphome/components/api/api_server.h
index 43bc8a7348..42e0b1048a 100644
--- a/esphome/components/api/api_server.h
+++ b/esphome/components/api/api_server.h
@@ -1,5 +1,7 @@
#pragma once
+#include "esphome/core/defines.h"
+#ifdef USE_API
#include "api_noise_context.h"
#include "api_pb2.h"
#include "api_pb2_service.h"
@@ -7,7 +9,6 @@
#include "esphome/core/automation.h"
#include "esphome/core/component.h"
#include "esphome/core/controller.h"
-#include "esphome/core/defines.h"
#include "esphome/core/log.h"
#include "list_entities.h"
#include "subscribe_state.h"
@@ -112,10 +113,13 @@ class APIServer : public Component, public Controller {
std::string entity_id;
optional attribute;
std::function callback;
+ bool once;
};
void subscribe_home_assistant_state(std::string entity_id, optional attribute,
std::function f);
+ void get_home_assistant_state(std::string entity_id, optional attribute,
+ std::function f);
const std::vector &get_state_subs() const;
const std::vector &get_user_services() const { return this->user_services_; }
@@ -150,3 +154,4 @@ template class APIConnectedCondition : public Condition {
} // namespace api
} // namespace esphome
+#endif
diff --git a/esphome/components/api/custom_api_device.h b/esphome/components/api/custom_api_device.h
index 845a35fc54..1a8e189f41 100644
--- a/esphome/components/api/custom_api_device.h
+++ b/esphome/components/api/custom_api_device.h
@@ -1,9 +1,9 @@
#pragma once
#include