mirror of
				https://github.com/esphome/esphome.git
				synced 2025-11-04 09:01:49 +00:00 
			
		
		
		
	Compare commits
	
		
			3 Commits
		
	
	
		
			2025.7.3
			...
			jesserockz
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					a6e7e48b73 | ||
| 
						 | 
					f80610d958 | ||
| 
						 | 
					1aacf13888 | 
							
								
								
									
										39
									
								
								.github/workflows/ci.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										39
									
								
								.github/workflows/ci.yml
									
									
									
									
										vendored
									
									
								
							@@ -214,51 +214,17 @@ jobs:
 | 
				
			|||||||
        if: matrix.os == 'windows-latest'
 | 
					        if: matrix.os == 'windows-latest'
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
          ./venv/Scripts/activate
 | 
					          ./venv/Scripts/activate
 | 
				
			||||||
          pytest -vv --cov-report=xml --tb=native -n auto tests --ignore=tests/integration/
 | 
					          pytest -vv --cov-report=xml --tb=native -n auto tests
 | 
				
			||||||
      - name: Run pytest
 | 
					      - name: Run pytest
 | 
				
			||||||
        if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest'
 | 
					        if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest'
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
          . venv/bin/activate
 | 
					          . venv/bin/activate
 | 
				
			||||||
          pytest -vv --cov-report=xml --tb=native -n auto tests --ignore=tests/integration/
 | 
					          pytest -vv --cov-report=xml --tb=native -n auto tests
 | 
				
			||||||
      - name: Upload coverage to Codecov
 | 
					      - name: Upload coverage to Codecov
 | 
				
			||||||
        uses: codecov/codecov-action@v5.4.3
 | 
					        uses: codecov/codecov-action@v5.4.3
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          token: ${{ secrets.CODECOV_TOKEN }}
 | 
					          token: ${{ secrets.CODECOV_TOKEN }}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  integration-tests:
 | 
					 | 
				
			||||||
    name: Run integration tests
 | 
					 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					 | 
				
			||||||
    needs:
 | 
					 | 
				
			||||||
      - common
 | 
					 | 
				
			||||||
    steps:
 | 
					 | 
				
			||||||
      - name: Check out code from GitHub
 | 
					 | 
				
			||||||
        uses: actions/checkout@v4.2.2
 | 
					 | 
				
			||||||
      - name: Set up Python 3.13
 | 
					 | 
				
			||||||
        id: python
 | 
					 | 
				
			||||||
        uses: actions/setup-python@v5.6.0
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          python-version: "3.13"
 | 
					 | 
				
			||||||
      - name: Restore Python virtual environment
 | 
					 | 
				
			||||||
        id: cache-venv
 | 
					 | 
				
			||||||
        uses: actions/cache@v4.2.3
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          path: venv
 | 
					 | 
				
			||||||
          key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-venv-${{ needs.common.outputs.cache-key }}
 | 
					 | 
				
			||||||
      - name: Create Python virtual environment
 | 
					 | 
				
			||||||
        if: steps.cache-venv.outputs.cache-hit != 'true'
 | 
					 | 
				
			||||||
        run: |
 | 
					 | 
				
			||||||
          python -m venv venv
 | 
					 | 
				
			||||||
          . venv/bin/activate
 | 
					 | 
				
			||||||
          python --version
 | 
					 | 
				
			||||||
          pip install -r requirements.txt -r requirements_test.txt
 | 
					 | 
				
			||||||
          pip install -e .
 | 
					 | 
				
			||||||
      - name: Register matcher
 | 
					 | 
				
			||||||
        run: echo "::add-matcher::.github/workflows/matchers/pytest.json"
 | 
					 | 
				
			||||||
      - name: Run integration tests
 | 
					 | 
				
			||||||
        run: |
 | 
					 | 
				
			||||||
          . venv/bin/activate
 | 
					 | 
				
			||||||
          pytest -vv --no-cov --tb=native -n auto tests/integration/
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  clang-format:
 | 
					  clang-format:
 | 
				
			||||||
    name: Check clang-format
 | 
					    name: Check clang-format
 | 
				
			||||||
    runs-on: ubuntu-24.04
 | 
					    runs-on: ubuntu-24.04
 | 
				
			||||||
@@ -528,7 +494,6 @@ jobs:
 | 
				
			|||||||
      - flake8
 | 
					      - flake8
 | 
				
			||||||
      - pylint
 | 
					      - pylint
 | 
				
			||||||
      - pytest
 | 
					      - pytest
 | 
				
			||||||
      - integration-tests
 | 
					 | 
				
			||||||
      - pyupgrade
 | 
					      - pyupgrade
 | 
				
			||||||
      - clang-tidy
 | 
					      - clang-tidy
 | 
				
			||||||
      - list-components
 | 
					      - list-components
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										4
									
								
								.github/workflows/lock.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								.github/workflows/lock.yml
									
									
									
									
										vendored
									
									
								
							@@ -3,9 +3,11 @@ name: Lock closed issues and PRs
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
on:
 | 
					on:
 | 
				
			||||||
  schedule:
 | 
					  schedule:
 | 
				
			||||||
    - cron: "30 0 * * *"  # Run daily at 00:30 UTC
 | 
					    - cron: "30 0 * * *" # Run daily at 00:30 UTC
 | 
				
			||||||
  workflow_dispatch:
 | 
					  workflow_dispatch:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
  lock:
 | 
					  lock:
 | 
				
			||||||
    uses: esphome/workflows/.github/workflows/lock.yml@main
 | 
					    uses: esphome/workflows/.github/workflows/lock.yml@main
 | 
				
			||||||
 | 
					    with:
 | 
				
			||||||
 | 
					      since-days: 3650
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,18 +1,10 @@
 | 
				
			|||||||
---
 | 
					---
 | 
				
			||||||
# See https://pre-commit.com for more information
 | 
					# See https://pre-commit.com for more information
 | 
				
			||||||
# See https://pre-commit.com/hooks.html for more hooks
 | 
					# See https://pre-commit.com/hooks.html for more hooks
 | 
				
			||||||
 | 
					 | 
				
			||||||
ci:
 | 
					 | 
				
			||||||
  autoupdate_commit_msg: 'pre-commit: autoupdate'
 | 
					 | 
				
			||||||
  autoupdate_schedule: weekly
 | 
					 | 
				
			||||||
  autofix_prs: false
 | 
					 | 
				
			||||||
  # Skip hooks that have issues in pre-commit CI environment
 | 
					 | 
				
			||||||
  skip: [pylint, yamllint]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
repos:
 | 
					repos:
 | 
				
			||||||
  - repo: https://github.com/astral-sh/ruff-pre-commit
 | 
					  - repo: https://github.com/astral-sh/ruff-pre-commit
 | 
				
			||||||
    # Ruff version.
 | 
					    # Ruff version.
 | 
				
			||||||
    rev: v0.12.2
 | 
					    rev: v0.12.0
 | 
				
			||||||
    hooks:
 | 
					    hooks:
 | 
				
			||||||
      # Run the linter.
 | 
					      # Run the linter.
 | 
				
			||||||
      - id: ruff
 | 
					      - id: ruff
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										12
									
								
								CODEOWNERS
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								CODEOWNERS
									
									
									
									
									
								
							@@ -87,7 +87,6 @@ esphome/components/bp1658cj/* @Cossid
 | 
				
			|||||||
esphome/components/bp5758d/* @Cossid
 | 
					esphome/components/bp5758d/* @Cossid
 | 
				
			||||||
esphome/components/button/* @esphome/core
 | 
					esphome/components/button/* @esphome/core
 | 
				
			||||||
esphome/components/bytebuffer/* @clydebarrow
 | 
					esphome/components/bytebuffer/* @clydebarrow
 | 
				
			||||||
esphome/components/camera/* @DT-art1 @bdraco
 | 
					 | 
				
			||||||
esphome/components/canbus/* @danielschramm @mvturnho
 | 
					esphome/components/canbus/* @danielschramm @mvturnho
 | 
				
			||||||
esphome/components/cap1188/* @mreditor97
 | 
					esphome/components/cap1188/* @mreditor97
 | 
				
			||||||
esphome/components/captive_portal/* @OttoWinter
 | 
					esphome/components/captive_portal/* @OttoWinter
 | 
				
			||||||
@@ -125,7 +124,6 @@ esphome/components/dht/* @OttoWinter
 | 
				
			|||||||
esphome/components/display_menu_base/* @numo68
 | 
					esphome/components/display_menu_base/* @numo68
 | 
				
			||||||
esphome/components/dps310/* @kbx81
 | 
					esphome/components/dps310/* @kbx81
 | 
				
			||||||
esphome/components/ds1307/* @badbadc0ffee
 | 
					esphome/components/ds1307/* @badbadc0ffee
 | 
				
			||||||
esphome/components/ds2484/* @mrk-its
 | 
					 | 
				
			||||||
esphome/components/dsmr/* @glmnet @zuidwijk
 | 
					esphome/components/dsmr/* @glmnet @zuidwijk
 | 
				
			||||||
esphome/components/duty_time/* @dudanov
 | 
					esphome/components/duty_time/* @dudanov
 | 
				
			||||||
esphome/components/ee895/* @Stock-M
 | 
					esphome/components/ee895/* @Stock-M
 | 
				
			||||||
@@ -148,7 +146,6 @@ esphome/components/esp32_ble_client/* @jesserockz
 | 
				
			|||||||
esphome/components/esp32_ble_server/* @Rapsssito @clydebarrow @jesserockz
 | 
					esphome/components/esp32_ble_server/* @Rapsssito @clydebarrow @jesserockz
 | 
				
			||||||
esphome/components/esp32_camera_web_server/* @ayufan
 | 
					esphome/components/esp32_camera_web_server/* @ayufan
 | 
				
			||||||
esphome/components/esp32_can/* @Sympatron
 | 
					esphome/components/esp32_can/* @Sympatron
 | 
				
			||||||
esphome/components/esp32_hosted/* @swoboda1337
 | 
					 | 
				
			||||||
esphome/components/esp32_improv/* @jesserockz
 | 
					esphome/components/esp32_improv/* @jesserockz
 | 
				
			||||||
esphome/components/esp32_rmt/* @jesserockz
 | 
					esphome/components/esp32_rmt/* @jesserockz
 | 
				
			||||||
esphome/components/esp32_rmt_led_strip/* @jesserockz
 | 
					esphome/components/esp32_rmt_led_strip/* @jesserockz
 | 
				
			||||||
@@ -170,7 +167,6 @@ esphome/components/ft5x06/* @clydebarrow
 | 
				
			|||||||
esphome/components/ft63x6/* @gpambrozio
 | 
					esphome/components/ft63x6/* @gpambrozio
 | 
				
			||||||
esphome/components/gcja5/* @gcormier
 | 
					esphome/components/gcja5/* @gcormier
 | 
				
			||||||
esphome/components/gdk101/* @Szewcson
 | 
					esphome/components/gdk101/* @Szewcson
 | 
				
			||||||
esphome/components/gl_r01_i2c/* @pkejval
 | 
					 | 
				
			||||||
esphome/components/globals/* @esphome/core
 | 
					esphome/components/globals/* @esphome/core
 | 
				
			||||||
esphome/components/gp2y1010au0f/* @zry98
 | 
					esphome/components/gp2y1010au0f/* @zry98
 | 
				
			||||||
esphome/components/gp8403/* @jesserockz
 | 
					esphome/components/gp8403/* @jesserockz
 | 
				
			||||||
@@ -251,11 +247,9 @@ esphome/components/libretiny_pwm/* @kuba2k2
 | 
				
			|||||||
esphome/components/light/* @esphome/core
 | 
					esphome/components/light/* @esphome/core
 | 
				
			||||||
esphome/components/lightwaverf/* @max246
 | 
					esphome/components/lightwaverf/* @max246
 | 
				
			||||||
esphome/components/lilygo_t5_47/touchscreen/* @jesserockz
 | 
					esphome/components/lilygo_t5_47/touchscreen/* @jesserockz
 | 
				
			||||||
esphome/components/ln882x/* @lamauny
 | 
					 | 
				
			||||||
esphome/components/lock/* @esphome/core
 | 
					esphome/components/lock/* @esphome/core
 | 
				
			||||||
esphome/components/logger/* @esphome/core
 | 
					esphome/components/logger/* @esphome/core
 | 
				
			||||||
esphome/components/logger/select/* @clydebarrow
 | 
					esphome/components/logger/select/* @clydebarrow
 | 
				
			||||||
esphome/components/lps22/* @nagisa
 | 
					 | 
				
			||||||
esphome/components/ltr390/* @latonita @sjtrny
 | 
					esphome/components/ltr390/* @latonita @sjtrny
 | 
				
			||||||
esphome/components/ltr501/* @latonita
 | 
					esphome/components/ltr501/* @latonita
 | 
				
			||||||
esphome/components/ltr_als_ps/* @latonita
 | 
					esphome/components/ltr_als_ps/* @latonita
 | 
				
			||||||
@@ -337,7 +331,6 @@ esphome/components/pca6416a/* @Mat931
 | 
				
			|||||||
esphome/components/pca9554/* @clydebarrow @hwstar
 | 
					esphome/components/pca9554/* @clydebarrow @hwstar
 | 
				
			||||||
esphome/components/pcf85063/* @brogon
 | 
					esphome/components/pcf85063/* @brogon
 | 
				
			||||||
esphome/components/pcf8563/* @KoenBreeman
 | 
					esphome/components/pcf8563/* @KoenBreeman
 | 
				
			||||||
esphome/components/pi4ioe5v6408/* @jesserockz
 | 
					 | 
				
			||||||
esphome/components/pid/* @OttoWinter
 | 
					esphome/components/pid/* @OttoWinter
 | 
				
			||||||
esphome/components/pipsolar/* @andreashergert1984
 | 
					esphome/components/pipsolar/* @andreashergert1984
 | 
				
			||||||
esphome/components/pm1006/* @habbie
 | 
					esphome/components/pm1006/* @habbie
 | 
				
			||||||
@@ -444,8 +437,6 @@ esphome/components/sun/* @OttoWinter
 | 
				
			|||||||
esphome/components/sun_gtil2/* @Mat931
 | 
					esphome/components/sun_gtil2/* @Mat931
 | 
				
			||||||
esphome/components/switch/* @esphome/core
 | 
					esphome/components/switch/* @esphome/core
 | 
				
			||||||
esphome/components/switch/binary_sensor/* @ssieb
 | 
					esphome/components/switch/binary_sensor/* @ssieb
 | 
				
			||||||
esphome/components/sx126x/* @swoboda1337
 | 
					 | 
				
			||||||
esphome/components/sx127x/* @swoboda1337
 | 
					 | 
				
			||||||
esphome/components/syslog/* @clydebarrow
 | 
					esphome/components/syslog/* @clydebarrow
 | 
				
			||||||
esphome/components/t6615/* @tylermenezes
 | 
					esphome/components/t6615/* @tylermenezes
 | 
				
			||||||
esphome/components/tc74/* @sethgirvan
 | 
					esphome/components/tc74/* @sethgirvan
 | 
				
			||||||
@@ -500,11 +491,10 @@ esphome/components/vbus/* @ssieb
 | 
				
			|||||||
esphome/components/veml3235/* @kbx81
 | 
					esphome/components/veml3235/* @kbx81
 | 
				
			||||||
esphome/components/veml7700/* @latonita
 | 
					esphome/components/veml7700/* @latonita
 | 
				
			||||||
esphome/components/version/* @esphome/core
 | 
					esphome/components/version/* @esphome/core
 | 
				
			||||||
esphome/components/voice_assistant/* @jesserockz @kahrendt
 | 
					esphome/components/voice_assistant/* @jesserockz
 | 
				
			||||||
esphome/components/wake_on_lan/* @clydebarrow @willwill2will54
 | 
					esphome/components/wake_on_lan/* @clydebarrow @willwill2will54
 | 
				
			||||||
esphome/components/watchdog/* @oarcher
 | 
					esphome/components/watchdog/* @oarcher
 | 
				
			||||||
esphome/components/waveshare_epaper/* @clydebarrow
 | 
					esphome/components/waveshare_epaper/* @clydebarrow
 | 
				
			||||||
esphome/components/web_server/ota/* @esphome/core
 | 
					 | 
				
			||||||
esphome/components/web_server_base/* @OttoWinter
 | 
					esphome/components/web_server_base/* @OttoWinter
 | 
				
			||||||
esphome/components/web_server_idf/* @dentra
 | 
					esphome/components/web_server_idf/* @dentra
 | 
				
			||||||
esphome/components/weikai/* @DrCoolZic
 | 
					esphome/components/weikai/* @DrCoolZic
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								Doxyfile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Doxyfile
									
									
									
									
									
								
							@@ -48,7 +48,7 @@ PROJECT_NAME           = ESPHome
 | 
				
			|||||||
# could be handy for archiving the generated documentation or if some version
 | 
					# could be handy for archiving the generated documentation or if some version
 | 
				
			||||||
# control system is used.
 | 
					# control system is used.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PROJECT_NUMBER         = 2025.7.3
 | 
					PROJECT_NUMBER         = 2025.7.0-dev
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
 | 
					# Using the PROJECT_BRIEF tag one can provide an optional one line description
 | 
				
			||||||
# for a project that appears at the top of each page and should give viewer a
 | 
					# for a project that appears at the top of each page and should give viewer a
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -34,9 +34,11 @@ from esphome.const import (
 | 
				
			|||||||
    CONF_PORT,
 | 
					    CONF_PORT,
 | 
				
			||||||
    CONF_SUBSTITUTIONS,
 | 
					    CONF_SUBSTITUTIONS,
 | 
				
			||||||
    CONF_TOPIC,
 | 
					    CONF_TOPIC,
 | 
				
			||||||
 | 
					    PLATFORM_BK72XX,
 | 
				
			||||||
    PLATFORM_ESP32,
 | 
					    PLATFORM_ESP32,
 | 
				
			||||||
    PLATFORM_ESP8266,
 | 
					    PLATFORM_ESP8266,
 | 
				
			||||||
    PLATFORM_RP2040,
 | 
					    PLATFORM_RP2040,
 | 
				
			||||||
 | 
					    PLATFORM_RTL87XX,
 | 
				
			||||||
    SECRETS_FILES,
 | 
					    SECRETS_FILES,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
from esphome.core import CORE, EsphomeError, coroutine
 | 
					from esphome.core import CORE, EsphomeError, coroutine
 | 
				
			||||||
@@ -352,7 +354,7 @@ def upload_program(config, args, host):
 | 
				
			|||||||
        if CORE.target_platform in (PLATFORM_RP2040):
 | 
					        if CORE.target_platform in (PLATFORM_RP2040):
 | 
				
			||||||
            return upload_using_platformio(config, args.device)
 | 
					            return upload_using_platformio(config, args.device)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if CORE.is_libretiny:
 | 
					        if CORE.target_platform in (PLATFORM_BK72XX, PLATFORM_RTL87XX):
 | 
				
			||||||
            return upload_using_platformio(config, host)
 | 
					            return upload_using_platformio(config, host)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return 1  # Unknown target platform
 | 
					        return 1  # Unknown target platform
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,7 +4,6 @@
 | 
				
			|||||||
#include "esphome/core/helpers.h"
 | 
					#include "esphome/core/helpers.h"
 | 
				
			||||||
#include "esphome/core/log.h"
 | 
					#include "esphome/core/log.h"
 | 
				
			||||||
#include <cmath>
 | 
					#include <cmath>
 | 
				
			||||||
#include <numbers>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_ESP8266
 | 
					#ifdef USE_ESP8266
 | 
				
			||||||
#include <core_esp8266_waveform.h>
 | 
					#include <core_esp8266_waveform.h>
 | 
				
			||||||
@@ -204,7 +203,7 @@ void AcDimmer::setup() {
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
void AcDimmer::write_state(float state) {
 | 
					void AcDimmer::write_state(float state) {
 | 
				
			||||||
  state = std::acos(1 - (2 * state)) / std::numbers::pi;  // RMS power compensation
 | 
					  state = std::acos(1 - (2 * state)) / 3.14159;  // RMS power compensation
 | 
				
			||||||
  auto new_value = static_cast<uint16_t>(roundf(state * 65535));
 | 
					  auto new_value = static_cast<uint16_t>(roundf(state * 65535));
 | 
				
			||||||
  if (new_value != 0 && this->store_.value == 0)
 | 
					  if (new_value != 0 && this->store_.value == 0)
 | 
				
			||||||
    this->store_.init_cycle = this->init_with_half_cycle_;
 | 
					    this->store_.init_cycle = this->init_with_half_cycle_;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -10,15 +10,8 @@ from esphome.components.esp32.const import (
 | 
				
			|||||||
    VARIANT_ESP32S2,
 | 
					    VARIANT_ESP32S2,
 | 
				
			||||||
    VARIANT_ESP32S3,
 | 
					    VARIANT_ESP32S3,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
from esphome.config_helpers import filter_source_files_from_platform
 | 
					 | 
				
			||||||
import esphome.config_validation as cv
 | 
					import esphome.config_validation as cv
 | 
				
			||||||
from esphome.const import (
 | 
					from esphome.const import CONF_ANALOG, CONF_INPUT, CONF_NUMBER, PLATFORM_ESP8266
 | 
				
			||||||
    CONF_ANALOG,
 | 
					 | 
				
			||||||
    CONF_INPUT,
 | 
					 | 
				
			||||||
    CONF_NUMBER,
 | 
					 | 
				
			||||||
    PLATFORM_ESP8266,
 | 
					 | 
				
			||||||
    PlatformFramework,
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
from esphome.core import CORE
 | 
					from esphome.core import CORE
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CODEOWNERS = ["@esphome/core"]
 | 
					CODEOWNERS = ["@esphome/core"]
 | 
				
			||||||
@@ -236,20 +229,3 @@ def validate_adc_pin(value):
 | 
				
			|||||||
        )(value)
 | 
					        )(value)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    raise NotImplementedError
 | 
					    raise NotImplementedError
 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
FILTER_SOURCE_FILES = filter_source_files_from_platform(
 | 
					 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        "adc_sensor_esp32.cpp": {
 | 
					 | 
				
			||||||
            PlatformFramework.ESP32_ARDUINO,
 | 
					 | 
				
			||||||
            PlatformFramework.ESP32_IDF,
 | 
					 | 
				
			||||||
        },
 | 
					 | 
				
			||||||
        "adc_sensor_esp8266.cpp": {PlatformFramework.ESP8266_ARDUINO},
 | 
					 | 
				
			||||||
        "adc_sensor_rp2040.cpp": {PlatformFramework.RP2040_ARDUINO},
 | 
					 | 
				
			||||||
        "adc_sensor_libretiny.cpp": {
 | 
					 | 
				
			||||||
            PlatformFramework.BK72XX_ARDUINO,
 | 
					 | 
				
			||||||
            PlatformFramework.RTL87XX_ARDUINO,
 | 
					 | 
				
			||||||
            PlatformFramework.LN882X_ARDUINO,
 | 
					 | 
				
			||||||
        },
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -15,7 +15,8 @@ namespace adc {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#ifdef USE_ESP32
 | 
					#ifdef USE_ESP32
 | 
				
			||||||
// clang-format off
 | 
					// clang-format off
 | 
				
			||||||
#if (ESP_IDF_VERSION_MAJOR == 5 && \
 | 
					#if (ESP_IDF_VERSION_MAJOR == 4 && ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 7)) || \
 | 
				
			||||||
 | 
					    (ESP_IDF_VERSION_MAJOR == 5 && \
 | 
				
			||||||
     ((ESP_IDF_VERSION_MINOR == 0 && ESP_IDF_VERSION_PATCH >= 5) || \
 | 
					     ((ESP_IDF_VERSION_MINOR == 0 && ESP_IDF_VERSION_PATCH >= 5) || \
 | 
				
			||||||
      (ESP_IDF_VERSION_MINOR == 1 && ESP_IDF_VERSION_PATCH >= 3) || \
 | 
					      (ESP_IDF_VERSION_MINOR == 1 && ESP_IDF_VERSION_PATCH >= 3) || \
 | 
				
			||||||
      (ESP_IDF_VERSION_MINOR >= 2)) \
 | 
					      (ESP_IDF_VERSION_MINOR >= 2)) \
 | 
				
			||||||
@@ -27,24 +28,19 @@ static const adc_atten_t ADC_ATTEN_DB_12_COMPAT = ADC_ATTEN_DB_11;
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
#endif  // USE_ESP32
 | 
					#endif  // USE_ESP32
 | 
				
			||||||
 | 
					
 | 
				
			||||||
enum class SamplingMode : uint8_t {
 | 
					enum class SamplingMode : uint8_t { AVG = 0, MIN = 1, MAX = 2 };
 | 
				
			||||||
  AVG = 0,
 | 
					 | 
				
			||||||
  MIN = 1,
 | 
					 | 
				
			||||||
  MAX = 2,
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
const LogString *sampling_mode_to_str(SamplingMode mode);
 | 
					const LogString *sampling_mode_to_str(SamplingMode mode);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class Aggregator {
 | 
					class Aggregator {
 | 
				
			||||||
 public:
 | 
					 public:
 | 
				
			||||||
  Aggregator(SamplingMode mode);
 | 
					 | 
				
			||||||
  void add_sample(uint32_t value);
 | 
					  void add_sample(uint32_t value);
 | 
				
			||||||
  uint32_t aggregate();
 | 
					  uint32_t aggregate();
 | 
				
			||||||
 | 
					  Aggregator(SamplingMode mode);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
 | 
					  SamplingMode mode_{SamplingMode::AVG};
 | 
				
			||||||
  uint32_t aggr_{0};
 | 
					  uint32_t aggr_{0};
 | 
				
			||||||
  uint32_t samples_{0};
 | 
					  uint32_t samples_{0};
 | 
				
			||||||
  SamplingMode mode_{SamplingMode::AVG};
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ADCSensor : public sensor::Sensor, public PollingComponent, public voltage_sampler::VoltageSampler {
 | 
					class ADCSensor : public sensor::Sensor, public PollingComponent, public voltage_sampler::VoltageSampler {
 | 
				
			||||||
@@ -85,9 +81,9 @@ class ADCSensor : public sensor::Sensor, public PollingComponent, public voltage
 | 
				
			|||||||
#endif  // USE_RP2040
 | 
					#endif  // USE_RP2040
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  uint8_t sample_count_{1};
 | 
					 | 
				
			||||||
  bool output_raw_{false};
 | 
					 | 
				
			||||||
  InternalGPIOPin *pin_;
 | 
					  InternalGPIOPin *pin_;
 | 
				
			||||||
 | 
					  bool output_raw_{false};
 | 
				
			||||||
 | 
					  uint8_t sample_count_{1};
 | 
				
			||||||
  SamplingMode sampling_mode_{SamplingMode::AVG};
 | 
					  SamplingMode sampling_mode_{SamplingMode::AVG};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_RP2040
 | 
					#ifdef USE_RP2040
 | 
				
			||||||
@@ -99,7 +95,11 @@ class ADCSensor : public sensor::Sensor, public PollingComponent, public voltage
 | 
				
			|||||||
  adc1_channel_t channel1_{ADC1_CHANNEL_MAX};
 | 
					  adc1_channel_t channel1_{ADC1_CHANNEL_MAX};
 | 
				
			||||||
  adc2_channel_t channel2_{ADC2_CHANNEL_MAX};
 | 
					  adc2_channel_t channel2_{ADC2_CHANNEL_MAX};
 | 
				
			||||||
  bool autorange_{false};
 | 
					  bool autorange_{false};
 | 
				
			||||||
 | 
					#if ESP_IDF_VERSION_MAJOR >= 5
 | 
				
			||||||
  esp_adc_cal_characteristics_t cal_characteristics_[SOC_ADC_ATTEN_NUM] = {};
 | 
					  esp_adc_cal_characteristics_t cal_characteristics_[SOC_ADC_ATTEN_NUM] = {};
 | 
				
			||||||
 | 
					#else
 | 
				
			||||||
 | 
					  esp_adc_cal_characteristics_t cal_characteristics_[ADC_ATTEN_MAX] = {};
 | 
				
			||||||
 | 
					#endif  // ESP_IDF_VERSION_MAJOR
 | 
				
			||||||
#endif  // USE_ESP32
 | 
					#endif  // USE_ESP32
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -61,7 +61,7 @@ uint32_t Aggregator::aggregate() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
void ADCSensor::update() {
 | 
					void ADCSensor::update() {
 | 
				
			||||||
  float value_v = this->sample();
 | 
					  float value_v = this->sample();
 | 
				
			||||||
  ESP_LOGV(TAG, "'%s': Voltage=%.4fV", this->get_name().c_str(), value_v);
 | 
					  ESP_LOGV(TAG, "'%s': Got voltage=%.4fV", this->get_name().c_str(), value_v);
 | 
				
			||||||
  this->publish_state(value_v);
 | 
					  this->publish_state(value_v);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -55,40 +55,32 @@ void ADCSensor::setup() {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void ADCSensor::dump_config() {
 | 
					void ADCSensor::dump_config() {
 | 
				
			||||||
  static const char *const ATTEN_AUTO_STR = "auto";
 | 
					 | 
				
			||||||
  static const char *const ATTEN_0DB_STR = "0 db";
 | 
					 | 
				
			||||||
  static const char *const ATTEN_2_5DB_STR = "2.5 db";
 | 
					 | 
				
			||||||
  static const char *const ATTEN_6DB_STR = "6 db";
 | 
					 | 
				
			||||||
  static const char *const ATTEN_12DB_STR = "12 db";
 | 
					 | 
				
			||||||
  const char *atten_str = ATTEN_AUTO_STR;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  LOG_SENSOR("", "ADC Sensor", this);
 | 
					  LOG_SENSOR("", "ADC Sensor", this);
 | 
				
			||||||
  LOG_PIN("  Pin: ", this->pin_);
 | 
					  LOG_PIN("  Pin: ", this->pin_);
 | 
				
			||||||
 | 
					  if (this->autorange_) {
 | 
				
			||||||
  if (!this->autorange_) {
 | 
					    ESP_LOGCONFIG(TAG, "  Attenuation: auto");
 | 
				
			||||||
 | 
					  } else {
 | 
				
			||||||
    switch (this->attenuation_) {
 | 
					    switch (this->attenuation_) {
 | 
				
			||||||
      case ADC_ATTEN_DB_0:
 | 
					      case ADC_ATTEN_DB_0:
 | 
				
			||||||
        atten_str = ATTEN_0DB_STR;
 | 
					        ESP_LOGCONFIG(TAG, "  Attenuation: 0db");
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
      case ADC_ATTEN_DB_2_5:
 | 
					      case ADC_ATTEN_DB_2_5:
 | 
				
			||||||
        atten_str = ATTEN_2_5DB_STR;
 | 
					        ESP_LOGCONFIG(TAG, "  Attenuation: 2.5db");
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
      case ADC_ATTEN_DB_6:
 | 
					      case ADC_ATTEN_DB_6:
 | 
				
			||||||
        atten_str = ATTEN_6DB_STR;
 | 
					        ESP_LOGCONFIG(TAG, "  Attenuation: 6db");
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
      case ADC_ATTEN_DB_12_COMPAT:
 | 
					      case ADC_ATTEN_DB_12_COMPAT:
 | 
				
			||||||
        atten_str = ATTEN_12DB_STR;
 | 
					        ESP_LOGCONFIG(TAG, "  Attenuation: 12db");
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
      default:  // This is to satisfy the unused ADC_ATTEN_MAX
 | 
					      default:  // This is to satisfy the unused ADC_ATTEN_MAX
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					 | 
				
			||||||
  ESP_LOGCONFIG(TAG,
 | 
					  ESP_LOGCONFIG(TAG,
 | 
				
			||||||
                "  Attenuation: %s\n"
 | 
					 | 
				
			||||||
                "  Samples: %i\n"
 | 
					                "  Samples: %i\n"
 | 
				
			||||||
                "  Sampling mode: %s",
 | 
					                "  Sampling mode: %s",
 | 
				
			||||||
                atten_str, this->sample_count_, LOG_STR_ARG(sampling_mode_to_str(this->sampling_mode_)));
 | 
					                this->sample_count_, LOG_STR_ARG(sampling_mode_to_str(this->sampling_mode_)));
 | 
				
			||||||
  LOG_UPDATE_INTERVAL(this);
 | 
					  LOG_UPDATE_INTERVAL(this);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -85,6 +85,8 @@ class ADE7880 : public i2c::I2CDevice, public PollingComponent {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  ADE7880Store store_{};
 | 
					  ADE7880Store store_{};
 | 
				
			||||||
  InternalGPIOPin *irq0_pin_{nullptr};
 | 
					  InternalGPIOPin *irq0_pin_{nullptr};
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -49,6 +49,7 @@ class ADS1115Component : public Component, public i2c::I2CDevice {
 | 
				
			|||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
  /// HARDWARE_LATE setup priority
 | 
					  /// HARDWARE_LATE setup priority
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void set_continuous_mode(bool continuous_mode) { continuous_mode_ = continuous_mode; }
 | 
					  void set_continuous_mode(bool continuous_mode) { continuous_mode_ = continuous_mode; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /// Helper method to request a measurement from a sensor.
 | 
					  /// Helper method to request a measurement from a sensor.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -34,6 +34,7 @@ class ADS1118 : public Component,
 | 
				
			|||||||
  ADS1118() = default;
 | 
					  ADS1118() = default;
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  /// Helper method to request a measurement from a sensor.
 | 
					  /// Helper method to request a measurement from a sensor.
 | 
				
			||||||
  float request_measurement(ADS1118Multiplexer multiplexer, ADS1118Gain gain, bool temperature_mode);
 | 
					  float request_measurement(ADS1118Multiplexer multiplexer, ADS1118Gain gain, bool temperature_mode);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -31,6 +31,8 @@ class AGS10Component : public PollingComponent, public i2c::I2CDevice {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /**
 | 
					  /**
 | 
				
			||||||
   * Modifies target address of AGS10.
 | 
					   * Modifies target address of AGS10.
 | 
				
			||||||
   *
 | 
					   *
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -66,6 +66,7 @@ class AIC3204 : public audio_dac::AudioDac, public Component, public i2c::I2CDev
 | 
				
			|||||||
 public:
 | 
					 public:
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  bool set_mute_off() override;
 | 
					  bool set_mute_off() override;
 | 
				
			||||||
  bool set_mute_on() override;
 | 
					  bool set_mute_on() override;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -41,6 +41,7 @@ class Alpha3 : public esphome::ble_client::BLEClientNode, public PollingComponen
 | 
				
			|||||||
  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
					  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
				
			||||||
                           esp_ble_gattc_cb_param_t *param) override;
 | 
					                           esp_ble_gattc_cb_param_t *param) override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void set_flow_sensor(sensor::Sensor *sensor) { this->flow_sensor_ = sensor; }
 | 
					  void set_flow_sensor(sensor::Sensor *sensor) { this->flow_sensor_ = sensor; }
 | 
				
			||||||
  void set_head_sensor(sensor::Sensor *sensor) { this->head_sensor_ = sensor; }
 | 
					  void set_head_sensor(sensor::Sensor *sensor) { this->head_sensor_ = sensor; }
 | 
				
			||||||
  void set_power_sensor(sensor::Sensor *sensor) { this->power_sensor_ = sensor; }
 | 
					  void set_power_sensor(sensor::Sensor *sensor) { this->power_sensor_ = sensor; }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -22,6 +22,7 @@ class Am43Component : public cover::Cover, public esphome::ble_client::BLEClient
 | 
				
			|||||||
  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
					  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
				
			||||||
                           esp_ble_gattc_cb_param_t *param) override;
 | 
					                           esp_ble_gattc_cb_param_t *param) override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  cover::CoverTraits get_traits() override;
 | 
					  cover::CoverTraits get_traits() override;
 | 
				
			||||||
  void set_pin(uint16_t pin) { this->pin_ = pin; }
 | 
					  void set_pin(uint16_t pin) { this->pin_ = pin; }
 | 
				
			||||||
  void set_invert_position(bool invert_position) { this->invert_position_ = invert_position; }
 | 
					  void set_invert_position(bool invert_position) { this->invert_position_ = invert_position; }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -22,6 +22,7 @@ class Am43 : public esphome::ble_client::BLEClientNode, public PollingComponent
 | 
				
			|||||||
  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
					  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
				
			||||||
                           esp_ble_gattc_cb_param_t *param) override;
 | 
					                           esp_ble_gattc_cb_param_t *param) override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void set_battery(sensor::Sensor *battery) { battery_ = battery; }
 | 
					  void set_battery(sensor::Sensor *battery) { battery_ = battery; }
 | 
				
			||||||
  void set_illuminance(sensor::Sensor *illuminance) { illuminance_ = illuminance; }
 | 
					  void set_illuminance(sensor::Sensor *illuminance) { illuminance_ = illuminance; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,6 +12,8 @@ class AnalogThresholdBinarySensor : public Component, public binary_sensor::Bina
 | 
				
			|||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  void set_sensor(sensor::Sensor *analog_sensor);
 | 
					  void set_sensor(sensor::Sensor *analog_sensor);
 | 
				
			||||||
  template<typename T> void set_upper_threshold(T upper_threshold) { this->upper_threshold_ = upper_threshold; }
 | 
					  template<typename T> void set_upper_threshold(T upper_threshold) { this->upper_threshold_ = upper_threshold; }
 | 
				
			||||||
  template<typename T> void set_lower_threshold(T lower_threshold) { this->lower_threshold_ = lower_threshold; }
 | 
					  template<typename T> void set_lower_threshold(T lower_threshold) { this->lower_threshold_ = lower_threshold; }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -26,6 +26,7 @@ class Anova : public climate::Climate, public esphome::ble_client::BLEClientNode
 | 
				
			|||||||
  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
					  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
				
			||||||
                           esp_ble_gattc_cb_param_t *param) override;
 | 
					                           esp_ble_gattc_cb_param_t *param) override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  climate::ClimateTraits traits() override {
 | 
					  climate::ClimateTraits traits() override {
 | 
				
			||||||
    auto traits = climate::ClimateTraits();
 | 
					    auto traits = climate::ClimateTraits();
 | 
				
			||||||
    traits.set_supports_current_temperature(true);
 | 
					    traits.set_supports_current_temperature(true);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -23,7 +23,7 @@ void APDS9960::setup() {
 | 
				
			|||||||
    return;
 | 
					    return;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if (id != 0xAB && id != 0x9C && id != 0xA8 && id != 0x9E) {  // APDS9960 all should have one of these IDs
 | 
					  if (id != 0xAB && id != 0x9C && id != 0xA8) {  // APDS9960 all should have one of these IDs
 | 
				
			||||||
    this->error_code_ = WRONG_ID;
 | 
					    this->error_code_ = WRONG_ID;
 | 
				
			||||||
    this->mark_failed();
 | 
					    this->mark_failed();
 | 
				
			||||||
    return;
 | 
					    return;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,7 +3,6 @@ import base64
 | 
				
			|||||||
from esphome import automation
 | 
					from esphome import automation
 | 
				
			||||||
from esphome.automation import Condition
 | 
					from esphome.automation import Condition
 | 
				
			||||||
import esphome.codegen as cg
 | 
					import esphome.codegen as cg
 | 
				
			||||||
from esphome.config_helpers import get_logger_level
 | 
					 | 
				
			||||||
import esphome.config_validation as cv
 | 
					import esphome.config_validation as cv
 | 
				
			||||||
from esphome.const import (
 | 
					from esphome.const import (
 | 
				
			||||||
    CONF_ACTION,
 | 
					    CONF_ACTION,
 | 
				
			||||||
@@ -24,9 +23,8 @@ from esphome.const import (
 | 
				
			|||||||
    CONF_TRIGGER_ID,
 | 
					    CONF_TRIGGER_ID,
 | 
				
			||||||
    CONF_VARIABLES,
 | 
					    CONF_VARIABLES,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
from esphome.core import CORE, coroutine_with_priority
 | 
					from esphome.core import coroutine_with_priority
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DOMAIN = "api"
 | 
					 | 
				
			||||||
DEPENDENCIES = ["network"]
 | 
					DEPENDENCIES = ["network"]
 | 
				
			||||||
AUTO_LOAD = ["socket"]
 | 
					AUTO_LOAD = ["socket"]
 | 
				
			||||||
CODEOWNERS = ["@OttoWinter"]
 | 
					CODEOWNERS = ["@OttoWinter"]
 | 
				
			||||||
@@ -52,7 +50,6 @@ SERVICE_ARG_NATIVE_TYPES = {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
CONF_ENCRYPTION = "encryption"
 | 
					CONF_ENCRYPTION = "encryption"
 | 
				
			||||||
CONF_BATCH_DELAY = "batch_delay"
 | 
					CONF_BATCH_DELAY = "batch_delay"
 | 
				
			||||||
CONF_CUSTOM_SERVICES = "custom_services"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def validate_encryption_key(value):
 | 
					def validate_encryption_key(value):
 | 
				
			||||||
@@ -113,11 +110,9 @@ CONFIG_SCHEMA = cv.All(
 | 
				
			|||||||
            ): ACTIONS_SCHEMA,
 | 
					            ): ACTIONS_SCHEMA,
 | 
				
			||||||
            cv.Exclusive(CONF_ACTIONS, group_of_exclusion=CONF_ACTIONS): ACTIONS_SCHEMA,
 | 
					            cv.Exclusive(CONF_ACTIONS, group_of_exclusion=CONF_ACTIONS): ACTIONS_SCHEMA,
 | 
				
			||||||
            cv.Optional(CONF_ENCRYPTION): _encryption_schema,
 | 
					            cv.Optional(CONF_ENCRYPTION): _encryption_schema,
 | 
				
			||||||
            cv.Optional(CONF_BATCH_DELAY, default="100ms"): cv.All(
 | 
					            cv.Optional(
 | 
				
			||||||
                cv.positive_time_period_milliseconds,
 | 
					                CONF_BATCH_DELAY, default="100ms"
 | 
				
			||||||
                cv.Range(max=cv.TimePeriod(milliseconds=65535)),
 | 
					            ): cv.positive_time_period_milliseconds,
 | 
				
			||||||
            ),
 | 
					 | 
				
			||||||
            cv.Optional(CONF_CUSTOM_SERVICES, default=False): cv.boolean,
 | 
					 | 
				
			||||||
            cv.Optional(CONF_ON_CLIENT_CONNECTED): automation.validate_automation(
 | 
					            cv.Optional(CONF_ON_CLIENT_CONNECTED): automation.validate_automation(
 | 
				
			||||||
                single=True
 | 
					                single=True
 | 
				
			||||||
            ),
 | 
					            ),
 | 
				
			||||||
@@ -136,35 +131,27 @@ async def to_code(config):
 | 
				
			|||||||
    await cg.register_component(var, config)
 | 
					    await cg.register_component(var, config)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cg.add(var.set_port(config[CONF_PORT]))
 | 
					    cg.add(var.set_port(config[CONF_PORT]))
 | 
				
			||||||
    if config[CONF_PASSWORD]:
 | 
					    cg.add(var.set_password(config[CONF_PASSWORD]))
 | 
				
			||||||
        cg.add_define("USE_API_PASSWORD")
 | 
					 | 
				
			||||||
        cg.add(var.set_password(config[CONF_PASSWORD]))
 | 
					 | 
				
			||||||
    cg.add(var.set_reboot_timeout(config[CONF_REBOOT_TIMEOUT]))
 | 
					    cg.add(var.set_reboot_timeout(config[CONF_REBOOT_TIMEOUT]))
 | 
				
			||||||
    cg.add(var.set_batch_delay(config[CONF_BATCH_DELAY]))
 | 
					    cg.add(var.set_batch_delay(config[CONF_BATCH_DELAY]))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # Set USE_API_SERVICES if any services are enabled
 | 
					    for conf in config.get(CONF_ACTIONS, []):
 | 
				
			||||||
    if config.get(CONF_ACTIONS) or config[CONF_CUSTOM_SERVICES]:
 | 
					        template_args = []
 | 
				
			||||||
        cg.add_define("USE_API_SERVICES")
 | 
					        func_args = []
 | 
				
			||||||
 | 
					        service_arg_names = []
 | 
				
			||||||
    if actions := config.get(CONF_ACTIONS, []):
 | 
					        for name, var_ in conf[CONF_VARIABLES].items():
 | 
				
			||||||
        for conf in actions:
 | 
					            native = SERVICE_ARG_NATIVE_TYPES[var_]
 | 
				
			||||||
            template_args = []
 | 
					            template_args.append(native)
 | 
				
			||||||
            func_args = []
 | 
					            func_args.append((native, name))
 | 
				
			||||||
            service_arg_names = []
 | 
					            service_arg_names.append(name)
 | 
				
			||||||
            for name, var_ in conf[CONF_VARIABLES].items():
 | 
					        templ = cg.TemplateArguments(*template_args)
 | 
				
			||||||
                native = SERVICE_ARG_NATIVE_TYPES[var_]
 | 
					        trigger = cg.new_Pvariable(
 | 
				
			||||||
                template_args.append(native)
 | 
					            conf[CONF_TRIGGER_ID], templ, conf[CONF_ACTION], service_arg_names
 | 
				
			||||||
                func_args.append((native, name))
 | 
					        )
 | 
				
			||||||
                service_arg_names.append(name)
 | 
					        cg.add(var.register_user_service(trigger))
 | 
				
			||||||
            templ = cg.TemplateArguments(*template_args)
 | 
					        await automation.build_automation(trigger, func_args, conf)
 | 
				
			||||||
            trigger = cg.new_Pvariable(
 | 
					 | 
				
			||||||
                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)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if CONF_ON_CLIENT_CONNECTED in config:
 | 
					    if CONF_ON_CLIENT_CONNECTED in config:
 | 
				
			||||||
        cg.add_define("USE_API_CLIENT_CONNECTED_TRIGGER")
 | 
					 | 
				
			||||||
        await automation.build_automation(
 | 
					        await automation.build_automation(
 | 
				
			||||||
            var.get_client_connected_trigger(),
 | 
					            var.get_client_connected_trigger(),
 | 
				
			||||||
            [(cg.std_string, "client_info"), (cg.std_string, "client_address")],
 | 
					            [(cg.std_string, "client_info"), (cg.std_string, "client_address")],
 | 
				
			||||||
@@ -172,7 +159,6 @@ async def to_code(config):
 | 
				
			|||||||
        )
 | 
					        )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if CONF_ON_CLIENT_DISCONNECTED in config:
 | 
					    if CONF_ON_CLIENT_DISCONNECTED in config:
 | 
				
			||||||
        cg.add_define("USE_API_CLIENT_DISCONNECTED_TRIGGER")
 | 
					 | 
				
			||||||
        await automation.build_automation(
 | 
					        await automation.build_automation(
 | 
				
			||||||
            var.get_client_disconnected_trigger(),
 | 
					            var.get_client_disconnected_trigger(),
 | 
				
			||||||
            [(cg.std_string, "client_info"), (cg.std_string, "client_address")],
 | 
					            [(cg.std_string, "client_info"), (cg.std_string, "client_address")],
 | 
				
			||||||
@@ -191,7 +177,7 @@ async def to_code(config):
 | 
				
			|||||||
            # and plaintext disabled. Only a factory reset can remove it.
 | 
					            # and plaintext disabled. Only a factory reset can remove it.
 | 
				
			||||||
            cg.add_define("USE_API_PLAINTEXT")
 | 
					            cg.add_define("USE_API_PLAINTEXT")
 | 
				
			||||||
        cg.add_define("USE_API_NOISE")
 | 
					        cg.add_define("USE_API_NOISE")
 | 
				
			||||||
        cg.add_library("esphome/noise-c", "0.1.10")
 | 
					        cg.add_library("esphome/noise-c", "0.1.6")
 | 
				
			||||||
    else:
 | 
					    else:
 | 
				
			||||||
        cg.add_define("USE_API_PLAINTEXT")
 | 
					        cg.add_define("USE_API_PLAINTEXT")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -320,25 +306,3 @@ async def homeassistant_tag_scanned_to_code(config, action_id, template_arg, arg
 | 
				
			|||||||
@automation.register_condition("api.connected", APIConnectedCondition, {})
 | 
					@automation.register_condition("api.connected", APIConnectedCondition, {})
 | 
				
			||||||
async def api_connected_to_code(config, condition_id, template_arg, args):
 | 
					async def api_connected_to_code(config, condition_id, template_arg, args):
 | 
				
			||||||
    return cg.new_Pvariable(condition_id, template_arg)
 | 
					    return cg.new_Pvariable(condition_id, template_arg)
 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
def FILTER_SOURCE_FILES() -> list[str]:
 | 
					 | 
				
			||||||
    """Filter out api_pb2_dump.cpp when proto message dumping is not enabled
 | 
					 | 
				
			||||||
    and user_services.cpp when no services are defined."""
 | 
					 | 
				
			||||||
    files_to_filter = []
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    # api_pb2_dump.cpp is only needed when HAS_PROTO_MESSAGE_DUMP is defined
 | 
					 | 
				
			||||||
    # This is a particularly large file that still needs to be opened and read
 | 
					 | 
				
			||||||
    # all the way to the end even when ifdef'd out
 | 
					 | 
				
			||||||
    #
 | 
					 | 
				
			||||||
    # HAS_PROTO_MESSAGE_DUMP is defined when ESPHOME_LOG_HAS_VERY_VERBOSE is set,
 | 
					 | 
				
			||||||
    # which happens when the logger level is VERY_VERBOSE
 | 
					 | 
				
			||||||
    if get_logger_level() != "VERY_VERBOSE":
 | 
					 | 
				
			||||||
        files_to_filter.append("api_pb2_dump.cpp")
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    # user_services.cpp is only needed when services are defined
 | 
					 | 
				
			||||||
    config = CORE.config.get(DOMAIN, {})
 | 
					 | 
				
			||||||
    if config and not config.get(CONF_ACTIONS) and not config[CONF_CUSTOM_SERVICES]:
 | 
					 | 
				
			||||||
        files_to_filter.append("user_services.cpp")
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    return files_to_filter
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -311,7 +311,6 @@ message BinarySensorStateResponse {
 | 
				
			|||||||
  // If the binary sensor does not have a valid state yet.
 | 
					  // If the binary sensor does not have a valid state yet.
 | 
				
			||||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
					  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
				
			||||||
  bool missing_state = 3;
 | 
					  bool missing_state = 3;
 | 
				
			||||||
  uint32 device_id = 4;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== COVER ====================
 | 
					// ==================== COVER ====================
 | 
				
			||||||
@@ -361,7 +360,6 @@ message CoverStateResponse {
 | 
				
			|||||||
  float position = 3;
 | 
					  float position = 3;
 | 
				
			||||||
  float tilt = 4;
 | 
					  float tilt = 4;
 | 
				
			||||||
  CoverOperation current_operation = 5;
 | 
					  CoverOperation current_operation = 5;
 | 
				
			||||||
  uint32 device_id = 6;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
enum LegacyCoverCommand {
 | 
					enum LegacyCoverCommand {
 | 
				
			||||||
@@ -374,7 +372,6 @@ message CoverCommandRequest {
 | 
				
			|||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_COVER";
 | 
					  option (ifdef) = "USE_COVER";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -388,7 +385,6 @@ message CoverCommandRequest {
 | 
				
			|||||||
  bool has_tilt = 6;
 | 
					  bool has_tilt = 6;
 | 
				
			||||||
  float tilt = 7;
 | 
					  float tilt = 7;
 | 
				
			||||||
  bool stop = 8;
 | 
					  bool stop = 8;
 | 
				
			||||||
  uint32 device_id = 9;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== FAN ====================
 | 
					// ==================== FAN ====================
 | 
				
			||||||
@@ -436,14 +432,12 @@ message FanStateResponse {
 | 
				
			|||||||
  FanDirection direction = 5;
 | 
					  FanDirection direction = 5;
 | 
				
			||||||
  int32 speed_level = 6;
 | 
					  int32 speed_level = 6;
 | 
				
			||||||
  string preset_mode = 7;
 | 
					  string preset_mode = 7;
 | 
				
			||||||
  uint32 device_id = 8;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message FanCommandRequest {
 | 
					message FanCommandRequest {
 | 
				
			||||||
  option (id) = 31;
 | 
					  option (id) = 31;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_FAN";
 | 
					  option (ifdef) = "USE_FAN";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  bool has_state = 2;
 | 
					  bool has_state = 2;
 | 
				
			||||||
@@ -458,7 +452,6 @@ message FanCommandRequest {
 | 
				
			|||||||
  int32 speed_level = 11;
 | 
					  int32 speed_level = 11;
 | 
				
			||||||
  bool has_preset_mode = 12;
 | 
					  bool has_preset_mode = 12;
 | 
				
			||||||
  string preset_mode = 13;
 | 
					  string preset_mode = 13;
 | 
				
			||||||
  uint32 device_id = 14;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== LIGHT ====================
 | 
					// ==================== LIGHT ====================
 | 
				
			||||||
@@ -520,14 +513,12 @@ message LightStateResponse {
 | 
				
			|||||||
  float cold_white = 12;
 | 
					  float cold_white = 12;
 | 
				
			||||||
  float warm_white = 13;
 | 
					  float warm_white = 13;
 | 
				
			||||||
  string effect = 9;
 | 
					  string effect = 9;
 | 
				
			||||||
  uint32 device_id = 14;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message LightCommandRequest {
 | 
					message LightCommandRequest {
 | 
				
			||||||
  option (id) = 32;
 | 
					  option (id) = 32;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_LIGHT";
 | 
					  option (ifdef) = "USE_LIGHT";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  bool has_state = 2;
 | 
					  bool has_state = 2;
 | 
				
			||||||
@@ -556,7 +547,6 @@ message LightCommandRequest {
 | 
				
			|||||||
  uint32 flash_length = 17;
 | 
					  uint32 flash_length = 17;
 | 
				
			||||||
  bool has_effect = 18;
 | 
					  bool has_effect = 18;
 | 
				
			||||||
  string effect = 19;
 | 
					  string effect = 19;
 | 
				
			||||||
  uint32 device_id = 28;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== SENSOR ====================
 | 
					// ==================== SENSOR ====================
 | 
				
			||||||
@@ -608,7 +598,6 @@ message SensorStateResponse {
 | 
				
			|||||||
  // If the sensor does not have a valid state yet.
 | 
					  // If the sensor does not have a valid state yet.
 | 
				
			||||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
					  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
				
			||||||
  bool missing_state = 3;
 | 
					  bool missing_state = 3;
 | 
				
			||||||
  uint32 device_id = 4;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== SWITCH ====================
 | 
					// ==================== SWITCH ====================
 | 
				
			||||||
@@ -639,18 +628,15 @@ message SwitchStateResponse {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  bool state = 2;
 | 
					  bool state = 2;
 | 
				
			||||||
  uint32 device_id = 3;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message SwitchCommandRequest {
 | 
					message SwitchCommandRequest {
 | 
				
			||||||
  option (id) = 33;
 | 
					  option (id) = 33;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_SWITCH";
 | 
					  option (ifdef) = "USE_SWITCH";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  bool state = 2;
 | 
					  bool state = 2;
 | 
				
			||||||
  uint32 device_id = 3;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== TEXT SENSOR ====================
 | 
					// ==================== TEXT SENSOR ====================
 | 
				
			||||||
@@ -683,7 +669,6 @@ message TextSensorStateResponse {
 | 
				
			|||||||
  // If the text sensor does not have a valid state yet.
 | 
					  // If the text sensor does not have a valid state yet.
 | 
				
			||||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
					  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
				
			||||||
  bool missing_state = 3;
 | 
					  bool missing_state = 3;
 | 
				
			||||||
  uint32 device_id = 4;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== SUBSCRIBE LOGS ====================
 | 
					// ==================== SUBSCRIBE LOGS ====================
 | 
				
			||||||
@@ -807,21 +792,18 @@ enum ServiceArgType {
 | 
				
			|||||||
  SERVICE_ARG_TYPE_STRING_ARRAY = 7;
 | 
					  SERVICE_ARG_TYPE_STRING_ARRAY = 7;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message ListEntitiesServicesArgument {
 | 
					message ListEntitiesServicesArgument {
 | 
				
			||||||
  option (ifdef) = "USE_API_SERVICES";
 | 
					 | 
				
			||||||
  string name = 1;
 | 
					  string name = 1;
 | 
				
			||||||
  ServiceArgType type = 2;
 | 
					  ServiceArgType type = 2;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message ListEntitiesServicesResponse {
 | 
					message ListEntitiesServicesResponse {
 | 
				
			||||||
  option (id) = 41;
 | 
					  option (id) = 41;
 | 
				
			||||||
  option (source) = SOURCE_SERVER;
 | 
					  option (source) = SOURCE_SERVER;
 | 
				
			||||||
  option (ifdef) = "USE_API_SERVICES";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  string name = 1;
 | 
					  string name = 1;
 | 
				
			||||||
  fixed32 key = 2;
 | 
					  fixed32 key = 2;
 | 
				
			||||||
  repeated ListEntitiesServicesArgument args = 3;
 | 
					  repeated ListEntitiesServicesArgument args = 3;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message ExecuteServiceArgument {
 | 
					message ExecuteServiceArgument {
 | 
				
			||||||
  option (ifdef) = "USE_API_SERVICES";
 | 
					 | 
				
			||||||
  bool bool_ = 1;
 | 
					  bool bool_ = 1;
 | 
				
			||||||
  int32 legacy_int = 2;
 | 
					  int32 legacy_int = 2;
 | 
				
			||||||
  float float_ = 3;
 | 
					  float float_ = 3;
 | 
				
			||||||
@@ -837,7 +819,6 @@ message ExecuteServiceRequest {
 | 
				
			|||||||
  option (id) = 42;
 | 
					  option (id) = 42;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (ifdef) = "USE_API_SERVICES";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  repeated ExecuteServiceArgument args = 2;
 | 
					  repeated ExecuteServiceArgument args = 2;
 | 
				
			||||||
@@ -848,7 +829,7 @@ message ListEntitiesCameraResponse {
 | 
				
			|||||||
  option (id) = 43;
 | 
					  option (id) = 43;
 | 
				
			||||||
  option (base_class) = "InfoResponseProtoMessage";
 | 
					  option (base_class) = "InfoResponseProtoMessage";
 | 
				
			||||||
  option (source) = SOURCE_SERVER;
 | 
					  option (source) = SOURCE_SERVER;
 | 
				
			||||||
  option (ifdef) = "USE_CAMERA";
 | 
					  option (ifdef) = "USE_ESP32_CAMERA";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  string object_id = 1;
 | 
					  string object_id = 1;
 | 
				
			||||||
  fixed32 key = 2;
 | 
					  fixed32 key = 2;
 | 
				
			||||||
@@ -862,19 +843,17 @@ message ListEntitiesCameraResponse {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
message CameraImageResponse {
 | 
					message CameraImageResponse {
 | 
				
			||||||
  option (id) = 44;
 | 
					  option (id) = 44;
 | 
				
			||||||
  option (base_class) = "StateResponseProtoMessage";
 | 
					 | 
				
			||||||
  option (source) = SOURCE_SERVER;
 | 
					  option (source) = SOURCE_SERVER;
 | 
				
			||||||
  option (ifdef) = "USE_CAMERA";
 | 
					  option (ifdef) = "USE_ESP32_CAMERA";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  bytes data = 2;
 | 
					  bytes data = 2;
 | 
				
			||||||
  bool done = 3;
 | 
					  bool done = 3;
 | 
				
			||||||
  uint32 device_id = 4;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message CameraImageRequest {
 | 
					message CameraImageRequest {
 | 
				
			||||||
  option (id) = 45;
 | 
					  option (id) = 45;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_CAMERA";
 | 
					  option (ifdef) = "USE_ESP32_CAMERA";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  bool single = 1;
 | 
					  bool single = 1;
 | 
				
			||||||
@@ -987,14 +966,12 @@ message ClimateStateResponse {
 | 
				
			|||||||
  string custom_preset = 13;
 | 
					  string custom_preset = 13;
 | 
				
			||||||
  float current_humidity = 14;
 | 
					  float current_humidity = 14;
 | 
				
			||||||
  float target_humidity = 15;
 | 
					  float target_humidity = 15;
 | 
				
			||||||
  uint32 device_id = 16;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message ClimateCommandRequest {
 | 
					message ClimateCommandRequest {
 | 
				
			||||||
  option (id) = 48;
 | 
					  option (id) = 48;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_CLIMATE";
 | 
					  option (ifdef) = "USE_CLIMATE";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  bool has_mode = 2;
 | 
					  bool has_mode = 2;
 | 
				
			||||||
@@ -1020,7 +997,6 @@ message ClimateCommandRequest {
 | 
				
			|||||||
  string custom_preset = 21;
 | 
					  string custom_preset = 21;
 | 
				
			||||||
  bool has_target_humidity = 22;
 | 
					  bool has_target_humidity = 22;
 | 
				
			||||||
  float target_humidity = 23;
 | 
					  float target_humidity = 23;
 | 
				
			||||||
  uint32 device_id = 24;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== NUMBER ====================
 | 
					// ==================== NUMBER ====================
 | 
				
			||||||
@@ -1063,18 +1039,15 @@ message NumberStateResponse {
 | 
				
			|||||||
  // If the number does not have a valid state yet.
 | 
					  // If the number does not have a valid state yet.
 | 
				
			||||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
					  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
				
			||||||
  bool missing_state = 3;
 | 
					  bool missing_state = 3;
 | 
				
			||||||
  uint32 device_id = 4;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message NumberCommandRequest {
 | 
					message NumberCommandRequest {
 | 
				
			||||||
  option (id) = 51;
 | 
					  option (id) = 51;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_NUMBER";
 | 
					  option (ifdef) = "USE_NUMBER";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  float state = 2;
 | 
					  float state = 2;
 | 
				
			||||||
  uint32 device_id = 3;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== SELECT ====================
 | 
					// ==================== SELECT ====================
 | 
				
			||||||
@@ -1107,18 +1080,15 @@ message SelectStateResponse {
 | 
				
			|||||||
  // If the select does not have a valid state yet.
 | 
					  // If the select does not have a valid state yet.
 | 
				
			||||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
					  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
				
			||||||
  bool missing_state = 3;
 | 
					  bool missing_state = 3;
 | 
				
			||||||
  uint32 device_id = 4;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message SelectCommandRequest {
 | 
					message SelectCommandRequest {
 | 
				
			||||||
  option (id) = 54;
 | 
					  option (id) = 54;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_SELECT";
 | 
					  option (ifdef) = "USE_SELECT";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  string state = 2;
 | 
					  string state = 2;
 | 
				
			||||||
  uint32 device_id = 3;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== SIREN ====================
 | 
					// ==================== SIREN ====================
 | 
				
			||||||
@@ -1150,14 +1120,12 @@ message SirenStateResponse {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  bool state = 2;
 | 
					  bool state = 2;
 | 
				
			||||||
  uint32 device_id = 3;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message SirenCommandRequest {
 | 
					message SirenCommandRequest {
 | 
				
			||||||
  option (id) = 57;
 | 
					  option (id) = 57;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_SIREN";
 | 
					  option (ifdef) = "USE_SIREN";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  bool has_state = 2;
 | 
					  bool has_state = 2;
 | 
				
			||||||
@@ -1168,7 +1136,6 @@ message SirenCommandRequest {
 | 
				
			|||||||
  uint32 duration = 7;
 | 
					  uint32 duration = 7;
 | 
				
			||||||
  bool has_volume = 8;
 | 
					  bool has_volume = 8;
 | 
				
			||||||
  float volume = 9;
 | 
					  float volume = 9;
 | 
				
			||||||
  uint32 device_id = 10;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== LOCK ====================
 | 
					// ==================== LOCK ====================
 | 
				
			||||||
@@ -1216,21 +1183,18 @@ message LockStateResponse {
 | 
				
			|||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  LockState state = 2;
 | 
					  LockState state = 2;
 | 
				
			||||||
  uint32 device_id = 3;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message LockCommandRequest {
 | 
					message LockCommandRequest {
 | 
				
			||||||
  option (id) = 60;
 | 
					  option (id) = 60;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_LOCK";
 | 
					  option (ifdef) = "USE_LOCK";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  LockCommand command = 2;
 | 
					  LockCommand command = 2;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Not yet implemented:
 | 
					  // Not yet implemented:
 | 
				
			||||||
  bool has_code = 3;
 | 
					  bool has_code = 3;
 | 
				
			||||||
  string code = 4;
 | 
					  string code = 4;
 | 
				
			||||||
  uint32 device_id = 5;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== BUTTON ====================
 | 
					// ==================== BUTTON ====================
 | 
				
			||||||
@@ -1256,10 +1220,8 @@ message ButtonCommandRequest {
 | 
				
			|||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_BUTTON";
 | 
					  option (ifdef) = "USE_BUTTON";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  uint32 device_id = 2;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== MEDIA PLAYER ====================
 | 
					// ==================== MEDIA PLAYER ====================
 | 
				
			||||||
@@ -1320,14 +1282,12 @@ message MediaPlayerStateResponse {
 | 
				
			|||||||
  MediaPlayerState state = 2;
 | 
					  MediaPlayerState state = 2;
 | 
				
			||||||
  float volume = 3;
 | 
					  float volume = 3;
 | 
				
			||||||
  bool muted = 4;
 | 
					  bool muted = 4;
 | 
				
			||||||
  uint32 device_id = 5;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message MediaPlayerCommandRequest {
 | 
					message MediaPlayerCommandRequest {
 | 
				
			||||||
  option (id) = 65;
 | 
					  option (id) = 65;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_MEDIA_PLAYER";
 | 
					  option (ifdef) = "USE_MEDIA_PLAYER";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1342,7 +1302,6 @@ message MediaPlayerCommandRequest {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  bool has_announcement = 8;
 | 
					  bool has_announcement = 8;
 | 
				
			||||||
  bool announcement = 9;
 | 
					  bool announcement = 9;
 | 
				
			||||||
  uint32 device_id = 10;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== BLUETOOTH ====================
 | 
					// ==================== BLUETOOTH ====================
 | 
				
			||||||
@@ -1863,7 +1822,6 @@ message AlarmControlPanelStateResponse {
 | 
				
			|||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  AlarmControlPanelState state = 2;
 | 
					  AlarmControlPanelState state = 2;
 | 
				
			||||||
  uint32 device_id = 3;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
message AlarmControlPanelCommandRequest {
 | 
					message AlarmControlPanelCommandRequest {
 | 
				
			||||||
@@ -1871,11 +1829,9 @@ message AlarmControlPanelCommandRequest {
 | 
				
			|||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_ALARM_CONTROL_PANEL";
 | 
					  option (ifdef) = "USE_ALARM_CONTROL_PANEL";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  AlarmControlPanelStateCommand command = 2;
 | 
					  AlarmControlPanelStateCommand command = 2;
 | 
				
			||||||
  string code = 3;
 | 
					  string code = 3;
 | 
				
			||||||
  uint32 device_id = 4;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ===================== TEXT =====================
 | 
					// ===================== TEXT =====================
 | 
				
			||||||
@@ -1915,18 +1871,15 @@ message TextStateResponse {
 | 
				
			|||||||
  // If the Text does not have a valid state yet.
 | 
					  // If the Text does not have a valid state yet.
 | 
				
			||||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
					  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
				
			||||||
  bool missing_state = 3;
 | 
					  bool missing_state = 3;
 | 
				
			||||||
  uint32 device_id = 4;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message TextCommandRequest {
 | 
					message TextCommandRequest {
 | 
				
			||||||
  option (id) = 99;
 | 
					  option (id) = 99;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_TEXT";
 | 
					  option (ifdef) = "USE_TEXT";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  string state = 2;
 | 
					  string state = 2;
 | 
				
			||||||
  uint32 device_id = 3;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1961,20 +1914,17 @@ message DateStateResponse {
 | 
				
			|||||||
  uint32 year = 3;
 | 
					  uint32 year = 3;
 | 
				
			||||||
  uint32 month = 4;
 | 
					  uint32 month = 4;
 | 
				
			||||||
  uint32 day = 5;
 | 
					  uint32 day = 5;
 | 
				
			||||||
  uint32 device_id = 6;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message DateCommandRequest {
 | 
					message DateCommandRequest {
 | 
				
			||||||
  option (id) = 102;
 | 
					  option (id) = 102;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_DATETIME_DATE";
 | 
					  option (ifdef) = "USE_DATETIME_DATE";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  uint32 year = 2;
 | 
					  uint32 year = 2;
 | 
				
			||||||
  uint32 month = 3;
 | 
					  uint32 month = 3;
 | 
				
			||||||
  uint32 day = 4;
 | 
					  uint32 day = 4;
 | 
				
			||||||
  uint32 device_id = 5;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== DATETIME TIME ====================
 | 
					// ==================== DATETIME TIME ====================
 | 
				
			||||||
@@ -2008,20 +1958,17 @@ message TimeStateResponse {
 | 
				
			|||||||
  uint32 hour = 3;
 | 
					  uint32 hour = 3;
 | 
				
			||||||
  uint32 minute = 4;
 | 
					  uint32 minute = 4;
 | 
				
			||||||
  uint32 second = 5;
 | 
					  uint32 second = 5;
 | 
				
			||||||
  uint32 device_id = 6;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message TimeCommandRequest {
 | 
					message TimeCommandRequest {
 | 
				
			||||||
  option (id) = 105;
 | 
					  option (id) = 105;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_DATETIME_TIME";
 | 
					  option (ifdef) = "USE_DATETIME_TIME";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  uint32 hour = 2;
 | 
					  uint32 hour = 2;
 | 
				
			||||||
  uint32 minute = 3;
 | 
					  uint32 minute = 3;
 | 
				
			||||||
  uint32 second = 4;
 | 
					  uint32 second = 4;
 | 
				
			||||||
  uint32 device_id = 5;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== EVENT ====================
 | 
					// ==================== EVENT ====================
 | 
				
			||||||
@@ -2052,7 +1999,6 @@ message EventResponse {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  string event_type = 2;
 | 
					  string event_type = 2;
 | 
				
			||||||
  uint32 device_id = 3;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== VALVE ====================
 | 
					// ==================== VALVE ====================
 | 
				
			||||||
@@ -2093,7 +2039,6 @@ message ValveStateResponse {
 | 
				
			|||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  float position = 2;
 | 
					  float position = 2;
 | 
				
			||||||
  ValveOperation current_operation = 3;
 | 
					  ValveOperation current_operation = 3;
 | 
				
			||||||
  uint32 device_id = 4;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
message ValveCommandRequest {
 | 
					message ValveCommandRequest {
 | 
				
			||||||
@@ -2101,13 +2046,11 @@ message ValveCommandRequest {
 | 
				
			|||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_VALVE";
 | 
					  option (ifdef) = "USE_VALVE";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  bool has_position = 2;
 | 
					  bool has_position = 2;
 | 
				
			||||||
  float position = 3;
 | 
					  float position = 3;
 | 
				
			||||||
  bool stop = 4;
 | 
					  bool stop = 4;
 | 
				
			||||||
  uint32 device_id = 5;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== DATETIME DATETIME ====================
 | 
					// ==================== DATETIME DATETIME ====================
 | 
				
			||||||
@@ -2139,18 +2082,15 @@ message DateTimeStateResponse {
 | 
				
			|||||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
					  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
				
			||||||
  bool missing_state = 2;
 | 
					  bool missing_state = 2;
 | 
				
			||||||
  fixed32 epoch_seconds = 3;
 | 
					  fixed32 epoch_seconds = 3;
 | 
				
			||||||
  uint32 device_id = 4;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
message DateTimeCommandRequest {
 | 
					message DateTimeCommandRequest {
 | 
				
			||||||
  option (id) = 114;
 | 
					  option (id) = 114;
 | 
				
			||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_DATETIME_DATETIME";
 | 
					  option (ifdef) = "USE_DATETIME_DATETIME";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  fixed32 epoch_seconds = 2;
 | 
					  fixed32 epoch_seconds = 2;
 | 
				
			||||||
  uint32 device_id = 3;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ==================== UPDATE ====================
 | 
					// ==================== UPDATE ====================
 | 
				
			||||||
@@ -2188,7 +2128,6 @@ message UpdateStateResponse {
 | 
				
			|||||||
  string title = 8;
 | 
					  string title = 8;
 | 
				
			||||||
  string release_summary = 9;
 | 
					  string release_summary = 9;
 | 
				
			||||||
  string release_url = 10;
 | 
					  string release_url = 10;
 | 
				
			||||||
  uint32 device_id = 11;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
enum UpdateCommand {
 | 
					enum UpdateCommand {
 | 
				
			||||||
  UPDATE_COMMAND_NONE = 0;
 | 
					  UPDATE_COMMAND_NONE = 0;
 | 
				
			||||||
@@ -2200,9 +2139,7 @@ message UpdateCommandRequest {
 | 
				
			|||||||
  option (source) = SOURCE_CLIENT;
 | 
					  option (source) = SOURCE_CLIENT;
 | 
				
			||||||
  option (ifdef) = "USE_UPDATE";
 | 
					  option (ifdef) = "USE_UPDATE";
 | 
				
			||||||
  option (no_delay) = true;
 | 
					  option (no_delay) = true;
 | 
				
			||||||
  option (base_class) = "CommandProtoMessage";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fixed32 key = 1;
 | 
					  fixed32 key = 1;
 | 
				
			||||||
  UpdateCommand command = 2;
 | 
					  UpdateCommand command = 2;
 | 
				
			||||||
  uint32 device_id = 3;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -18,13 +18,10 @@ namespace api {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// Keepalive timeout in milliseconds
 | 
					// Keepalive timeout in milliseconds
 | 
				
			||||||
static constexpr uint32_t KEEPALIVE_TIMEOUT_MS = 60000;
 | 
					static constexpr uint32_t KEEPALIVE_TIMEOUT_MS = 60000;
 | 
				
			||||||
// Maximum number of entities to process in a single batch during initial state/info sending
 | 
					 | 
				
			||||||
static constexpr size_t MAX_INITIAL_PER_BATCH = 20;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
class APIConnection : public APIServerConnection {
 | 
					class APIConnection : public APIServerConnection {
 | 
				
			||||||
 public:
 | 
					 public:
 | 
				
			||||||
  friend class APIServer;
 | 
					  friend class APIServer;
 | 
				
			||||||
  friend class ListEntitiesIterator;
 | 
					 | 
				
			||||||
  APIConnection(std::unique_ptr<socket::Socket> socket, APIServer *parent);
 | 
					  APIConnection(std::unique_ptr<socket::Socket> socket, APIServer *parent);
 | 
				
			||||||
  virtual ~APIConnection();
 | 
					  virtual ~APIConnection();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -33,83 +30,102 @@ class APIConnection : public APIServerConnection {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  bool send_list_info_done() {
 | 
					  bool send_list_info_done() {
 | 
				
			||||||
    return this->schedule_message_(nullptr, &APIConnection::try_send_list_info_done,
 | 
					    return this->schedule_message_(nullptr, &APIConnection::try_send_list_info_done,
 | 
				
			||||||
                                   ListEntitiesDoneResponse::MESSAGE_TYPE, ListEntitiesDoneResponse::ESTIMATED_SIZE);
 | 
					                                   ListEntitiesDoneResponse::MESSAGE_TYPE);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
#ifdef USE_BINARY_SENSOR
 | 
					#ifdef USE_BINARY_SENSOR
 | 
				
			||||||
  bool send_binary_sensor_state(binary_sensor::BinarySensor *binary_sensor);
 | 
					  bool send_binary_sensor_state(binary_sensor::BinarySensor *binary_sensor);
 | 
				
			||||||
 | 
					  void send_binary_sensor_info(binary_sensor::BinarySensor *binary_sensor);
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_COVER
 | 
					#ifdef USE_COVER
 | 
				
			||||||
  bool send_cover_state(cover::Cover *cover);
 | 
					  bool send_cover_state(cover::Cover *cover);
 | 
				
			||||||
 | 
					  void send_cover_info(cover::Cover *cover);
 | 
				
			||||||
  void cover_command(const CoverCommandRequest &msg) override;
 | 
					  void cover_command(const CoverCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_FAN
 | 
					#ifdef USE_FAN
 | 
				
			||||||
  bool send_fan_state(fan::Fan *fan);
 | 
					  bool send_fan_state(fan::Fan *fan);
 | 
				
			||||||
 | 
					  void send_fan_info(fan::Fan *fan);
 | 
				
			||||||
  void fan_command(const FanCommandRequest &msg) override;
 | 
					  void fan_command(const FanCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_LIGHT
 | 
					#ifdef USE_LIGHT
 | 
				
			||||||
  bool send_light_state(light::LightState *light);
 | 
					  bool send_light_state(light::LightState *light);
 | 
				
			||||||
 | 
					  void send_light_info(light::LightState *light);
 | 
				
			||||||
  void light_command(const LightCommandRequest &msg) override;
 | 
					  void light_command(const LightCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SENSOR
 | 
					#ifdef USE_SENSOR
 | 
				
			||||||
  bool send_sensor_state(sensor::Sensor *sensor);
 | 
					  bool send_sensor_state(sensor::Sensor *sensor);
 | 
				
			||||||
 | 
					  void send_sensor_info(sensor::Sensor *sensor);
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SWITCH
 | 
					#ifdef USE_SWITCH
 | 
				
			||||||
  bool send_switch_state(switch_::Switch *a_switch);
 | 
					  bool send_switch_state(switch_::Switch *a_switch);
 | 
				
			||||||
 | 
					  void send_switch_info(switch_::Switch *a_switch);
 | 
				
			||||||
  void switch_command(const SwitchCommandRequest &msg) override;
 | 
					  void switch_command(const SwitchCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_TEXT_SENSOR
 | 
					#ifdef USE_TEXT_SENSOR
 | 
				
			||||||
  bool send_text_sensor_state(text_sensor::TextSensor *text_sensor);
 | 
					  bool send_text_sensor_state(text_sensor::TextSensor *text_sensor);
 | 
				
			||||||
 | 
					  void send_text_sensor_info(text_sensor::TextSensor *text_sensor);
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_CAMERA
 | 
					#ifdef USE_ESP32_CAMERA
 | 
				
			||||||
  void set_camera_state(std::shared_ptr<camera::CameraImage> image);
 | 
					  void set_camera_state(std::shared_ptr<esp32_camera::CameraImage> image);
 | 
				
			||||||
 | 
					  void send_camera_info(esp32_camera::ESP32Camera *camera);
 | 
				
			||||||
  void camera_image(const CameraImageRequest &msg) override;
 | 
					  void camera_image(const CameraImageRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_CLIMATE
 | 
					#ifdef USE_CLIMATE
 | 
				
			||||||
  bool send_climate_state(climate::Climate *climate);
 | 
					  bool send_climate_state(climate::Climate *climate);
 | 
				
			||||||
 | 
					  void send_climate_info(climate::Climate *climate);
 | 
				
			||||||
  void climate_command(const ClimateCommandRequest &msg) override;
 | 
					  void climate_command(const ClimateCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_NUMBER
 | 
					#ifdef USE_NUMBER
 | 
				
			||||||
  bool send_number_state(number::Number *number);
 | 
					  bool send_number_state(number::Number *number);
 | 
				
			||||||
 | 
					  void send_number_info(number::Number *number);
 | 
				
			||||||
  void number_command(const NumberCommandRequest &msg) override;
 | 
					  void number_command(const NumberCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_DATETIME_DATE
 | 
					#ifdef USE_DATETIME_DATE
 | 
				
			||||||
  bool send_date_state(datetime::DateEntity *date);
 | 
					  bool send_date_state(datetime::DateEntity *date);
 | 
				
			||||||
 | 
					  void send_date_info(datetime::DateEntity *date);
 | 
				
			||||||
  void date_command(const DateCommandRequest &msg) override;
 | 
					  void date_command(const DateCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_DATETIME_TIME
 | 
					#ifdef USE_DATETIME_TIME
 | 
				
			||||||
  bool send_time_state(datetime::TimeEntity *time);
 | 
					  bool send_time_state(datetime::TimeEntity *time);
 | 
				
			||||||
 | 
					  void send_time_info(datetime::TimeEntity *time);
 | 
				
			||||||
  void time_command(const TimeCommandRequest &msg) override;
 | 
					  void time_command(const TimeCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_DATETIME_DATETIME
 | 
					#ifdef USE_DATETIME_DATETIME
 | 
				
			||||||
  bool send_datetime_state(datetime::DateTimeEntity *datetime);
 | 
					  bool send_datetime_state(datetime::DateTimeEntity *datetime);
 | 
				
			||||||
 | 
					  void send_datetime_info(datetime::DateTimeEntity *datetime);
 | 
				
			||||||
  void datetime_command(const DateTimeCommandRequest &msg) override;
 | 
					  void datetime_command(const DateTimeCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_TEXT
 | 
					#ifdef USE_TEXT
 | 
				
			||||||
  bool send_text_state(text::Text *text);
 | 
					  bool send_text_state(text::Text *text);
 | 
				
			||||||
 | 
					  void send_text_info(text::Text *text);
 | 
				
			||||||
  void text_command(const TextCommandRequest &msg) override;
 | 
					  void text_command(const TextCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SELECT
 | 
					#ifdef USE_SELECT
 | 
				
			||||||
  bool send_select_state(select::Select *select);
 | 
					  bool send_select_state(select::Select *select);
 | 
				
			||||||
 | 
					  void send_select_info(select::Select *select);
 | 
				
			||||||
  void select_command(const SelectCommandRequest &msg) override;
 | 
					  void select_command(const SelectCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_BUTTON
 | 
					#ifdef USE_BUTTON
 | 
				
			||||||
 | 
					  void send_button_info(button::Button *button);
 | 
				
			||||||
  void button_command(const ButtonCommandRequest &msg) override;
 | 
					  void button_command(const ButtonCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_LOCK
 | 
					#ifdef USE_LOCK
 | 
				
			||||||
  bool send_lock_state(lock::Lock *a_lock);
 | 
					  bool send_lock_state(lock::Lock *a_lock);
 | 
				
			||||||
 | 
					  void send_lock_info(lock::Lock *a_lock);
 | 
				
			||||||
  void lock_command(const LockCommandRequest &msg) override;
 | 
					  void lock_command(const LockCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_VALVE
 | 
					#ifdef USE_VALVE
 | 
				
			||||||
  bool send_valve_state(valve::Valve *valve);
 | 
					  bool send_valve_state(valve::Valve *valve);
 | 
				
			||||||
 | 
					  void send_valve_info(valve::Valve *valve);
 | 
				
			||||||
  void valve_command(const ValveCommandRequest &msg) override;
 | 
					  void valve_command(const ValveCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_MEDIA_PLAYER
 | 
					#ifdef USE_MEDIA_PLAYER
 | 
				
			||||||
  bool send_media_player_state(media_player::MediaPlayer *media_player);
 | 
					  bool send_media_player_state(media_player::MediaPlayer *media_player);
 | 
				
			||||||
 | 
					  void send_media_player_info(media_player::MediaPlayer *media_player);
 | 
				
			||||||
  void media_player_command(const MediaPlayerCommandRequest &msg) override;
 | 
					  void media_player_command(const MediaPlayerCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
  bool try_send_log_message(int level, const char *tag, const char *line, size_t message_len);
 | 
					  bool try_send_log_message(int level, const char *tag, const char *line);
 | 
				
			||||||
  void send_homeassistant_service_call(const HomeassistantServiceResponse &call) {
 | 
					  void send_homeassistant_service_call(const HomeassistantServiceResponse &call) {
 | 
				
			||||||
    if (!this->flags_.service_call_subscription)
 | 
					    if (!this->service_call_subscription_)
 | 
				
			||||||
      return;
 | 
					      return;
 | 
				
			||||||
    this->send_message(call);
 | 
					    this->send_message(call);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@@ -151,22 +167,26 @@ class APIConnection : public APIServerConnection {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#ifdef USE_ALARM_CONTROL_PANEL
 | 
					#ifdef USE_ALARM_CONTROL_PANEL
 | 
				
			||||||
  bool send_alarm_control_panel_state(alarm_control_panel::AlarmControlPanel *a_alarm_control_panel);
 | 
					  bool send_alarm_control_panel_state(alarm_control_panel::AlarmControlPanel *a_alarm_control_panel);
 | 
				
			||||||
 | 
					  void send_alarm_control_panel_info(alarm_control_panel::AlarmControlPanel *a_alarm_control_panel);
 | 
				
			||||||
  void alarm_control_panel_command(const AlarmControlPanelCommandRequest &msg) override;
 | 
					  void alarm_control_panel_command(const AlarmControlPanelCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_EVENT
 | 
					#ifdef USE_EVENT
 | 
				
			||||||
  void send_event(event::Event *event, const std::string &event_type);
 | 
					  void send_event(event::Event *event, const std::string &event_type);
 | 
				
			||||||
 | 
					  void send_event_info(event::Event *event);
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_UPDATE
 | 
					#ifdef USE_UPDATE
 | 
				
			||||||
  bool send_update_state(update::UpdateEntity *update);
 | 
					  bool send_update_state(update::UpdateEntity *update);
 | 
				
			||||||
 | 
					  void send_update_info(update::UpdateEntity *update);
 | 
				
			||||||
  void update_command(const UpdateCommandRequest &msg) override;
 | 
					  void update_command(const UpdateCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  void on_disconnect_response(const DisconnectResponse &value) override;
 | 
					  void on_disconnect_response(const DisconnectResponse &value) override;
 | 
				
			||||||
  void on_ping_response(const PingResponse &value) override {
 | 
					  void on_ping_response(const PingResponse &value) override {
 | 
				
			||||||
    // we initiated ping
 | 
					    // we initiated ping
 | 
				
			||||||
    this->flags_.sent_ping = false;
 | 
					    this->ping_retries_ = 0;
 | 
				
			||||||
 | 
					    this->sent_ping_ = false;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  void on_home_assistant_state_response(const HomeAssistantStateResponse &msg) override;
 | 
					  void on_home_assistant_state_response(const HomeAssistantStateResponse &msg) override;
 | 
				
			||||||
#ifdef USE_HOMEASSISTANT_TIME
 | 
					#ifdef USE_HOMEASSISTANT_TIME
 | 
				
			||||||
@@ -179,35 +199,30 @@ class APIConnection : public APIServerConnection {
 | 
				
			|||||||
  DeviceInfoResponse device_info(const DeviceInfoRequest &msg) override;
 | 
					  DeviceInfoResponse device_info(const DeviceInfoRequest &msg) override;
 | 
				
			||||||
  void list_entities(const ListEntitiesRequest &msg) override { this->list_entities_iterator_.begin(); }
 | 
					  void list_entities(const ListEntitiesRequest &msg) override { this->list_entities_iterator_.begin(); }
 | 
				
			||||||
  void subscribe_states(const SubscribeStatesRequest &msg) override {
 | 
					  void subscribe_states(const SubscribeStatesRequest &msg) override {
 | 
				
			||||||
    this->flags_.state_subscription = true;
 | 
					    this->state_subscription_ = true;
 | 
				
			||||||
    this->initial_state_iterator_.begin();
 | 
					    this->initial_state_iterator_.begin();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  void subscribe_logs(const SubscribeLogsRequest &msg) override {
 | 
					  void subscribe_logs(const SubscribeLogsRequest &msg) override {
 | 
				
			||||||
    this->flags_.log_subscription = msg.level;
 | 
					    this->log_subscription_ = msg.level;
 | 
				
			||||||
    if (msg.dump_config)
 | 
					    if (msg.dump_config)
 | 
				
			||||||
      App.schedule_dump_config();
 | 
					      App.schedule_dump_config();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  void subscribe_homeassistant_services(const SubscribeHomeassistantServicesRequest &msg) override {
 | 
					  void subscribe_homeassistant_services(const SubscribeHomeassistantServicesRequest &msg) override {
 | 
				
			||||||
    this->flags_.service_call_subscription = true;
 | 
					    this->service_call_subscription_ = true;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  void subscribe_home_assistant_states(const SubscribeHomeAssistantStatesRequest &msg) override;
 | 
					  void subscribe_home_assistant_states(const SubscribeHomeAssistantStatesRequest &msg) override;
 | 
				
			||||||
  GetTimeResponse get_time(const GetTimeRequest &msg) override {
 | 
					  GetTimeResponse get_time(const GetTimeRequest &msg) override {
 | 
				
			||||||
    // TODO
 | 
					    // TODO
 | 
				
			||||||
    return {};
 | 
					    return {};
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
  void execute_service(const ExecuteServiceRequest &msg) override;
 | 
					  void execute_service(const ExecuteServiceRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_API_NOISE
 | 
					#ifdef USE_API_NOISE
 | 
				
			||||||
  NoiseEncryptionSetKeyResponse noise_encryption_set_key(const NoiseEncryptionSetKeyRequest &msg) override;
 | 
					  NoiseEncryptionSetKeyResponse noise_encryption_set_key(const NoiseEncryptionSetKeyRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  bool is_authenticated() override {
 | 
					  bool is_authenticated() override { return this->connection_state_ == ConnectionState::AUTHENTICATED; }
 | 
				
			||||||
    return static_cast<ConnectionState>(this->flags_.connection_state) == ConnectionState::AUTHENTICATED;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  bool is_connection_setup() override {
 | 
					  bool is_connection_setup() override {
 | 
				
			||||||
    return static_cast<ConnectionState>(this->flags_.connection_state) == ConnectionState::CONNECTED ||
 | 
					    return this->connection_state_ == ConnectionState ::CONNECTED || this->is_authenticated();
 | 
				
			||||||
           this->is_authenticated();
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  void on_fatal_error() override;
 | 
					  void on_fatal_error() override;
 | 
				
			||||||
  void on_unauthenticated_access() override;
 | 
					  void on_unauthenticated_access() override;
 | 
				
			||||||
@@ -258,7 +273,7 @@ class APIConnection : public APIServerConnection {
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  bool try_to_clear_buffer(bool log_out_of_space);
 | 
					  bool try_to_clear_buffer(bool log_out_of_space);
 | 
				
			||||||
  bool send_buffer(ProtoWriteBuffer buffer, uint8_t message_type) override;
 | 
					  bool send_buffer(ProtoWriteBuffer buffer, uint16_t message_type) override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  std::string get_client_combined_info() const {
 | 
					  std::string get_client_combined_info() const {
 | 
				
			||||||
    if (this->client_info_ == this->client_peername_) {
 | 
					    if (this->client_info_ == this->client_peername_) {
 | 
				
			||||||
@@ -294,34 +309,12 @@ class APIConnection : public APIServerConnection {
 | 
				
			|||||||
  // Helper function to fill common entity state fields
 | 
					  // Helper function to fill common entity state fields
 | 
				
			||||||
  static void fill_entity_state_base(esphome::EntityBase *entity, StateResponseProtoMessage &response) {
 | 
					  static void fill_entity_state_base(esphome::EntityBase *entity, StateResponseProtoMessage &response) {
 | 
				
			||||||
    response.key = entity->get_object_id_hash();
 | 
					    response.key = entity->get_object_id_hash();
 | 
				
			||||||
#ifdef USE_DEVICES
 | 
					 | 
				
			||||||
    response.device_id = entity->get_device_id();
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Non-template helper to encode any ProtoMessage
 | 
					  // Non-template helper to encode any ProtoMessage
 | 
				
			||||||
  static uint16_t encode_message_to_buffer(ProtoMessage &msg, uint8_t message_type, APIConnection *conn,
 | 
					  static uint16_t encode_message_to_buffer(ProtoMessage &msg, uint16_t message_type, APIConnection *conn,
 | 
				
			||||||
                                           uint32_t remaining_size, bool is_single);
 | 
					                                           uint32_t remaining_size, bool is_single);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_VOICE_ASSISTANT
 | 
					 | 
				
			||||||
  // Helper to check voice assistant validity and connection ownership
 | 
					 | 
				
			||||||
  inline bool check_voice_assistant_api_connection_() const;
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Helper method to process multiple entities from an iterator in a batch
 | 
					 | 
				
			||||||
  template<typename Iterator> void process_iterator_batch_(Iterator &iterator) {
 | 
					 | 
				
			||||||
    size_t initial_size = this->deferred_batch_.size();
 | 
					 | 
				
			||||||
    while (!iterator.completed() && (this->deferred_batch_.size() - initial_size) < MAX_INITIAL_PER_BATCH) {
 | 
					 | 
				
			||||||
      iterator.advance();
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // If the batch is full, process it immediately
 | 
					 | 
				
			||||||
    // Note: iterator.advance() already calls schedule_batch_() via schedule_message_()
 | 
					 | 
				
			||||||
    if (this->deferred_batch_.size() >= MAX_INITIAL_PER_BATCH) {
 | 
					 | 
				
			||||||
      this->process_batch_();
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifdef USE_BINARY_SENSOR
 | 
					#ifdef USE_BINARY_SENSOR
 | 
				
			||||||
  static uint16_t try_send_binary_sensor_state(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
					  static uint16_t try_send_binary_sensor_state(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
				
			||||||
                                               bool is_single);
 | 
					                                               bool is_single);
 | 
				
			||||||
@@ -432,7 +425,7 @@ class APIConnection : public APIServerConnection {
 | 
				
			|||||||
  static uint16_t try_send_update_info(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
					  static uint16_t try_send_update_info(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
				
			||||||
                                       bool is_single);
 | 
					                                       bool is_single);
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_CAMERA
 | 
					#ifdef USE_ESP32_CAMERA
 | 
				
			||||||
  static uint16_t try_send_camera_info(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
					  static uint16_t try_send_camera_info(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
				
			||||||
                                       bool is_single);
 | 
					                                       bool is_single);
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
@@ -445,82 +438,141 @@ class APIConnection : public APIServerConnection {
 | 
				
			|||||||
  static uint16_t try_send_disconnect_request(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
					  static uint16_t try_send_disconnect_request(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
				
			||||||
                                              bool is_single);
 | 
					                                              bool is_single);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Batch message method for ping requests
 | 
					  // Helper function to get estimated message size for buffer pre-allocation
 | 
				
			||||||
  static uint16_t try_send_ping_request(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
					  static uint16_t get_estimated_message_size(uint16_t message_type);
 | 
				
			||||||
                                        bool is_single);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // === Optimal member ordering for 32-bit systems ===
 | 
					  // Pointers first (4 bytes each, naturally aligned)
 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Group 1: Pointers (4 bytes each on 32-bit)
 | 
					 | 
				
			||||||
  std::unique_ptr<APIFrameHelper> helper_;
 | 
					  std::unique_ptr<APIFrameHelper> helper_;
 | 
				
			||||||
  APIServer *parent_;
 | 
					  APIServer *parent_;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Group 2: Larger objects (must be 4-byte aligned)
 | 
					  // 4-byte aligned types
 | 
				
			||||||
  // These contain vectors/pointers internally, so putting them early ensures good alignment
 | 
					  uint32_t last_traffic_;
 | 
				
			||||||
  InitialStateIterator initial_state_iterator_;
 | 
					  uint32_t next_ping_retry_{0};
 | 
				
			||||||
  ListEntitiesIterator list_entities_iterator_;
 | 
					  int state_subs_at_ = -1;
 | 
				
			||||||
#ifdef USE_CAMERA
 | 
					 | 
				
			||||||
  std::unique_ptr<camera::CameraImageReader> image_reader_;
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Group 3: Strings (12 bytes each on 32-bit, 4-byte aligned)
 | 
					  // Strings (12 bytes each on 32-bit)
 | 
				
			||||||
  std::string client_info_;
 | 
					  std::string client_info_;
 | 
				
			||||||
  std::string client_peername_;
 | 
					  std::string client_peername_;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Group 4: 4-byte types
 | 
					  // 2-byte aligned types
 | 
				
			||||||
  uint32_t last_traffic_;
 | 
					  uint16_t client_api_version_major_{0};
 | 
				
			||||||
  int state_subs_at_ = -1;
 | 
					  uint16_t client_api_version_minor_{0};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  // Group all 1-byte types together to minimize padding
 | 
				
			||||||
 | 
					  enum class ConnectionState : uint8_t {
 | 
				
			||||||
 | 
					    WAITING_FOR_HELLO,
 | 
				
			||||||
 | 
					    CONNECTED,
 | 
				
			||||||
 | 
					    AUTHENTICATED,
 | 
				
			||||||
 | 
					  } connection_state_{ConnectionState::WAITING_FOR_HELLO};
 | 
				
			||||||
 | 
					  uint8_t log_subscription_{ESPHOME_LOG_LEVEL_NONE};
 | 
				
			||||||
 | 
					  bool remove_{false};
 | 
				
			||||||
 | 
					  bool state_subscription_{false};
 | 
				
			||||||
 | 
					  bool sent_ping_{false};
 | 
				
			||||||
 | 
					  bool service_call_subscription_{false};
 | 
				
			||||||
 | 
					  bool next_close_ = false;
 | 
				
			||||||
 | 
					  uint8_t ping_retries_{0};
 | 
				
			||||||
 | 
					  // 8 bytes used, no padding needed
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  // Larger objects at the end
 | 
				
			||||||
 | 
					  InitialStateIterator initial_state_iterator_;
 | 
				
			||||||
 | 
					  ListEntitiesIterator list_entities_iterator_;
 | 
				
			||||||
 | 
					#ifdef USE_ESP32_CAMERA
 | 
				
			||||||
 | 
					  esp32_camera::CameraImageReader image_reader_;
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Function pointer type for message encoding
 | 
					  // Function pointer type for message encoding
 | 
				
			||||||
  using MessageCreatorPtr = uint16_t (*)(EntityBase *, APIConnection *, uint32_t remaining_size, bool is_single);
 | 
					  using MessageCreatorPtr = uint16_t (*)(EntityBase *, APIConnection *, uint32_t remaining_size, bool is_single);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  // Optimized MessageCreator class using tagged pointer
 | 
				
			||||||
  class MessageCreator {
 | 
					  class MessageCreator {
 | 
				
			||||||
 | 
					    // Ensure pointer alignment allows LSB tagging
 | 
				
			||||||
 | 
					    static_assert(alignof(std::string *) > 1, "String pointer alignment must be > 1 for LSB tagging");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   public:
 | 
					   public:
 | 
				
			||||||
    // Constructor for function pointer
 | 
					    // Constructor for function pointer
 | 
				
			||||||
    MessageCreator(MessageCreatorPtr ptr) { data_.function_ptr = ptr; }
 | 
					    MessageCreator(MessageCreatorPtr ptr) {
 | 
				
			||||||
 | 
					      // Function pointers are always aligned, so LSB is 0
 | 
				
			||||||
 | 
					      data_.ptr = ptr;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Constructor for string state capture
 | 
					    // Constructor for string state capture
 | 
				
			||||||
    explicit MessageCreator(const std::string &str_value) { data_.string_ptr = new std::string(str_value); }
 | 
					    explicit MessageCreator(const std::string &str_value) {
 | 
				
			||||||
 | 
					      // Allocate string and tag the pointer
 | 
				
			||||||
 | 
					      auto *str = new std::string(str_value);
 | 
				
			||||||
 | 
					      // Set LSB to 1 to indicate string pointer
 | 
				
			||||||
 | 
					      data_.tagged = reinterpret_cast<uintptr_t>(str) | 1;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // No destructor - cleanup must be called explicitly with message_type
 | 
					    // Destructor
 | 
				
			||||||
 | 
					    ~MessageCreator() {
 | 
				
			||||||
 | 
					      if (has_tagged_string_ptr_()) {
 | 
				
			||||||
 | 
					        delete get_string_ptr_();
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Delete copy operations - MessageCreator should only be moved
 | 
					    // Copy constructor
 | 
				
			||||||
    MessageCreator(const MessageCreator &other) = delete;
 | 
					    MessageCreator(const MessageCreator &other) {
 | 
				
			||||||
    MessageCreator &operator=(const MessageCreator &other) = delete;
 | 
					      if (other.has_tagged_string_ptr_()) {
 | 
				
			||||||
 | 
					        auto *str = new std::string(*other.get_string_ptr_());
 | 
				
			||||||
 | 
					        data_.tagged = reinterpret_cast<uintptr_t>(str) | 1;
 | 
				
			||||||
 | 
					      } else {
 | 
				
			||||||
 | 
					        data_ = other.data_;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Move constructor
 | 
					    // Move constructor
 | 
				
			||||||
    MessageCreator(MessageCreator &&other) noexcept : data_(other.data_) { other.data_.function_ptr = nullptr; }
 | 
					    MessageCreator(MessageCreator &&other) noexcept : data_(other.data_) { other.data_.ptr = nullptr; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Move assignment
 | 
					    // Assignment operators (needed for batch deduplication)
 | 
				
			||||||
    MessageCreator &operator=(MessageCreator &&other) noexcept {
 | 
					    MessageCreator &operator=(const MessageCreator &other) {
 | 
				
			||||||
      if (this != &other) {
 | 
					      if (this != &other) {
 | 
				
			||||||
        // IMPORTANT: Caller must ensure cleanup() was called if this contains a string!
 | 
					        // Clean up current string data if needed
 | 
				
			||||||
        // In our usage, this happens in add_item() deduplication and vector::erase()
 | 
					        if (has_tagged_string_ptr_()) {
 | 
				
			||||||
        data_ = other.data_;
 | 
					          delete get_string_ptr_();
 | 
				
			||||||
        other.data_.function_ptr = nullptr;
 | 
					        }
 | 
				
			||||||
 | 
					        // Copy new data
 | 
				
			||||||
 | 
					        if (other.has_tagged_string_ptr_()) {
 | 
				
			||||||
 | 
					          auto *str = new std::string(*other.get_string_ptr_());
 | 
				
			||||||
 | 
					          data_.tagged = reinterpret_cast<uintptr_t>(str) | 1;
 | 
				
			||||||
 | 
					        } else {
 | 
				
			||||||
 | 
					          data_ = other.data_;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
      return *this;
 | 
					      return *this;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Call operator - uses message_type to determine union type
 | 
					    MessageCreator &operator=(MessageCreator &&other) noexcept {
 | 
				
			||||||
    uint16_t operator()(EntityBase *entity, APIConnection *conn, uint32_t remaining_size, bool is_single,
 | 
					      if (this != &other) {
 | 
				
			||||||
                        uint8_t message_type) const;
 | 
					        // Clean up current string data if needed
 | 
				
			||||||
 | 
					        if (has_tagged_string_ptr_()) {
 | 
				
			||||||
    // Manual cleanup method - must be called before destruction for string types
 | 
					          delete get_string_ptr_();
 | 
				
			||||||
    void cleanup(uint8_t message_type) {
 | 
					        }
 | 
				
			||||||
#ifdef USE_EVENT
 | 
					        // Move data
 | 
				
			||||||
      if (message_type == EventResponse::MESSAGE_TYPE && data_.string_ptr != nullptr) {
 | 
					        data_ = other.data_;
 | 
				
			||||||
        delete data_.string_ptr;
 | 
					        // Reset other to safe state
 | 
				
			||||||
        data_.string_ptr = nullptr;
 | 
					        other.data_.ptr = nullptr;
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
#endif
 | 
					      return *this;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Call operator - now accepts message_type as parameter
 | 
				
			||||||
 | 
					    uint16_t operator()(EntityBase *entity, APIConnection *conn, uint32_t remaining_size, bool is_single,
 | 
				
			||||||
 | 
					                        uint16_t message_type) const;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   private:
 | 
					   private:
 | 
				
			||||||
    union Data {
 | 
					    // Check if this contains a string pointer
 | 
				
			||||||
      MessageCreatorPtr function_ptr;
 | 
					    bool has_tagged_string_ptr_() const { return (data_.tagged & 1) != 0; }
 | 
				
			||||||
      std::string *string_ptr;
 | 
					
 | 
				
			||||||
    } data_;  // 4 bytes on 32-bit, 8 bytes on 64-bit - same as before
 | 
					    // Get the actual string pointer (clears the tag bit)
 | 
				
			||||||
 | 
					    std::string *get_string_ptr_() const {
 | 
				
			||||||
 | 
					      // NOLINTNEXTLINE(performance-no-int-to-ptr)
 | 
				
			||||||
 | 
					      return reinterpret_cast<std::string *>(data_.tagged & ~uintptr_t(1));
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    union {
 | 
				
			||||||
 | 
					      MessageCreatorPtr ptr;
 | 
				
			||||||
 | 
					      uintptr_t tagged;
 | 
				
			||||||
 | 
					    } data_;  // 4 bytes on 32-bit
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Generic batching mechanism for both state updates and entity info
 | 
					  // Generic batching mechanism for both state updates and entity info
 | 
				
			||||||
@@ -528,96 +580,33 @@ class APIConnection : public APIServerConnection {
 | 
				
			|||||||
    struct BatchItem {
 | 
					    struct BatchItem {
 | 
				
			||||||
      EntityBase *entity;      // Entity pointer
 | 
					      EntityBase *entity;      // Entity pointer
 | 
				
			||||||
      MessageCreator creator;  // Function that creates the message when needed
 | 
					      MessageCreator creator;  // Function that creates the message when needed
 | 
				
			||||||
      uint8_t message_type;    // Message type for overhead calculation (max 255)
 | 
					      uint16_t message_type;   // Message type for overhead calculation
 | 
				
			||||||
      uint8_t estimated_size;  // Estimated message size (max 255 bytes)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
      // Constructor for creating BatchItem
 | 
					      // Constructor for creating BatchItem
 | 
				
			||||||
      BatchItem(EntityBase *entity, MessageCreator creator, uint8_t message_type, uint8_t estimated_size)
 | 
					      BatchItem(EntityBase *entity, MessageCreator creator, uint16_t message_type)
 | 
				
			||||||
          : entity(entity), creator(std::move(creator)), message_type(message_type), estimated_size(estimated_size) {}
 | 
					          : entity(entity), creator(std::move(creator)), message_type(message_type) {}
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    std::vector<BatchItem> items;
 | 
					    std::vector<BatchItem> items;
 | 
				
			||||||
    uint32_t batch_start_time{0};
 | 
					    uint32_t batch_start_time{0};
 | 
				
			||||||
 | 
					    bool batch_scheduled{false};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   private:
 | 
					 | 
				
			||||||
    // Helper to cleanup items from the beginning
 | 
					 | 
				
			||||||
    void cleanup_items_(size_t count) {
 | 
					 | 
				
			||||||
      for (size_t i = 0; i < count; i++) {
 | 
					 | 
				
			||||||
        items[i].creator.cleanup(items[i].message_type);
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
   public:
 | 
					 | 
				
			||||||
    DeferredBatch() {
 | 
					    DeferredBatch() {
 | 
				
			||||||
      // Pre-allocate capacity for typical batch sizes to avoid reallocation
 | 
					      // Pre-allocate capacity for typical batch sizes to avoid reallocation
 | 
				
			||||||
      items.reserve(8);
 | 
					      items.reserve(8);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ~DeferredBatch() {
 | 
					 | 
				
			||||||
      // Ensure cleanup of any remaining items
 | 
					 | 
				
			||||||
      clear();
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Add item to the batch
 | 
					    // Add item to the batch
 | 
				
			||||||
    void add_item(EntityBase *entity, MessageCreator creator, uint8_t message_type, uint8_t estimated_size);
 | 
					    void add_item(EntityBase *entity, MessageCreator creator, uint16_t message_type);
 | 
				
			||||||
    // Add item to the front of the batch (for high priority messages like ping)
 | 
					 | 
				
			||||||
    void add_item_front(EntityBase *entity, MessageCreator creator, uint8_t message_type, uint8_t estimated_size);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Clear all items with proper cleanup
 | 
					 | 
				
			||||||
    void clear() {
 | 
					    void clear() {
 | 
				
			||||||
      cleanup_items_(items.size());
 | 
					 | 
				
			||||||
      items.clear();
 | 
					      items.clear();
 | 
				
			||||||
 | 
					      batch_scheduled = false;
 | 
				
			||||||
      batch_start_time = 0;
 | 
					      batch_start_time = 0;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Remove processed items from the front with proper cleanup
 | 
					 | 
				
			||||||
    void remove_front(size_t count) {
 | 
					 | 
				
			||||||
      cleanup_items_(count);
 | 
					 | 
				
			||||||
      items.erase(items.begin(), items.begin() + count);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    bool empty() const { return items.empty(); }
 | 
					    bool empty() const { return items.empty(); }
 | 
				
			||||||
    size_t size() const { return items.size(); }
 | 
					 | 
				
			||||||
    const BatchItem &operator[](size_t index) const { return items[index]; }
 | 
					 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // DeferredBatch here (16 bytes, 4-byte aligned)
 | 
					 | 
				
			||||||
  DeferredBatch deferred_batch_;
 | 
					  DeferredBatch deferred_batch_;
 | 
				
			||||||
 | 
					 | 
				
			||||||
  // ConnectionState enum for type safety
 | 
					 | 
				
			||||||
  enum class ConnectionState : uint8_t {
 | 
					 | 
				
			||||||
    WAITING_FOR_HELLO = 0,
 | 
					 | 
				
			||||||
    CONNECTED = 1,
 | 
					 | 
				
			||||||
    AUTHENTICATED = 2,
 | 
					 | 
				
			||||||
  };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Group 5: Pack all small members together to minimize padding
 | 
					 | 
				
			||||||
  // This group starts at a 4-byte boundary after DeferredBatch
 | 
					 | 
				
			||||||
  struct APIFlags {
 | 
					 | 
				
			||||||
    // Connection state only needs 2 bits (3 states)
 | 
					 | 
				
			||||||
    uint8_t connection_state : 2;
 | 
					 | 
				
			||||||
    // Log subscription needs 3 bits (log levels 0-7)
 | 
					 | 
				
			||||||
    uint8_t log_subscription : 3;
 | 
					 | 
				
			||||||
    // Boolean flags (1 bit each)
 | 
					 | 
				
			||||||
    uint8_t remove : 1;
 | 
					 | 
				
			||||||
    uint8_t state_subscription : 1;
 | 
					 | 
				
			||||||
    uint8_t sent_ping : 1;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    uint8_t service_call_subscription : 1;
 | 
					 | 
				
			||||||
    uint8_t next_close : 1;
 | 
					 | 
				
			||||||
    uint8_t batch_scheduled : 1;
 | 
					 | 
				
			||||||
    uint8_t batch_first_message : 1;          // For batch buffer allocation
 | 
					 | 
				
			||||||
    uint8_t should_try_send_immediately : 1;  // True after initial states are sent
 | 
					 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					 | 
				
			||||||
    uint8_t log_only_mode : 1;
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
  } flags_{};  // 2 bytes total
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // 2-byte types immediately after flags_ (no padding between them)
 | 
					 | 
				
			||||||
  uint16_t client_api_version_major_{0};
 | 
					 | 
				
			||||||
  uint16_t client_api_version_minor_{0};
 | 
					 | 
				
			||||||
  // Total: 2 (flags) + 2 + 2 = 6 bytes, then 2 bytes padding to next 4-byte boundary
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  uint32_t get_batch_delay_ms_() const;
 | 
					  uint32_t get_batch_delay_ms_() const;
 | 
				
			||||||
  // Message will use 8 more bytes than the minimum size, and typical
 | 
					  // Message will use 8 more bytes than the minimum size, and typical
 | 
				
			||||||
  // MTU is 1500. Sometimes users will see as low as 1460 MTU.
 | 
					  // MTU is 1500. Sometimes users will see as low as 1460 MTU.
 | 
				
			||||||
@@ -630,72 +619,23 @@ class APIConnection : public APIServerConnection {
 | 
				
			|||||||
  // to send in one go. This is the maximum size of a single packet
 | 
					  // to send in one go. This is the maximum size of a single packet
 | 
				
			||||||
  // that can be sent over the network.
 | 
					  // that can be sent over the network.
 | 
				
			||||||
  // This is to avoid fragmentation of the packet.
 | 
					  // This is to avoid fragmentation of the packet.
 | 
				
			||||||
  static constexpr size_t MAX_BATCH_PACKET_SIZE = 1390;  // MTU
 | 
					  static constexpr size_t MAX_PACKET_SIZE = 1390;  // MTU
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  bool schedule_batch_();
 | 
					  bool schedule_batch_();
 | 
				
			||||||
  void process_batch_();
 | 
					  void process_batch_();
 | 
				
			||||||
  void clear_batch_() {
 | 
					 | 
				
			||||||
    this->deferred_batch_.clear();
 | 
					 | 
				
			||||||
    this->flags_.batch_scheduled = false;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					  // State for batch buffer allocation
 | 
				
			||||||
  // Helper to log a proto message from a MessageCreator object
 | 
					  bool batch_first_message_{false};
 | 
				
			||||||
  void log_proto_message_(EntityBase *entity, const MessageCreator &creator, uint8_t message_type) {
 | 
					 | 
				
			||||||
    this->flags_.log_only_mode = true;
 | 
					 | 
				
			||||||
    creator(entity, this, MAX_BATCH_PACKET_SIZE, true, message_type);
 | 
					 | 
				
			||||||
    this->flags_.log_only_mode = false;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  void log_batch_item_(const DeferredBatch::BatchItem &item) {
 | 
					 | 
				
			||||||
    // Use the helper to log the message
 | 
					 | 
				
			||||||
    this->log_proto_message_(item.entity, item.creator, item.message_type);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Helper method to send a message either immediately or via batching
 | 
					 | 
				
			||||||
  bool send_message_smart_(EntityBase *entity, MessageCreatorPtr creator, uint8_t message_type,
 | 
					 | 
				
			||||||
                           uint8_t estimated_size) {
 | 
					 | 
				
			||||||
    // Try to send immediately if:
 | 
					 | 
				
			||||||
    // 1. We should try to send immediately (should_try_send_immediately = true)
 | 
					 | 
				
			||||||
    // 2. Batch delay is 0 (user has opted in to immediate sending)
 | 
					 | 
				
			||||||
    // 3. Buffer has space available
 | 
					 | 
				
			||||||
    if (this->flags_.should_try_send_immediately && this->get_batch_delay_ms_() == 0 &&
 | 
					 | 
				
			||||||
        this->helper_->can_write_without_blocking()) {
 | 
					 | 
				
			||||||
      // Now actually encode and send
 | 
					 | 
				
			||||||
      if (creator(entity, this, MAX_BATCH_PACKET_SIZE, true) &&
 | 
					 | 
				
			||||||
          this->send_buffer(ProtoWriteBuffer{&this->parent_->get_shared_buffer_ref()}, message_type)) {
 | 
					 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					 | 
				
			||||||
        // Log the message in verbose mode
 | 
					 | 
				
			||||||
        this->log_proto_message_(entity, MessageCreator(creator), message_type);
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
        return true;
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      // If immediate send failed, fall through to batching
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Fall back to scheduled batching
 | 
					 | 
				
			||||||
    return this->schedule_message_(entity, creator, message_type, estimated_size);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Helper function to schedule a deferred message with known message type
 | 
					  // Helper function to schedule a deferred message with known message type
 | 
				
			||||||
  bool schedule_message_(EntityBase *entity, MessageCreator creator, uint8_t message_type, uint8_t estimated_size) {
 | 
					  bool schedule_message_(EntityBase *entity, MessageCreator creator, uint16_t message_type) {
 | 
				
			||||||
    this->deferred_batch_.add_item(entity, std::move(creator), message_type, estimated_size);
 | 
					    this->deferred_batch_.add_item(entity, std::move(creator), message_type);
 | 
				
			||||||
    return this->schedule_batch_();
 | 
					    return this->schedule_batch_();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Overload for function pointers (for info messages and current state reads)
 | 
					  // Overload for function pointers (for info messages and current state reads)
 | 
				
			||||||
  bool schedule_message_(EntityBase *entity, MessageCreatorPtr function_ptr, uint8_t message_type,
 | 
					  bool schedule_message_(EntityBase *entity, MessageCreatorPtr function_ptr, uint16_t message_type) {
 | 
				
			||||||
                         uint8_t estimated_size) {
 | 
					    return schedule_message_(entity, MessageCreator(function_ptr), message_type);
 | 
				
			||||||
    return schedule_message_(entity, MessageCreator(function_ptr), message_type, estimated_size);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Helper function to schedule a high priority message at the front of the batch
 | 
					 | 
				
			||||||
  bool schedule_message_front_(EntityBase *entity, MessageCreatorPtr function_ptr, uint8_t message_type,
 | 
					 | 
				
			||||||
                               uint8_t estimated_size) {
 | 
					 | 
				
			||||||
    this->deferred_batch_.add_item_front(entity, MessageCreator(function_ptr), message_type, estimated_size);
 | 
					 | 
				
			||||||
    return this->schedule_batch_();
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,6 +5,7 @@
 | 
				
			|||||||
#include "esphome/core/helpers.h"
 | 
					#include "esphome/core/helpers.h"
 | 
				
			||||||
#include "esphome/core/log.h"
 | 
					#include "esphome/core/log.h"
 | 
				
			||||||
#include "proto.h"
 | 
					#include "proto.h"
 | 
				
			||||||
 | 
					#include "api_pb2_size.h"
 | 
				
			||||||
#include <cstring>
 | 
					#include <cstring>
 | 
				
			||||||
#include <cinttypes>
 | 
					#include <cinttypes>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -224,22 +225,6 @@ APIError APIFrameHelper::init_common_() {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define HELPER_LOG(msg, ...) ESP_LOGVV(TAG, "%s: " msg, this->info_.c_str(), ##__VA_ARGS__)
 | 
					#define HELPER_LOG(msg, ...) ESP_LOGVV(TAG, "%s: " msg, this->info_.c_str(), ##__VA_ARGS__)
 | 
				
			||||||
 | 
					 | 
				
			||||||
APIError APIFrameHelper::handle_socket_read_result_(ssize_t received) {
 | 
					 | 
				
			||||||
  if (received == -1) {
 | 
					 | 
				
			||||||
    if (errno == EWOULDBLOCK || errno == EAGAIN) {
 | 
					 | 
				
			||||||
      return APIError::WOULD_BLOCK;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    state_ = State::FAILED;
 | 
					 | 
				
			||||||
    HELPER_LOG("Socket read failed with errno %d", errno);
 | 
					 | 
				
			||||||
    return APIError::SOCKET_READ_FAILED;
 | 
					 | 
				
			||||||
  } else if (received == 0) {
 | 
					 | 
				
			||||||
    state_ = State::FAILED;
 | 
					 | 
				
			||||||
    HELPER_LOG("Connection closed");
 | 
					 | 
				
			||||||
    return APIError::CONNECTION_CLOSED;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  return APIError::OK;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
// uncomment to log raw packets
 | 
					// uncomment to log raw packets
 | 
				
			||||||
//#define HELPER_LOG_PACKETS
 | 
					//#define HELPER_LOG_PACKETS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -342,9 +327,17 @@ APIError APINoiseFrameHelper::try_read_frame_(ParsedFrame *frame) {
 | 
				
			|||||||
    // no header information yet
 | 
					    // no header information yet
 | 
				
			||||||
    uint8_t to_read = 3 - rx_header_buf_len_;
 | 
					    uint8_t to_read = 3 - rx_header_buf_len_;
 | 
				
			||||||
    ssize_t received = this->socket_->read(&rx_header_buf_[rx_header_buf_len_], to_read);
 | 
					    ssize_t received = this->socket_->read(&rx_header_buf_[rx_header_buf_len_], to_read);
 | 
				
			||||||
    APIError err = handle_socket_read_result_(received);
 | 
					    if (received == -1) {
 | 
				
			||||||
    if (err != APIError::OK) {
 | 
					      if (errno == EWOULDBLOCK || errno == EAGAIN) {
 | 
				
			||||||
      return err;
 | 
					        return APIError::WOULD_BLOCK;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      state_ = State::FAILED;
 | 
				
			||||||
 | 
					      HELPER_LOG("Socket read failed with errno %d", errno);
 | 
				
			||||||
 | 
					      return APIError::SOCKET_READ_FAILED;
 | 
				
			||||||
 | 
					    } else if (received == 0) {
 | 
				
			||||||
 | 
					      state_ = State::FAILED;
 | 
				
			||||||
 | 
					      HELPER_LOG("Connection closed");
 | 
				
			||||||
 | 
					      return APIError::CONNECTION_CLOSED;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    rx_header_buf_len_ += static_cast<uint8_t>(received);
 | 
					    rx_header_buf_len_ += static_cast<uint8_t>(received);
 | 
				
			||||||
    if (static_cast<uint8_t>(received) != to_read) {
 | 
					    if (static_cast<uint8_t>(received) != to_read) {
 | 
				
			||||||
@@ -379,9 +372,17 @@ APIError APINoiseFrameHelper::try_read_frame_(ParsedFrame *frame) {
 | 
				
			|||||||
    // more data to read
 | 
					    // more data to read
 | 
				
			||||||
    uint16_t to_read = msg_size - rx_buf_len_;
 | 
					    uint16_t to_read = msg_size - rx_buf_len_;
 | 
				
			||||||
    ssize_t received = this->socket_->read(&rx_buf_[rx_buf_len_], to_read);
 | 
					    ssize_t received = this->socket_->read(&rx_buf_[rx_buf_len_], to_read);
 | 
				
			||||||
    APIError err = handle_socket_read_result_(received);
 | 
					    if (received == -1) {
 | 
				
			||||||
    if (err != APIError::OK) {
 | 
					      if (errno == EWOULDBLOCK || errno == EAGAIN) {
 | 
				
			||||||
      return err;
 | 
					        return APIError::WOULD_BLOCK;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      state_ = State::FAILED;
 | 
				
			||||||
 | 
					      HELPER_LOG("Socket read failed with errno %d", errno);
 | 
				
			||||||
 | 
					      return APIError::SOCKET_READ_FAILED;
 | 
				
			||||||
 | 
					    } else if (received == 0) {
 | 
				
			||||||
 | 
					      state_ = State::FAILED;
 | 
				
			||||||
 | 
					      HELPER_LOG("Connection closed");
 | 
				
			||||||
 | 
					      return APIError::CONNECTION_CLOSED;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    rx_buf_len_ += static_cast<uint16_t>(received);
 | 
					    rx_buf_len_ += static_cast<uint16_t>(received);
 | 
				
			||||||
    if (static_cast<uint16_t>(received) != to_read) {
 | 
					    if (static_cast<uint16_t>(received) != to_read) {
 | 
				
			||||||
@@ -612,15 +613,21 @@ APIError APINoiseFrameHelper::read_packet(ReadPacketBuffer *buffer) {
 | 
				
			|||||||
  buffer->type = type;
 | 
					  buffer->type = type;
 | 
				
			||||||
  return APIError::OK;
 | 
					  return APIError::OK;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
APIError APINoiseFrameHelper::write_protobuf_packet(uint8_t type, ProtoWriteBuffer buffer) {
 | 
					APIError APINoiseFrameHelper::write_protobuf_packet(uint16_t type, ProtoWriteBuffer buffer) {
 | 
				
			||||||
 | 
					  std::vector<uint8_t> *raw_buffer = buffer.get_buffer();
 | 
				
			||||||
 | 
					  uint16_t payload_len = static_cast<uint16_t>(raw_buffer->size() - frame_header_padding_);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Resize to include MAC space (required for Noise encryption)
 | 
					  // Resize to include MAC space (required for Noise encryption)
 | 
				
			||||||
  buffer.get_buffer()->resize(buffer.get_buffer()->size() + frame_footer_size_);
 | 
					  raw_buffer->resize(raw_buffer->size() + frame_footer_size_);
 | 
				
			||||||
  PacketInfo packet{type, 0,
 | 
					
 | 
				
			||||||
                    static_cast<uint16_t>(buffer.get_buffer()->size() - frame_header_padding_ - frame_footer_size_)};
 | 
					  // Use write_protobuf_packets with a single packet
 | 
				
			||||||
  return write_protobuf_packets(buffer, std::span<const PacketInfo>(&packet, 1));
 | 
					  std::vector<PacketInfo> packets;
 | 
				
			||||||
 | 
					  packets.emplace_back(type, 0, payload_len);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  return write_protobuf_packets(buffer, packets);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
APIError APINoiseFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer, std::span<const PacketInfo> packets) {
 | 
					APIError APINoiseFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer, const std::vector<PacketInfo> &packets) {
 | 
				
			||||||
  APIError aerr = state_action_();
 | 
					  APIError aerr = state_action_();
 | 
				
			||||||
  if (aerr != APIError::OK) {
 | 
					  if (aerr != APIError::OK) {
 | 
				
			||||||
    return aerr;
 | 
					    return aerr;
 | 
				
			||||||
@@ -635,15 +642,18 @@ APIError APINoiseFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer, st
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  std::vector<uint8_t> *raw_buffer = buffer.get_buffer();
 | 
					  std::vector<uint8_t> *raw_buffer = buffer.get_buffer();
 | 
				
			||||||
  uint8_t *buffer_data = raw_buffer->data();  // Cache buffer pointer
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  this->reusable_iovs_.clear();
 | 
					  this->reusable_iovs_.clear();
 | 
				
			||||||
  this->reusable_iovs_.reserve(packets.size());
 | 
					  this->reusable_iovs_.reserve(packets.size());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // We need to encrypt each packet in place
 | 
					  // We need to encrypt each packet in place
 | 
				
			||||||
  for (const auto &packet : packets) {
 | 
					  for (const auto &packet : packets) {
 | 
				
			||||||
 | 
					    uint16_t type = packet.message_type;
 | 
				
			||||||
 | 
					    uint16_t offset = packet.offset;
 | 
				
			||||||
 | 
					    uint16_t payload_len = packet.payload_size;
 | 
				
			||||||
 | 
					    uint16_t msg_len = 4 + payload_len;  // type(2) + data_len(2) + payload
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // The buffer already has padding at offset
 | 
					    // The buffer already has padding at offset
 | 
				
			||||||
    uint8_t *buf_start = buffer_data + packet.offset;
 | 
					    uint8_t *buf_start = raw_buffer->data() + offset;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Write noise header
 | 
					    // Write noise header
 | 
				
			||||||
    buf_start[0] = 0x01;  // indicator
 | 
					    buf_start[0] = 0x01;  // indicator
 | 
				
			||||||
@@ -651,10 +661,10 @@ APIError APINoiseFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer, st
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    // Write message header (to be encrypted)
 | 
					    // Write message header (to be encrypted)
 | 
				
			||||||
    const uint8_t msg_offset = 3;
 | 
					    const uint8_t msg_offset = 3;
 | 
				
			||||||
    buf_start[msg_offset] = static_cast<uint8_t>(packet.message_type >> 8);      // type high byte
 | 
					    buf_start[msg_offset + 0] = (uint8_t) (type >> 8);         // type high byte
 | 
				
			||||||
    buf_start[msg_offset + 1] = static_cast<uint8_t>(packet.message_type);       // type low byte
 | 
					    buf_start[msg_offset + 1] = (uint8_t) type;                // type low byte
 | 
				
			||||||
    buf_start[msg_offset + 2] = static_cast<uint8_t>(packet.payload_size >> 8);  // data_len high byte
 | 
					    buf_start[msg_offset + 2] = (uint8_t) (payload_len >> 8);  // data_len high byte
 | 
				
			||||||
    buf_start[msg_offset + 3] = static_cast<uint8_t>(packet.payload_size);       // data_len low byte
 | 
					    buf_start[msg_offset + 3] = (uint8_t) payload_len;         // data_len low byte
 | 
				
			||||||
    // payload data is already in the buffer starting at offset + 7
 | 
					    // payload data is already in the buffer starting at offset + 7
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Make sure we have space for MAC
 | 
					    // Make sure we have space for MAC
 | 
				
			||||||
@@ -663,8 +673,7 @@ APIError APINoiseFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer, st
 | 
				
			|||||||
    // Encrypt the message in place
 | 
					    // Encrypt the message in place
 | 
				
			||||||
    NoiseBuffer mbuf;
 | 
					    NoiseBuffer mbuf;
 | 
				
			||||||
    noise_buffer_init(mbuf);
 | 
					    noise_buffer_init(mbuf);
 | 
				
			||||||
    noise_buffer_set_inout(mbuf, buf_start + msg_offset, 4 + packet.payload_size,
 | 
					    noise_buffer_set_inout(mbuf, buf_start + msg_offset, msg_len, msg_len + frame_footer_size_);
 | 
				
			||||||
                           4 + packet.payload_size + frame_footer_size_);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    int err = noise_cipherstate_encrypt(send_cipher_, &mbuf);
 | 
					    int err = noise_cipherstate_encrypt(send_cipher_, &mbuf);
 | 
				
			||||||
    if (err != 0) {
 | 
					    if (err != 0) {
 | 
				
			||||||
@@ -674,12 +683,14 @@ APIError APINoiseFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer, st
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Fill in the encrypted size
 | 
					    // Fill in the encrypted size
 | 
				
			||||||
    buf_start[1] = static_cast<uint8_t>(mbuf.size >> 8);
 | 
					    buf_start[1] = (uint8_t) (mbuf.size >> 8);
 | 
				
			||||||
    buf_start[2] = static_cast<uint8_t>(mbuf.size);
 | 
					    buf_start[2] = (uint8_t) mbuf.size;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Add iovec for this encrypted packet
 | 
					    // Add iovec for this encrypted packet
 | 
				
			||||||
    this->reusable_iovs_.push_back(
 | 
					    struct iovec iov;
 | 
				
			||||||
        {buf_start, static_cast<size_t>(3 + mbuf.size)});  // indicator + size + encrypted data
 | 
					    iov.iov_base = buf_start;
 | 
				
			||||||
 | 
					    iov.iov_len = 3 + mbuf.size;  // indicator + size + encrypted data
 | 
				
			||||||
 | 
					    this->reusable_iovs_.push_back(iov);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Send all encrypted packets in one writev call
 | 
					  // Send all encrypted packets in one writev call
 | 
				
			||||||
@@ -854,9 +865,17 @@ APIError APIPlaintextFrameHelper::try_read_frame_(ParsedFrame *frame) {
 | 
				
			|||||||
    // Try to get to at least 3 bytes total (indicator + 2 varint bytes), then read one byte at a time
 | 
					    // Try to get to at least 3 bytes total (indicator + 2 varint bytes), then read one byte at a time
 | 
				
			||||||
    ssize_t received =
 | 
					    ssize_t received =
 | 
				
			||||||
        this->socket_->read(&rx_header_buf_[rx_header_buf_pos_], rx_header_buf_pos_ < 3 ? 3 - rx_header_buf_pos_ : 1);
 | 
					        this->socket_->read(&rx_header_buf_[rx_header_buf_pos_], rx_header_buf_pos_ < 3 ? 3 - rx_header_buf_pos_ : 1);
 | 
				
			||||||
    APIError err = handle_socket_read_result_(received);
 | 
					    if (received == -1) {
 | 
				
			||||||
    if (err != APIError::OK) {
 | 
					      if (errno == EWOULDBLOCK || errno == EAGAIN) {
 | 
				
			||||||
      return err;
 | 
					        return APIError::WOULD_BLOCK;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      state_ = State::FAILED;
 | 
				
			||||||
 | 
					      HELPER_LOG("Socket read failed with errno %d", errno);
 | 
				
			||||||
 | 
					      return APIError::SOCKET_READ_FAILED;
 | 
				
			||||||
 | 
					    } else if (received == 0) {
 | 
				
			||||||
 | 
					      state_ = State::FAILED;
 | 
				
			||||||
 | 
					      HELPER_LOG("Connection closed");
 | 
				
			||||||
 | 
					      return APIError::CONNECTION_CLOSED;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // If this was the first read, validate the indicator byte
 | 
					    // If this was the first read, validate the indicator byte
 | 
				
			||||||
@@ -940,9 +959,17 @@ APIError APIPlaintextFrameHelper::try_read_frame_(ParsedFrame *frame) {
 | 
				
			|||||||
    // more data to read
 | 
					    // more data to read
 | 
				
			||||||
    uint16_t to_read = rx_header_parsed_len_ - rx_buf_len_;
 | 
					    uint16_t to_read = rx_header_parsed_len_ - rx_buf_len_;
 | 
				
			||||||
    ssize_t received = this->socket_->read(&rx_buf_[rx_buf_len_], to_read);
 | 
					    ssize_t received = this->socket_->read(&rx_buf_[rx_buf_len_], to_read);
 | 
				
			||||||
    APIError err = handle_socket_read_result_(received);
 | 
					    if (received == -1) {
 | 
				
			||||||
    if (err != APIError::OK) {
 | 
					      if (errno == EWOULDBLOCK || errno == EAGAIN) {
 | 
				
			||||||
      return err;
 | 
					        return APIError::WOULD_BLOCK;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      state_ = State::FAILED;
 | 
				
			||||||
 | 
					      HELPER_LOG("Socket read failed with errno %d", errno);
 | 
				
			||||||
 | 
					      return APIError::SOCKET_READ_FAILED;
 | 
				
			||||||
 | 
					    } else if (received == 0) {
 | 
				
			||||||
 | 
					      state_ = State::FAILED;
 | 
				
			||||||
 | 
					      HELPER_LOG("Connection closed");
 | 
				
			||||||
 | 
					      return APIError::CONNECTION_CLOSED;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    rx_buf_len_ += static_cast<uint16_t>(received);
 | 
					    rx_buf_len_ += static_cast<uint16_t>(received);
 | 
				
			||||||
    if (static_cast<uint16_t>(received) != to_read) {
 | 
					    if (static_cast<uint16_t>(received) != to_read) {
 | 
				
			||||||
@@ -1001,12 +1028,19 @@ APIError APIPlaintextFrameHelper::read_packet(ReadPacketBuffer *buffer) {
 | 
				
			|||||||
  buffer->type = rx_header_parsed_type_;
 | 
					  buffer->type = rx_header_parsed_type_;
 | 
				
			||||||
  return APIError::OK;
 | 
					  return APIError::OK;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
APIError APIPlaintextFrameHelper::write_protobuf_packet(uint8_t type, ProtoWriteBuffer buffer) {
 | 
					APIError APIPlaintextFrameHelper::write_protobuf_packet(uint16_t type, ProtoWriteBuffer buffer) {
 | 
				
			||||||
  PacketInfo packet{type, 0, static_cast<uint16_t>(buffer.get_buffer()->size() - frame_header_padding_)};
 | 
					  std::vector<uint8_t> *raw_buffer = buffer.get_buffer();
 | 
				
			||||||
  return write_protobuf_packets(buffer, std::span<const PacketInfo>(&packet, 1));
 | 
					  uint16_t payload_len = static_cast<uint16_t>(raw_buffer->size() - frame_header_padding_);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  // Use write_protobuf_packets with a single packet
 | 
				
			||||||
 | 
					  std::vector<PacketInfo> packets;
 | 
				
			||||||
 | 
					  packets.emplace_back(type, 0, payload_len);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  return write_protobuf_packets(buffer, packets);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
APIError APIPlaintextFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer, std::span<const PacketInfo> packets) {
 | 
					APIError APIPlaintextFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer,
 | 
				
			||||||
 | 
					                                                         const std::vector<PacketInfo> &packets) {
 | 
				
			||||||
  if (state_ != State::DATA) {
 | 
					  if (state_ != State::DATA) {
 | 
				
			||||||
    return APIError::BAD_STATE;
 | 
					    return APIError::BAD_STATE;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@@ -1016,15 +1050,17 @@ APIError APIPlaintextFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  std::vector<uint8_t> *raw_buffer = buffer.get_buffer();
 | 
					  std::vector<uint8_t> *raw_buffer = buffer.get_buffer();
 | 
				
			||||||
  uint8_t *buffer_data = raw_buffer->data();  // Cache buffer pointer
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  this->reusable_iovs_.clear();
 | 
					  this->reusable_iovs_.clear();
 | 
				
			||||||
  this->reusable_iovs_.reserve(packets.size());
 | 
					  this->reusable_iovs_.reserve(packets.size());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  for (const auto &packet : packets) {
 | 
					  for (const auto &packet : packets) {
 | 
				
			||||||
 | 
					    uint16_t type = packet.message_type;
 | 
				
			||||||
 | 
					    uint16_t offset = packet.offset;
 | 
				
			||||||
 | 
					    uint16_t payload_len = packet.payload_size;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Calculate varint sizes for header layout
 | 
					    // Calculate varint sizes for header layout
 | 
				
			||||||
    uint8_t size_varint_len = api::ProtoSize::varint(static_cast<uint32_t>(packet.payload_size));
 | 
					    uint8_t size_varint_len = api::ProtoSize::varint(static_cast<uint32_t>(payload_len));
 | 
				
			||||||
    uint8_t type_varint_len = api::ProtoSize::varint(static_cast<uint32_t>(packet.message_type));
 | 
					    uint8_t type_varint_len = api::ProtoSize::varint(static_cast<uint32_t>(type));
 | 
				
			||||||
    uint8_t total_header_len = 1 + size_varint_len + type_varint_len;
 | 
					    uint8_t total_header_len = 1 + size_varint_len + type_varint_len;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Calculate where to start writing the header
 | 
					    // Calculate where to start writing the header
 | 
				
			||||||
@@ -1052,20 +1088,23 @@ APIError APIPlaintextFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer
 | 
				
			|||||||
    //
 | 
					    //
 | 
				
			||||||
    // The message starts at offset + frame_header_padding_
 | 
					    // The message starts at offset + frame_header_padding_
 | 
				
			||||||
    // So we write the header starting at offset + frame_header_padding_ - total_header_len
 | 
					    // So we write the header starting at offset + frame_header_padding_ - total_header_len
 | 
				
			||||||
    uint8_t *buf_start = buffer_data + packet.offset;
 | 
					    uint8_t *buf_start = raw_buffer->data() + offset;
 | 
				
			||||||
    uint32_t header_offset = frame_header_padding_ - total_header_len;
 | 
					    uint32_t header_offset = frame_header_padding_ - total_header_len;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Write the plaintext header
 | 
					    // Write the plaintext header
 | 
				
			||||||
    buf_start[header_offset] = 0x00;  // indicator
 | 
					    buf_start[header_offset] = 0x00;  // indicator
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Encode varints directly into buffer
 | 
					    // Encode size varint directly into buffer
 | 
				
			||||||
    ProtoVarInt(packet.payload_size).encode_to_buffer_unchecked(buf_start + header_offset + 1, size_varint_len);
 | 
					    ProtoVarInt(payload_len).encode_to_buffer_unchecked(buf_start + header_offset + 1, size_varint_len);
 | 
				
			||||||
    ProtoVarInt(packet.message_type)
 | 
					
 | 
				
			||||||
        .encode_to_buffer_unchecked(buf_start + header_offset + 1 + size_varint_len, type_varint_len);
 | 
					    // Encode type varint directly into buffer
 | 
				
			||||||
 | 
					    ProtoVarInt(type).encode_to_buffer_unchecked(buf_start + header_offset + 1 + size_varint_len, type_varint_len);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Add iovec for this packet (header + payload)
 | 
					    // Add iovec for this packet (header + payload)
 | 
				
			||||||
    this->reusable_iovs_.push_back(
 | 
					    struct iovec iov;
 | 
				
			||||||
        {buf_start + header_offset, static_cast<size_t>(total_header_len + packet.payload_size)});
 | 
					    iov.iov_base = buf_start + header_offset;
 | 
				
			||||||
 | 
					    iov.iov_len = total_header_len + payload_len;
 | 
				
			||||||
 | 
					    this->reusable_iovs_.push_back(iov);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Send all packets in one writev call
 | 
					  // Send all packets in one writev call
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,7 +2,6 @@
 | 
				
			|||||||
#include <cstdint>
 | 
					#include <cstdint>
 | 
				
			||||||
#include <deque>
 | 
					#include <deque>
 | 
				
			||||||
#include <limits>
 | 
					#include <limits>
 | 
				
			||||||
#include <span>
 | 
					 | 
				
			||||||
#include <utility>
 | 
					#include <utility>
 | 
				
			||||||
#include <vector>
 | 
					#include <vector>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -30,11 +29,13 @@ struct ReadPacketBuffer {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// Packed packet info structure to minimize memory usage
 | 
					// Packed packet info structure to minimize memory usage
 | 
				
			||||||
struct PacketInfo {
 | 
					struct PacketInfo {
 | 
				
			||||||
  uint16_t offset;        // Offset in buffer where message starts
 | 
					  uint16_t message_type;  // 2 bytes
 | 
				
			||||||
  uint16_t payload_size;  // Size of the message payload
 | 
					  uint16_t offset;        // 2 bytes (sufficient for packet size ~1460 bytes)
 | 
				
			||||||
  uint8_t message_type;   // Message type (0-255)
 | 
					  uint16_t payload_size;  // 2 bytes (up to 65535 bytes)
 | 
				
			||||||
 | 
					  uint16_t padding;       // 2 byte (for alignment)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  PacketInfo(uint8_t type, uint16_t off, uint16_t size) : offset(off), payload_size(size), message_type(type) {}
 | 
					  PacketInfo(uint16_t type, uint16_t off, uint16_t size)
 | 
				
			||||||
 | 
					      : message_type(type), offset(off), payload_size(size), padding(0) {}
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
enum class APIError : uint16_t {
 | 
					enum class APIError : uint16_t {
 | 
				
			||||||
@@ -96,11 +97,11 @@ class APIFrameHelper {
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
  // Give this helper a name for logging
 | 
					  // Give this helper a name for logging
 | 
				
			||||||
  void set_log_info(std::string info) { info_ = std::move(info); }
 | 
					  void set_log_info(std::string info) { info_ = std::move(info); }
 | 
				
			||||||
  virtual APIError write_protobuf_packet(uint8_t type, ProtoWriteBuffer buffer) = 0;
 | 
					  virtual APIError write_protobuf_packet(uint16_t type, ProtoWriteBuffer buffer) = 0;
 | 
				
			||||||
  // Write multiple protobuf packets in a single operation
 | 
					  // Write multiple protobuf packets in a single operation
 | 
				
			||||||
  // packets contains (message_type, offset, length) for each message in the buffer
 | 
					  // packets contains (message_type, offset, length) for each message in the buffer
 | 
				
			||||||
  // The buffer contains all messages with appropriate padding before each
 | 
					  // The buffer contains all messages with appropriate padding before each
 | 
				
			||||||
  virtual APIError write_protobuf_packets(ProtoWriteBuffer buffer, std::span<const PacketInfo> packets) = 0;
 | 
					  virtual APIError write_protobuf_packets(ProtoWriteBuffer buffer, const std::vector<PacketInfo> &packets) = 0;
 | 
				
			||||||
  // Get the frame header padding required by this protocol
 | 
					  // Get the frame header padding required by this protocol
 | 
				
			||||||
  virtual uint8_t frame_header_padding() = 0;
 | 
					  virtual uint8_t frame_header_padding() = 0;
 | 
				
			||||||
  // Get the frame footer size required by this protocol
 | 
					  // Get the frame footer size required by this protocol
 | 
				
			||||||
@@ -174,9 +175,6 @@ class APIFrameHelper {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  // Common initialization for both plaintext and noise protocols
 | 
					  // Common initialization for both plaintext and noise protocols
 | 
				
			||||||
  APIError init_common_();
 | 
					  APIError init_common_();
 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Helper method to handle socket read results
 | 
					 | 
				
			||||||
  APIError handle_socket_read_result_(ssize_t received);
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_API_NOISE
 | 
					#ifdef USE_API_NOISE
 | 
				
			||||||
@@ -195,8 +193,8 @@ class APINoiseFrameHelper : public APIFrameHelper {
 | 
				
			|||||||
  APIError init() override;
 | 
					  APIError init() override;
 | 
				
			||||||
  APIError loop() override;
 | 
					  APIError loop() override;
 | 
				
			||||||
  APIError read_packet(ReadPacketBuffer *buffer) override;
 | 
					  APIError read_packet(ReadPacketBuffer *buffer) override;
 | 
				
			||||||
  APIError write_protobuf_packet(uint8_t type, ProtoWriteBuffer buffer) override;
 | 
					  APIError write_protobuf_packet(uint16_t type, ProtoWriteBuffer buffer) override;
 | 
				
			||||||
  APIError write_protobuf_packets(ProtoWriteBuffer buffer, std::span<const PacketInfo> packets) override;
 | 
					  APIError write_protobuf_packets(ProtoWriteBuffer buffer, const std::vector<PacketInfo> &packets) override;
 | 
				
			||||||
  // Get the frame header padding required by this protocol
 | 
					  // Get the frame header padding required by this protocol
 | 
				
			||||||
  uint8_t frame_header_padding() override { return frame_header_padding_; }
 | 
					  uint8_t frame_header_padding() override { return frame_header_padding_; }
 | 
				
			||||||
  // Get the frame footer size required by this protocol
 | 
					  // Get the frame footer size required by this protocol
 | 
				
			||||||
@@ -249,8 +247,8 @@ class APIPlaintextFrameHelper : public APIFrameHelper {
 | 
				
			|||||||
  APIError init() override;
 | 
					  APIError init() override;
 | 
				
			||||||
  APIError loop() override;
 | 
					  APIError loop() override;
 | 
				
			||||||
  APIError read_packet(ReadPacketBuffer *buffer) override;
 | 
					  APIError read_packet(ReadPacketBuffer *buffer) override;
 | 
				
			||||||
  APIError write_protobuf_packet(uint8_t type, ProtoWriteBuffer buffer) override;
 | 
					  APIError write_protobuf_packet(uint16_t type, ProtoWriteBuffer buffer) override;
 | 
				
			||||||
  APIError write_protobuf_packets(ProtoWriteBuffer buffer, std::span<const PacketInfo> packets) override;
 | 
					  APIError write_protobuf_packets(ProtoWriteBuffer buffer, const std::vector<PacketInfo> &packets) override;
 | 
				
			||||||
  uint8_t frame_header_padding() override { return frame_header_padding_; }
 | 
					  uint8_t frame_header_padding() override { return frame_header_padding_; }
 | 
				
			||||||
  // Get the frame footer size required by this protocol
 | 
					  // Get the frame footer size required by this protocol
 | 
				
			||||||
  uint8_t frame_footer_size() override { return frame_footer_size_; }
 | 
					  uint8_t frame_footer_size() override { return frame_footer_size_; }
 | 
				
			||||||
 
 | 
				
			|||||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -14,7 +14,7 @@ void APIServerConnectionBase::log_send_message_(const char *name, const std::str
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void APIServerConnectionBase::read_message(uint32_t msg_size, uint32_t msg_type, uint8_t *msg_data) {
 | 
					bool APIServerConnectionBase::read_message(uint32_t msg_size, uint32_t msg_type, uint8_t *msg_data) {
 | 
				
			||||||
  switch (msg_type) {
 | 
					  switch (msg_type) {
 | 
				
			||||||
    case 1: {
 | 
					    case 1: {
 | 
				
			||||||
      HelloRequest msg;
 | 
					      HelloRequest msg;
 | 
				
			||||||
@@ -106,50 +106,50 @@ void APIServerConnectionBase::read_message(uint32_t msg_size, uint32_t msg_type,
 | 
				
			|||||||
      this->on_subscribe_logs_request(msg);
 | 
					      this->on_subscribe_logs_request(msg);
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#ifdef USE_COVER
 | 
					 | 
				
			||||||
    case 30: {
 | 
					    case 30: {
 | 
				
			||||||
 | 
					#ifdef USE_COVER
 | 
				
			||||||
      CoverCommandRequest msg;
 | 
					      CoverCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_cover_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_cover_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_cover_command_request(msg);
 | 
					      this->on_cover_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_FAN
 | 
					 | 
				
			||||||
    case 31: {
 | 
					    case 31: {
 | 
				
			||||||
 | 
					#ifdef USE_FAN
 | 
				
			||||||
      FanCommandRequest msg;
 | 
					      FanCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_fan_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_fan_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_fan_command_request(msg);
 | 
					      this->on_fan_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_LIGHT
 | 
					 | 
				
			||||||
    case 32: {
 | 
					    case 32: {
 | 
				
			||||||
 | 
					#ifdef USE_LIGHT
 | 
				
			||||||
      LightCommandRequest msg;
 | 
					      LightCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_light_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_light_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_light_command_request(msg);
 | 
					      this->on_light_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_SWITCH
 | 
					 | 
				
			||||||
    case 33: {
 | 
					    case 33: {
 | 
				
			||||||
 | 
					#ifdef USE_SWITCH
 | 
				
			||||||
      SwitchCommandRequest msg;
 | 
					      SwitchCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_switch_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_switch_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_switch_command_request(msg);
 | 
					      this->on_switch_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
    case 34: {
 | 
					    case 34: {
 | 
				
			||||||
      SubscribeHomeassistantServicesRequest msg;
 | 
					      SubscribeHomeassistantServicesRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
@@ -195,7 +195,6 @@ void APIServerConnectionBase::read_message(uint32_t msg_size, uint32_t msg_type,
 | 
				
			|||||||
      this->on_home_assistant_state_response(msg);
 | 
					      this->on_home_assistant_state_response(msg);
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
    case 42: {
 | 
					    case 42: {
 | 
				
			||||||
      ExecuteServiceRequest msg;
 | 
					      ExecuteServiceRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
@@ -205,395 +204,395 @@ void APIServerConnectionBase::read_message(uint32_t msg_size, uint32_t msg_type,
 | 
				
			|||||||
      this->on_execute_service_request(msg);
 | 
					      this->on_execute_service_request(msg);
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_CAMERA
 | 
					 | 
				
			||||||
    case 45: {
 | 
					    case 45: {
 | 
				
			||||||
 | 
					#ifdef USE_ESP32_CAMERA
 | 
				
			||||||
      CameraImageRequest msg;
 | 
					      CameraImageRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_camera_image_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_camera_image_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_camera_image_request(msg);
 | 
					      this->on_camera_image_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_CLIMATE
 | 
					 | 
				
			||||||
    case 48: {
 | 
					    case 48: {
 | 
				
			||||||
 | 
					#ifdef USE_CLIMATE
 | 
				
			||||||
      ClimateCommandRequest msg;
 | 
					      ClimateCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_climate_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_climate_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_climate_command_request(msg);
 | 
					      this->on_climate_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_NUMBER
 | 
					 | 
				
			||||||
    case 51: {
 | 
					    case 51: {
 | 
				
			||||||
 | 
					#ifdef USE_NUMBER
 | 
				
			||||||
      NumberCommandRequest msg;
 | 
					      NumberCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_number_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_number_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_number_command_request(msg);
 | 
					      this->on_number_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_SELECT
 | 
					 | 
				
			||||||
    case 54: {
 | 
					    case 54: {
 | 
				
			||||||
 | 
					#ifdef USE_SELECT
 | 
				
			||||||
      SelectCommandRequest msg;
 | 
					      SelectCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_select_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_select_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_select_command_request(msg);
 | 
					      this->on_select_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_SIREN
 | 
					 | 
				
			||||||
    case 57: {
 | 
					    case 57: {
 | 
				
			||||||
 | 
					#ifdef USE_SIREN
 | 
				
			||||||
      SirenCommandRequest msg;
 | 
					      SirenCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_siren_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_siren_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_siren_command_request(msg);
 | 
					      this->on_siren_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_LOCK
 | 
					 | 
				
			||||||
    case 60: {
 | 
					    case 60: {
 | 
				
			||||||
 | 
					#ifdef USE_LOCK
 | 
				
			||||||
      LockCommandRequest msg;
 | 
					      LockCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_lock_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_lock_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_lock_command_request(msg);
 | 
					      this->on_lock_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_BUTTON
 | 
					 | 
				
			||||||
    case 62: {
 | 
					    case 62: {
 | 
				
			||||||
 | 
					#ifdef USE_BUTTON
 | 
				
			||||||
      ButtonCommandRequest msg;
 | 
					      ButtonCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_button_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_button_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_button_command_request(msg);
 | 
					      this->on_button_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_MEDIA_PLAYER
 | 
					 | 
				
			||||||
    case 65: {
 | 
					    case 65: {
 | 
				
			||||||
 | 
					#ifdef USE_MEDIA_PLAYER
 | 
				
			||||||
      MediaPlayerCommandRequest msg;
 | 
					      MediaPlayerCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_media_player_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_media_player_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_media_player_command_request(msg);
 | 
					      this->on_media_player_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_BLUETOOTH_PROXY
 | 
					 | 
				
			||||||
    case 66: {
 | 
					    case 66: {
 | 
				
			||||||
 | 
					#ifdef USE_BLUETOOTH_PROXY
 | 
				
			||||||
      SubscribeBluetoothLEAdvertisementsRequest msg;
 | 
					      SubscribeBluetoothLEAdvertisementsRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_subscribe_bluetooth_le_advertisements_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_subscribe_bluetooth_le_advertisements_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_subscribe_bluetooth_le_advertisements_request(msg);
 | 
					      this->on_subscribe_bluetooth_le_advertisements_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_BLUETOOTH_PROXY
 | 
					 | 
				
			||||||
    case 68: {
 | 
					    case 68: {
 | 
				
			||||||
 | 
					#ifdef USE_BLUETOOTH_PROXY
 | 
				
			||||||
      BluetoothDeviceRequest msg;
 | 
					      BluetoothDeviceRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_bluetooth_device_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_bluetooth_device_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_bluetooth_device_request(msg);
 | 
					      this->on_bluetooth_device_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_BLUETOOTH_PROXY
 | 
					 | 
				
			||||||
    case 70: {
 | 
					    case 70: {
 | 
				
			||||||
 | 
					#ifdef USE_BLUETOOTH_PROXY
 | 
				
			||||||
      BluetoothGATTGetServicesRequest msg;
 | 
					      BluetoothGATTGetServicesRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_bluetooth_gatt_get_services_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_bluetooth_gatt_get_services_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_bluetooth_gatt_get_services_request(msg);
 | 
					      this->on_bluetooth_gatt_get_services_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_BLUETOOTH_PROXY
 | 
					 | 
				
			||||||
    case 73: {
 | 
					    case 73: {
 | 
				
			||||||
 | 
					#ifdef USE_BLUETOOTH_PROXY
 | 
				
			||||||
      BluetoothGATTReadRequest msg;
 | 
					      BluetoothGATTReadRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_bluetooth_gatt_read_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_bluetooth_gatt_read_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_bluetooth_gatt_read_request(msg);
 | 
					      this->on_bluetooth_gatt_read_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_BLUETOOTH_PROXY
 | 
					 | 
				
			||||||
    case 75: {
 | 
					    case 75: {
 | 
				
			||||||
 | 
					#ifdef USE_BLUETOOTH_PROXY
 | 
				
			||||||
      BluetoothGATTWriteRequest msg;
 | 
					      BluetoothGATTWriteRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_bluetooth_gatt_write_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_bluetooth_gatt_write_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_bluetooth_gatt_write_request(msg);
 | 
					      this->on_bluetooth_gatt_write_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_BLUETOOTH_PROXY
 | 
					 | 
				
			||||||
    case 76: {
 | 
					    case 76: {
 | 
				
			||||||
 | 
					#ifdef USE_BLUETOOTH_PROXY
 | 
				
			||||||
      BluetoothGATTReadDescriptorRequest msg;
 | 
					      BluetoothGATTReadDescriptorRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_bluetooth_gatt_read_descriptor_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_bluetooth_gatt_read_descriptor_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_bluetooth_gatt_read_descriptor_request(msg);
 | 
					      this->on_bluetooth_gatt_read_descriptor_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_BLUETOOTH_PROXY
 | 
					 | 
				
			||||||
    case 77: {
 | 
					    case 77: {
 | 
				
			||||||
 | 
					#ifdef USE_BLUETOOTH_PROXY
 | 
				
			||||||
      BluetoothGATTWriteDescriptorRequest msg;
 | 
					      BluetoothGATTWriteDescriptorRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_bluetooth_gatt_write_descriptor_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_bluetooth_gatt_write_descriptor_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_bluetooth_gatt_write_descriptor_request(msg);
 | 
					      this->on_bluetooth_gatt_write_descriptor_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_BLUETOOTH_PROXY
 | 
					 | 
				
			||||||
    case 78: {
 | 
					    case 78: {
 | 
				
			||||||
 | 
					#ifdef USE_BLUETOOTH_PROXY
 | 
				
			||||||
      BluetoothGATTNotifyRequest msg;
 | 
					      BluetoothGATTNotifyRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_bluetooth_gatt_notify_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_bluetooth_gatt_notify_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_bluetooth_gatt_notify_request(msg);
 | 
					      this->on_bluetooth_gatt_notify_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_BLUETOOTH_PROXY
 | 
					 | 
				
			||||||
    case 80: {
 | 
					    case 80: {
 | 
				
			||||||
 | 
					#ifdef USE_BLUETOOTH_PROXY
 | 
				
			||||||
      SubscribeBluetoothConnectionsFreeRequest msg;
 | 
					      SubscribeBluetoothConnectionsFreeRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_subscribe_bluetooth_connections_free_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_subscribe_bluetooth_connections_free_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_subscribe_bluetooth_connections_free_request(msg);
 | 
					      this->on_subscribe_bluetooth_connections_free_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_BLUETOOTH_PROXY
 | 
					 | 
				
			||||||
    case 87: {
 | 
					    case 87: {
 | 
				
			||||||
 | 
					#ifdef USE_BLUETOOTH_PROXY
 | 
				
			||||||
      UnsubscribeBluetoothLEAdvertisementsRequest msg;
 | 
					      UnsubscribeBluetoothLEAdvertisementsRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_unsubscribe_bluetooth_le_advertisements_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_unsubscribe_bluetooth_le_advertisements_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_unsubscribe_bluetooth_le_advertisements_request(msg);
 | 
					      this->on_unsubscribe_bluetooth_le_advertisements_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_VOICE_ASSISTANT
 | 
					 | 
				
			||||||
    case 89: {
 | 
					    case 89: {
 | 
				
			||||||
 | 
					#ifdef USE_VOICE_ASSISTANT
 | 
				
			||||||
      SubscribeVoiceAssistantRequest msg;
 | 
					      SubscribeVoiceAssistantRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_subscribe_voice_assistant_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_subscribe_voice_assistant_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_subscribe_voice_assistant_request(msg);
 | 
					      this->on_subscribe_voice_assistant_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_VOICE_ASSISTANT
 | 
					 | 
				
			||||||
    case 91: {
 | 
					    case 91: {
 | 
				
			||||||
 | 
					#ifdef USE_VOICE_ASSISTANT
 | 
				
			||||||
      VoiceAssistantResponse msg;
 | 
					      VoiceAssistantResponse msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_voice_assistant_response: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_voice_assistant_response: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_voice_assistant_response(msg);
 | 
					      this->on_voice_assistant_response(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_VOICE_ASSISTANT
 | 
					 | 
				
			||||||
    case 92: {
 | 
					    case 92: {
 | 
				
			||||||
 | 
					#ifdef USE_VOICE_ASSISTANT
 | 
				
			||||||
      VoiceAssistantEventResponse msg;
 | 
					      VoiceAssistantEventResponse msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_voice_assistant_event_response: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_voice_assistant_event_response: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_voice_assistant_event_response(msg);
 | 
					      this->on_voice_assistant_event_response(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_ALARM_CONTROL_PANEL
 | 
					 | 
				
			||||||
    case 96: {
 | 
					    case 96: {
 | 
				
			||||||
 | 
					#ifdef USE_ALARM_CONTROL_PANEL
 | 
				
			||||||
      AlarmControlPanelCommandRequest msg;
 | 
					      AlarmControlPanelCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_alarm_control_panel_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_alarm_control_panel_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_alarm_control_panel_command_request(msg);
 | 
					      this->on_alarm_control_panel_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_TEXT
 | 
					 | 
				
			||||||
    case 99: {
 | 
					    case 99: {
 | 
				
			||||||
 | 
					#ifdef USE_TEXT
 | 
				
			||||||
      TextCommandRequest msg;
 | 
					      TextCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_text_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_text_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_text_command_request(msg);
 | 
					      this->on_text_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_DATETIME_DATE
 | 
					 | 
				
			||||||
    case 102: {
 | 
					    case 102: {
 | 
				
			||||||
 | 
					#ifdef USE_DATETIME_DATE
 | 
				
			||||||
      DateCommandRequest msg;
 | 
					      DateCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_date_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_date_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_date_command_request(msg);
 | 
					      this->on_date_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_DATETIME_TIME
 | 
					 | 
				
			||||||
    case 105: {
 | 
					    case 105: {
 | 
				
			||||||
 | 
					#ifdef USE_DATETIME_TIME
 | 
				
			||||||
      TimeCommandRequest msg;
 | 
					      TimeCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_time_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_time_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_time_command_request(msg);
 | 
					      this->on_time_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_VOICE_ASSISTANT
 | 
					 | 
				
			||||||
    case 106: {
 | 
					    case 106: {
 | 
				
			||||||
 | 
					#ifdef USE_VOICE_ASSISTANT
 | 
				
			||||||
      VoiceAssistantAudio msg;
 | 
					      VoiceAssistantAudio msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_voice_assistant_audio: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_voice_assistant_audio: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_voice_assistant_audio(msg);
 | 
					      this->on_voice_assistant_audio(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_VALVE
 | 
					 | 
				
			||||||
    case 111: {
 | 
					    case 111: {
 | 
				
			||||||
 | 
					#ifdef USE_VALVE
 | 
				
			||||||
      ValveCommandRequest msg;
 | 
					      ValveCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_valve_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_valve_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_valve_command_request(msg);
 | 
					      this->on_valve_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_DATETIME_DATETIME
 | 
					 | 
				
			||||||
    case 114: {
 | 
					    case 114: {
 | 
				
			||||||
 | 
					#ifdef USE_DATETIME_DATETIME
 | 
				
			||||||
      DateTimeCommandRequest msg;
 | 
					      DateTimeCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_date_time_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_date_time_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_date_time_command_request(msg);
 | 
					      this->on_date_time_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_VOICE_ASSISTANT
 | 
					 | 
				
			||||||
    case 115: {
 | 
					    case 115: {
 | 
				
			||||||
 | 
					#ifdef USE_VOICE_ASSISTANT
 | 
				
			||||||
      VoiceAssistantTimerEventResponse msg;
 | 
					      VoiceAssistantTimerEventResponse msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_voice_assistant_timer_event_response: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_voice_assistant_timer_event_response: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_voice_assistant_timer_event_response(msg);
 | 
					      this->on_voice_assistant_timer_event_response(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_UPDATE
 | 
					 | 
				
			||||||
    case 118: {
 | 
					    case 118: {
 | 
				
			||||||
 | 
					#ifdef USE_UPDATE
 | 
				
			||||||
      UpdateCommandRequest msg;
 | 
					      UpdateCommandRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_update_command_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_update_command_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_update_command_request(msg);
 | 
					      this->on_update_command_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_VOICE_ASSISTANT
 | 
					 | 
				
			||||||
    case 119: {
 | 
					    case 119: {
 | 
				
			||||||
 | 
					#ifdef USE_VOICE_ASSISTANT
 | 
				
			||||||
      VoiceAssistantAnnounceRequest msg;
 | 
					      VoiceAssistantAnnounceRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_voice_assistant_announce_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_voice_assistant_announce_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_voice_assistant_announce_request(msg);
 | 
					      this->on_voice_assistant_announce_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_VOICE_ASSISTANT
 | 
					 | 
				
			||||||
    case 121: {
 | 
					    case 121: {
 | 
				
			||||||
 | 
					#ifdef USE_VOICE_ASSISTANT
 | 
				
			||||||
      VoiceAssistantConfigurationRequest msg;
 | 
					      VoiceAssistantConfigurationRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_voice_assistant_configuration_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_voice_assistant_configuration_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_voice_assistant_configuration_request(msg);
 | 
					      this->on_voice_assistant_configuration_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_VOICE_ASSISTANT
 | 
					 | 
				
			||||||
    case 123: {
 | 
					    case 123: {
 | 
				
			||||||
 | 
					#ifdef USE_VOICE_ASSISTANT
 | 
				
			||||||
      VoiceAssistantSetConfiguration msg;
 | 
					      VoiceAssistantSetConfiguration msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_voice_assistant_set_configuration: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_voice_assistant_set_configuration: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_voice_assistant_set_configuration(msg);
 | 
					      this->on_voice_assistant_set_configuration(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_API_NOISE
 | 
					 | 
				
			||||||
    case 124: {
 | 
					    case 124: {
 | 
				
			||||||
 | 
					#ifdef USE_API_NOISE
 | 
				
			||||||
      NoiseEncryptionSetKeyRequest msg;
 | 
					      NoiseEncryptionSetKeyRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_noise_encryption_set_key_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_noise_encryption_set_key_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_noise_encryption_set_key_request(msg);
 | 
					      this->on_noise_encryption_set_key_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_BLUETOOTH_PROXY
 | 
					 | 
				
			||||||
    case 127: {
 | 
					    case 127: {
 | 
				
			||||||
 | 
					#ifdef USE_BLUETOOTH_PROXY
 | 
				
			||||||
      BluetoothScannerSetModeRequest msg;
 | 
					      BluetoothScannerSetModeRequest msg;
 | 
				
			||||||
      msg.decode(msg_data, msg_size);
 | 
					      msg.decode(msg_data, msg_size);
 | 
				
			||||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
					#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
				
			||||||
      ESP_LOGVV(TAG, "on_bluetooth_scanner_set_mode_request: %s", msg.dump().c_str());
 | 
					      ESP_LOGVV(TAG, "on_bluetooth_scanner_set_mode_request: %s", msg.dump().c_str());
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
      this->on_bluetooth_scanner_set_mode_request(msg);
 | 
					      this->on_bluetooth_scanner_set_mode_request(msg);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
    default:
 | 
					    default:
 | 
				
			||||||
      break;
 | 
					      return false;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void APIServerConnection::on_hello_request(const HelloRequest &msg) {
 | 
					void APIServerConnection::on_hello_request(const HelloRequest &msg) {
 | 
				
			||||||
@@ -662,13 +661,11 @@ void APIServerConnection::on_get_time_request(const GetTimeRequest &msg) {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
void APIServerConnection::on_execute_service_request(const ExecuteServiceRequest &msg) {
 | 
					void APIServerConnection::on_execute_service_request(const ExecuteServiceRequest &msg) {
 | 
				
			||||||
  if (this->check_authenticated_()) {
 | 
					  if (this->check_authenticated_()) {
 | 
				
			||||||
    this->execute_service(msg);
 | 
					    this->execute_service(msg);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_API_NOISE
 | 
					#ifdef USE_API_NOISE
 | 
				
			||||||
void APIServerConnection::on_noise_encryption_set_key_request(const NoiseEncryptionSetKeyRequest &msg) {
 | 
					void APIServerConnection::on_noise_encryption_set_key_request(const NoiseEncryptionSetKeyRequest &msg) {
 | 
				
			||||||
  if (this->check_authenticated_()) {
 | 
					  if (this->check_authenticated_()) {
 | 
				
			||||||
@@ -686,7 +683,7 @@ void APIServerConnection::on_button_command_request(const ButtonCommandRequest &
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_CAMERA
 | 
					#ifdef USE_ESP32_CAMERA
 | 
				
			||||||
void APIServerConnection::on_camera_image_request(const CameraImageRequest &msg) {
 | 
					void APIServerConnection::on_camera_image_request(const CameraImageRequest &msg) {
 | 
				
			||||||
  if (this->check_authenticated_()) {
 | 
					  if (this->check_authenticated_()) {
 | 
				
			||||||
    this->camera_image(msg);
 | 
					    this->camera_image(msg);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,9 +2,8 @@
 | 
				
			|||||||
// See script/api_protobuf/api_protobuf.py
 | 
					// See script/api_protobuf/api_protobuf.py
 | 
				
			||||||
#pragma once
 | 
					#pragma once
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "esphome/core/defines.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include "api_pb2.h"
 | 
					#include "api_pb2.h"
 | 
				
			||||||
 | 
					#include "esphome/core/defines.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace esphome {
 | 
					namespace esphome {
 | 
				
			||||||
namespace api {
 | 
					namespace api {
 | 
				
			||||||
@@ -69,11 +68,9 @@ class APIServerConnectionBase : public ProtoService {
 | 
				
			|||||||
  virtual void on_get_time_request(const GetTimeRequest &value){};
 | 
					  virtual void on_get_time_request(const GetTimeRequest &value){};
 | 
				
			||||||
  virtual void on_get_time_response(const GetTimeResponse &value){};
 | 
					  virtual void on_get_time_response(const GetTimeResponse &value){};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
  virtual void on_execute_service_request(const ExecuteServiceRequest &value){};
 | 
					  virtual void on_execute_service_request(const ExecuteServiceRequest &value){};
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_CAMERA
 | 
					#ifdef USE_ESP32_CAMERA
 | 
				
			||||||
  virtual void on_camera_image_request(const CameraImageRequest &value){};
 | 
					  virtual void on_camera_image_request(const CameraImageRequest &value){};
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -202,7 +199,7 @@ class APIServerConnectionBase : public ProtoService {
 | 
				
			|||||||
  virtual void on_update_command_request(const UpdateCommandRequest &value){};
 | 
					  virtual void on_update_command_request(const UpdateCommandRequest &value){};
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  void read_message(uint32_t msg_size, uint32_t msg_type, uint8_t *msg_data) override;
 | 
					  bool read_message(uint32_t msg_size, uint32_t msg_type, uint8_t *msg_data) override;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class APIServerConnection : public APIServerConnectionBase {
 | 
					class APIServerConnection : public APIServerConnectionBase {
 | 
				
			||||||
@@ -218,16 +215,14 @@ class APIServerConnection : public APIServerConnectionBase {
 | 
				
			|||||||
  virtual void subscribe_homeassistant_services(const SubscribeHomeassistantServicesRequest &msg) = 0;
 | 
					  virtual void subscribe_homeassistant_services(const SubscribeHomeassistantServicesRequest &msg) = 0;
 | 
				
			||||||
  virtual void subscribe_home_assistant_states(const SubscribeHomeAssistantStatesRequest &msg) = 0;
 | 
					  virtual void subscribe_home_assistant_states(const SubscribeHomeAssistantStatesRequest &msg) = 0;
 | 
				
			||||||
  virtual GetTimeResponse get_time(const GetTimeRequest &msg) = 0;
 | 
					  virtual GetTimeResponse get_time(const GetTimeRequest &msg) = 0;
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
  virtual void execute_service(const ExecuteServiceRequest &msg) = 0;
 | 
					  virtual void execute_service(const ExecuteServiceRequest &msg) = 0;
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_API_NOISE
 | 
					#ifdef USE_API_NOISE
 | 
				
			||||||
  virtual NoiseEncryptionSetKeyResponse noise_encryption_set_key(const NoiseEncryptionSetKeyRequest &msg) = 0;
 | 
					  virtual NoiseEncryptionSetKeyResponse noise_encryption_set_key(const NoiseEncryptionSetKeyRequest &msg) = 0;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_BUTTON
 | 
					#ifdef USE_BUTTON
 | 
				
			||||||
  virtual void button_command(const ButtonCommandRequest &msg) = 0;
 | 
					  virtual void button_command(const ButtonCommandRequest &msg) = 0;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_CAMERA
 | 
					#ifdef USE_ESP32_CAMERA
 | 
				
			||||||
  virtual void camera_image(const CameraImageRequest &msg) = 0;
 | 
					  virtual void camera_image(const CameraImageRequest &msg) = 0;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_CLIMATE
 | 
					#ifdef USE_CLIMATE
 | 
				
			||||||
@@ -337,16 +332,14 @@ class APIServerConnection : public APIServerConnectionBase {
 | 
				
			|||||||
  void on_subscribe_homeassistant_services_request(const SubscribeHomeassistantServicesRequest &msg) override;
 | 
					  void on_subscribe_homeassistant_services_request(const SubscribeHomeassistantServicesRequest &msg) override;
 | 
				
			||||||
  void on_subscribe_home_assistant_states_request(const SubscribeHomeAssistantStatesRequest &msg) override;
 | 
					  void on_subscribe_home_assistant_states_request(const SubscribeHomeAssistantStatesRequest &msg) override;
 | 
				
			||||||
  void on_get_time_request(const GetTimeRequest &msg) override;
 | 
					  void on_get_time_request(const GetTimeRequest &msg) override;
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
  void on_execute_service_request(const ExecuteServiceRequest &msg) override;
 | 
					  void on_execute_service_request(const ExecuteServiceRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_API_NOISE
 | 
					#ifdef USE_API_NOISE
 | 
				
			||||||
  void on_noise_encryption_set_key_request(const NoiseEncryptionSetKeyRequest &msg) override;
 | 
					  void on_noise_encryption_set_key_request(const NoiseEncryptionSetKeyRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_BUTTON
 | 
					#ifdef USE_BUTTON
 | 
				
			||||||
  void on_button_command_request(const ButtonCommandRequest &msg) override;
 | 
					  void on_button_command_request(const ButtonCommandRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_CAMERA
 | 
					#ifdef USE_ESP32_CAMERA
 | 
				
			||||||
  void on_camera_image_request(const CameraImageRequest &msg) override;
 | 
					  void on_camera_image_request(const CameraImageRequest &msg) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_CLIMATE
 | 
					#ifdef USE_CLIMATE
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										361
									
								
								esphome/components/api/api_pb2_size.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										361
									
								
								esphome/components/api/api_pb2_size.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,361 @@
 | 
				
			|||||||
 | 
					#pragma once
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "proto.h"
 | 
				
			||||||
 | 
					#include <cstdint>
 | 
				
			||||||
 | 
					#include <string>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					namespace esphome {
 | 
				
			||||||
 | 
					namespace api {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					class ProtoSize {
 | 
				
			||||||
 | 
					 public:
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief ProtoSize class for Protocol Buffer serialization size calculation
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * This class provides static methods to calculate the exact byte counts needed
 | 
				
			||||||
 | 
					   * for encoding various Protocol Buffer field types. All methods are designed to be
 | 
				
			||||||
 | 
					   * efficient for the common case where many fields have default values.
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * Implements Protocol Buffer encoding size calculation according to:
 | 
				
			||||||
 | 
					   * https://protobuf.dev/programming-guides/encoding/
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * Key features:
 | 
				
			||||||
 | 
					   * - Early-return optimization for zero/default values
 | 
				
			||||||
 | 
					   * - Direct total_size updates to avoid unnecessary additions
 | 
				
			||||||
 | 
					   * - Specialized handling for different field types according to protobuf spec
 | 
				
			||||||
 | 
					   * - Templated helpers for repeated fields and messages
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates the size in bytes needed to encode a uint32_t value as a varint
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * @param value The uint32_t value to calculate size for
 | 
				
			||||||
 | 
					   * @return The number of bytes needed to encode the value
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline uint32_t varint(uint32_t value) {
 | 
				
			||||||
 | 
					    // Optimized varint size calculation using leading zeros
 | 
				
			||||||
 | 
					    // Each 7 bits requires one byte in the varint encoding
 | 
				
			||||||
 | 
					    if (value < 128)
 | 
				
			||||||
 | 
					      return 1;  // 7 bits, common case for small values
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // For larger values, count bytes needed based on the position of the highest bit set
 | 
				
			||||||
 | 
					    if (value < 16384) {
 | 
				
			||||||
 | 
					      return 2;  // 14 bits
 | 
				
			||||||
 | 
					    } else if (value < 2097152) {
 | 
				
			||||||
 | 
					      return 3;  // 21 bits
 | 
				
			||||||
 | 
					    } else if (value < 268435456) {
 | 
				
			||||||
 | 
					      return 4;  // 28 bits
 | 
				
			||||||
 | 
					    } else {
 | 
				
			||||||
 | 
					      return 5;  // 32 bits (maximum for uint32_t)
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates the size in bytes needed to encode a uint64_t value as a varint
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * @param value The uint64_t value to calculate size for
 | 
				
			||||||
 | 
					   * @return The number of bytes needed to encode the value
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline uint32_t varint(uint64_t value) {
 | 
				
			||||||
 | 
					    // Handle common case of values fitting in uint32_t (vast majority of use cases)
 | 
				
			||||||
 | 
					    if (value <= UINT32_MAX) {
 | 
				
			||||||
 | 
					      return varint(static_cast<uint32_t>(value));
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // For larger values, determine size based on highest bit position
 | 
				
			||||||
 | 
					    if (value < (1ULL << 35)) {
 | 
				
			||||||
 | 
					      return 5;  // 35 bits
 | 
				
			||||||
 | 
					    } else if (value < (1ULL << 42)) {
 | 
				
			||||||
 | 
					      return 6;  // 42 bits
 | 
				
			||||||
 | 
					    } else if (value < (1ULL << 49)) {
 | 
				
			||||||
 | 
					      return 7;  // 49 bits
 | 
				
			||||||
 | 
					    } else if (value < (1ULL << 56)) {
 | 
				
			||||||
 | 
					      return 8;  // 56 bits
 | 
				
			||||||
 | 
					    } else if (value < (1ULL << 63)) {
 | 
				
			||||||
 | 
					      return 9;  // 63 bits
 | 
				
			||||||
 | 
					    } else {
 | 
				
			||||||
 | 
					      return 10;  // 64 bits (maximum for uint64_t)
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates the size in bytes needed to encode an int32_t value as a varint
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * Special handling is needed for negative values, which are sign-extended to 64 bits
 | 
				
			||||||
 | 
					   * in Protocol Buffers, resulting in a 10-byte varint.
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * @param value The int32_t value to calculate size for
 | 
				
			||||||
 | 
					   * @return The number of bytes needed to encode the value
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline uint32_t varint(int32_t value) {
 | 
				
			||||||
 | 
					    // Negative values are sign-extended to 64 bits in protocol buffers,
 | 
				
			||||||
 | 
					    // which always results in a 10-byte varint for negative int32
 | 
				
			||||||
 | 
					    if (value < 0) {
 | 
				
			||||||
 | 
					      return 10;  // Negative int32 is always 10 bytes long
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    // For non-negative values, use the uint32_t implementation
 | 
				
			||||||
 | 
					    return varint(static_cast<uint32_t>(value));
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates the size in bytes needed to encode an int64_t value as a varint
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * @param value The int64_t value to calculate size for
 | 
				
			||||||
 | 
					   * @return The number of bytes needed to encode the value
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline uint32_t varint(int64_t value) {
 | 
				
			||||||
 | 
					    // For int64_t, we convert to uint64_t and calculate the size
 | 
				
			||||||
 | 
					    // This works because the bit pattern determines the encoding size,
 | 
				
			||||||
 | 
					    // and we've handled negative int32 values as a special case above
 | 
				
			||||||
 | 
					    return varint(static_cast<uint64_t>(value));
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates the size in bytes needed to encode a field ID and wire type
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * @param field_id The field identifier
 | 
				
			||||||
 | 
					   * @param type The wire type value (from the WireType enum in the protobuf spec)
 | 
				
			||||||
 | 
					   * @return The number of bytes needed to encode the field ID and wire type
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline uint32_t field(uint32_t field_id, uint32_t type) {
 | 
				
			||||||
 | 
					    uint32_t tag = (field_id << 3) | (type & 0b111);
 | 
				
			||||||
 | 
					    return varint(tag);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Common parameters for all add_*_field methods
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * All add_*_field methods follow these common patterns:
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * @param total_size Reference to the total message size to update
 | 
				
			||||||
 | 
					   * @param field_id_size Pre-calculated size of the field ID in bytes
 | 
				
			||||||
 | 
					   * @param value The value to calculate size for (type varies)
 | 
				
			||||||
 | 
					   * @param force Whether to calculate size even if the value is default/zero/empty
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * Each method follows this implementation pattern:
 | 
				
			||||||
 | 
					   * 1. Skip calculation if value is default (0, false, empty) and not forced
 | 
				
			||||||
 | 
					   * 2. Calculate the size based on the field's encoding rules
 | 
				
			||||||
 | 
					   * 3. Add the field_id_size + calculated value size to total_size
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the size of an int32 field to the total message size
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline void add_int32_field(uint32_t &total_size, uint32_t field_id_size, int32_t value, bool force = false) {
 | 
				
			||||||
 | 
					    // Skip calculation if value is zero and not forced
 | 
				
			||||||
 | 
					    if (value == 0 && !force) {
 | 
				
			||||||
 | 
					      return;  // No need to update total_size
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Calculate and directly add to total_size
 | 
				
			||||||
 | 
					    if (value < 0) {
 | 
				
			||||||
 | 
					      // Negative values are encoded as 10-byte varints in protobuf
 | 
				
			||||||
 | 
					      total_size += field_id_size + 10;
 | 
				
			||||||
 | 
					    } else {
 | 
				
			||||||
 | 
					      // For non-negative values, use the standard varint size
 | 
				
			||||||
 | 
					      total_size += field_id_size + varint(static_cast<uint32_t>(value));
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the size of a uint32 field to the total message size
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline void add_uint32_field(uint32_t &total_size, uint32_t field_id_size, uint32_t value,
 | 
				
			||||||
 | 
					                                      bool force = false) {
 | 
				
			||||||
 | 
					    // Skip calculation if value is zero and not forced
 | 
				
			||||||
 | 
					    if (value == 0 && !force) {
 | 
				
			||||||
 | 
					      return;  // No need to update total_size
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Calculate and directly add to total_size
 | 
				
			||||||
 | 
					    total_size += field_id_size + varint(value);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the size of a boolean field to the total message size
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline void add_bool_field(uint32_t &total_size, uint32_t field_id_size, bool value, bool force = false) {
 | 
				
			||||||
 | 
					    // Skip calculation if value is false and not forced
 | 
				
			||||||
 | 
					    if (!value && !force) {
 | 
				
			||||||
 | 
					      return;  // No need to update total_size
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Boolean fields always use 1 byte when true
 | 
				
			||||||
 | 
					    total_size += field_id_size + 1;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the size of a fixed field to the total message size
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * Fixed fields always take exactly N bytes (4 for fixed32/float, 8 for fixed64/double).
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * @tparam NumBytes The number of bytes for this fixed field (4 or 8)
 | 
				
			||||||
 | 
					   * @param is_nonzero Whether the value is non-zero
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  template<uint32_t NumBytes>
 | 
				
			||||||
 | 
					  static inline void add_fixed_field(uint32_t &total_size, uint32_t field_id_size, bool is_nonzero,
 | 
				
			||||||
 | 
					                                     bool force = false) {
 | 
				
			||||||
 | 
					    // Skip calculation if value is zero and not forced
 | 
				
			||||||
 | 
					    if (!is_nonzero && !force) {
 | 
				
			||||||
 | 
					      return;  // No need to update total_size
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Fixed fields always take exactly NumBytes
 | 
				
			||||||
 | 
					    total_size += field_id_size + NumBytes;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the size of an enum field to the total message size
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * Enum fields are encoded as uint32 varints.
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline void add_enum_field(uint32_t &total_size, uint32_t field_id_size, uint32_t value, bool force = false) {
 | 
				
			||||||
 | 
					    // Skip calculation if value is zero and not forced
 | 
				
			||||||
 | 
					    if (value == 0 && !force) {
 | 
				
			||||||
 | 
					      return;  // No need to update total_size
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Enums are encoded as uint32
 | 
				
			||||||
 | 
					    total_size += field_id_size + varint(value);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the size of a sint32 field to the total message size
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * Sint32 fields use ZigZag encoding, which is more efficient for negative values.
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline void add_sint32_field(uint32_t &total_size, uint32_t field_id_size, int32_t value, bool force = false) {
 | 
				
			||||||
 | 
					    // Skip calculation if value is zero and not forced
 | 
				
			||||||
 | 
					    if (value == 0 && !force) {
 | 
				
			||||||
 | 
					      return;  // No need to update total_size
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // ZigZag encoding for sint32: (n << 1) ^ (n >> 31)
 | 
				
			||||||
 | 
					    uint32_t zigzag = (static_cast<uint32_t>(value) << 1) ^ (static_cast<uint32_t>(value >> 31));
 | 
				
			||||||
 | 
					    total_size += field_id_size + varint(zigzag);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the size of an int64 field to the total message size
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline void add_int64_field(uint32_t &total_size, uint32_t field_id_size, int64_t value, bool force = false) {
 | 
				
			||||||
 | 
					    // Skip calculation if value is zero and not forced
 | 
				
			||||||
 | 
					    if (value == 0 && !force) {
 | 
				
			||||||
 | 
					      return;  // No need to update total_size
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Calculate and directly add to total_size
 | 
				
			||||||
 | 
					    total_size += field_id_size + varint(value);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the size of a uint64 field to the total message size
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline void add_uint64_field(uint32_t &total_size, uint32_t field_id_size, uint64_t value,
 | 
				
			||||||
 | 
					                                      bool force = false) {
 | 
				
			||||||
 | 
					    // Skip calculation if value is zero and not forced
 | 
				
			||||||
 | 
					    if (value == 0 && !force) {
 | 
				
			||||||
 | 
					      return;  // No need to update total_size
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Calculate and directly add to total_size
 | 
				
			||||||
 | 
					    total_size += field_id_size + varint(value);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the size of a sint64 field to the total message size
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * Sint64 fields use ZigZag encoding, which is more efficient for negative values.
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline void add_sint64_field(uint32_t &total_size, uint32_t field_id_size, int64_t value, bool force = false) {
 | 
				
			||||||
 | 
					    // Skip calculation if value is zero and not forced
 | 
				
			||||||
 | 
					    if (value == 0 && !force) {
 | 
				
			||||||
 | 
					      return;  // No need to update total_size
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // ZigZag encoding for sint64: (n << 1) ^ (n >> 63)
 | 
				
			||||||
 | 
					    uint64_t zigzag = (static_cast<uint64_t>(value) << 1) ^ (static_cast<uint64_t>(value >> 63));
 | 
				
			||||||
 | 
					    total_size += field_id_size + varint(zigzag);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the size of a string/bytes field to the total message size
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline void add_string_field(uint32_t &total_size, uint32_t field_id_size, const std::string &str,
 | 
				
			||||||
 | 
					                                      bool force = false) {
 | 
				
			||||||
 | 
					    // Skip calculation if string is empty and not forced
 | 
				
			||||||
 | 
					    if (str.empty() && !force) {
 | 
				
			||||||
 | 
					      return;  // No need to update total_size
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Calculate and directly add to total_size
 | 
				
			||||||
 | 
					    const uint32_t str_size = static_cast<uint32_t>(str.size());
 | 
				
			||||||
 | 
					    total_size += field_id_size + varint(str_size) + str_size;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the size of a nested message field to the total message size
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * This helper function directly updates the total_size reference if the nested size
 | 
				
			||||||
 | 
					   * is greater than zero or force is true.
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * @param nested_size The pre-calculated size of the nested message
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  static inline void add_message_field(uint32_t &total_size, uint32_t field_id_size, uint32_t nested_size,
 | 
				
			||||||
 | 
					                                       bool force = false) {
 | 
				
			||||||
 | 
					    // Skip calculation if nested message is empty and not forced
 | 
				
			||||||
 | 
					    if (nested_size == 0 && !force) {
 | 
				
			||||||
 | 
					      return;  // No need to update total_size
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Calculate and directly add to total_size
 | 
				
			||||||
 | 
					    // Field ID + length varint + nested message content
 | 
				
			||||||
 | 
					    total_size += field_id_size + varint(nested_size) + nested_size;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the size of a nested message field to the total message size
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * This templated version directly takes a message object, calculates its size internally,
 | 
				
			||||||
 | 
					   * and updates the total_size reference. This eliminates the need for a temporary variable
 | 
				
			||||||
 | 
					   * at the call site.
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * @tparam MessageType The type of the nested message (inferred from parameter)
 | 
				
			||||||
 | 
					   * @param message The nested message object
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  template<typename MessageType>
 | 
				
			||||||
 | 
					  static inline void add_message_object(uint32_t &total_size, uint32_t field_id_size, const MessageType &message,
 | 
				
			||||||
 | 
					                                        bool force = false) {
 | 
				
			||||||
 | 
					    uint32_t nested_size = 0;
 | 
				
			||||||
 | 
					    message.calculate_size(nested_size);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Use the base implementation with the calculated nested_size
 | 
				
			||||||
 | 
					    add_message_field(total_size, field_id_size, nested_size, force);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  /**
 | 
				
			||||||
 | 
					   * @brief Calculates and adds the sizes of all messages in a repeated field to the total message size
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * This helper processes a vector of message objects, calculating the size for each message
 | 
				
			||||||
 | 
					   * and adding it to the total size.
 | 
				
			||||||
 | 
					   *
 | 
				
			||||||
 | 
					   * @tparam MessageType The type of the nested messages in the vector
 | 
				
			||||||
 | 
					   * @param messages Vector of message objects
 | 
				
			||||||
 | 
					   */
 | 
				
			||||||
 | 
					  template<typename MessageType>
 | 
				
			||||||
 | 
					  static inline void add_repeated_message(uint32_t &total_size, uint32_t field_id_size,
 | 
				
			||||||
 | 
					                                          const std::vector<MessageType> &messages) {
 | 
				
			||||||
 | 
					    // Skip if the vector is empty
 | 
				
			||||||
 | 
					    if (messages.empty()) {
 | 
				
			||||||
 | 
					      return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // For repeated fields, always use force=true
 | 
				
			||||||
 | 
					    for (const auto &message : messages) {
 | 
				
			||||||
 | 
					      add_message_object(total_size, field_id_size, message, true);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					}  // namespace api
 | 
				
			||||||
 | 
					}  // namespace esphome
 | 
				
			||||||
@@ -96,30 +96,30 @@ void APIServer::setup() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#ifdef USE_LOGGER
 | 
					#ifdef USE_LOGGER
 | 
				
			||||||
  if (logger::global_logger != nullptr) {
 | 
					  if (logger::global_logger != nullptr) {
 | 
				
			||||||
    logger::global_logger->add_on_log_callback(
 | 
					    logger::global_logger->add_on_log_callback([this](int level, const char *tag, const char *message) {
 | 
				
			||||||
        [this](int level, const char *tag, const char *message, size_t message_len) {
 | 
					      if (this->shutting_down_) {
 | 
				
			||||||
          if (this->shutting_down_) {
 | 
					        // Don't try to send logs during shutdown
 | 
				
			||||||
            // Don't try to send logs during shutdown
 | 
					        // as it could result in a recursion and
 | 
				
			||||||
            // as it could result in a recursion and
 | 
					        // we would be filling a buffer we are trying to clear
 | 
				
			||||||
            // we would be filling a buffer we are trying to clear
 | 
					        return;
 | 
				
			||||||
            return;
 | 
					      }
 | 
				
			||||||
          }
 | 
					      for (auto &c : this->clients_) {
 | 
				
			||||||
          for (auto &c : this->clients_) {
 | 
					        if (!c->remove_)
 | 
				
			||||||
            if (!c->flags_.remove)
 | 
					          c->try_send_log_message(level, tag, message);
 | 
				
			||||||
              c->try_send_log_message(level, tag, message, message_len);
 | 
					      }
 | 
				
			||||||
          }
 | 
					    });
 | 
				
			||||||
        });
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_CAMERA
 | 
					#ifdef USE_ESP32_CAMERA
 | 
				
			||||||
  if (camera::Camera::instance() != nullptr && !camera::Camera::instance()->is_internal()) {
 | 
					  if (esp32_camera::global_esp32_camera != nullptr && !esp32_camera::global_esp32_camera->is_internal()) {
 | 
				
			||||||
    camera::Camera::instance()->add_image_callback([this](const std::shared_ptr<camera::CameraImage> &image) {
 | 
					    esp32_camera::global_esp32_camera->add_image_callback(
 | 
				
			||||||
      for (auto &c : this->clients_) {
 | 
					        [this](const std::shared_ptr<esp32_camera::CameraImage> &image) {
 | 
				
			||||||
        if (!c->flags_.remove)
 | 
					          for (auto &c : this->clients_) {
 | 
				
			||||||
          c->set_camera_state(image);
 | 
					            if (!c->remove_)
 | 
				
			||||||
      }
 | 
					              c->set_camera_state(image);
 | 
				
			||||||
    });
 | 
					          }
 | 
				
			||||||
 | 
					        });
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -176,7 +176,7 @@ void APIServer::loop() {
 | 
				
			|||||||
  while (client_index < this->clients_.size()) {
 | 
					  while (client_index < this->clients_.size()) {
 | 
				
			||||||
    auto &client = this->clients_[client_index];
 | 
					    auto &client = this->clients_[client_index];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (!client->flags_.remove) {
 | 
					    if (!client->remove_) {
 | 
				
			||||||
      // Common case: process active client
 | 
					      // Common case: process active client
 | 
				
			||||||
      client->loop();
 | 
					      client->loop();
 | 
				
			||||||
      client_index++;
 | 
					      client_index++;
 | 
				
			||||||
@@ -184,9 +184,7 @@ void APIServer::loop() {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Rare case: handle disconnection
 | 
					    // Rare case: handle disconnection
 | 
				
			||||||
#ifdef USE_API_CLIENT_DISCONNECTED_TRIGGER
 | 
					 | 
				
			||||||
    this->client_disconnected_trigger_->trigger(client->client_info_, client->client_peername_);
 | 
					    this->client_disconnected_trigger_->trigger(client->client_info_, client->client_peername_);
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
    ESP_LOGV(TAG, "Remove connection %s", client->client_info_.c_str());
 | 
					    ESP_LOGV(TAG, "Remove connection %s", client->client_info_.c_str());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Swap with the last element and pop (avoids expensive vector shifts)
 | 
					    // Swap with the last element and pop (avoids expensive vector shifts)
 | 
				
			||||||
@@ -218,7 +216,6 @@ void APIServer::dump_config() {
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_API_PASSWORD
 | 
					 | 
				
			||||||
bool APIServer::uses_password() const { return !this->password_.empty(); }
 | 
					bool APIServer::uses_password() const { return !this->password_.empty(); }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool APIServer::check_password(const std::string &password) const {
 | 
					bool APIServer::check_password(const std::string &password) const {
 | 
				
			||||||
@@ -249,129 +246,192 @@ bool APIServer::check_password(const std::string &password) const {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  return result == 0;
 | 
					  return result == 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
void APIServer::handle_disconnect(APIConnection *conn) {}
 | 
					void APIServer::handle_disconnect(APIConnection *conn) {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Macro for entities without extra parameters
 | 
					 | 
				
			||||||
#define API_DISPATCH_UPDATE(entity_type, entity_name) \
 | 
					 | 
				
			||||||
  void APIServer::on_##entity_name##_update(entity_type *obj) { /* NOLINT(bugprone-macro-parentheses) */ \
 | 
					 | 
				
			||||||
    if (obj->is_internal()) \
 | 
					 | 
				
			||||||
      return; \
 | 
					 | 
				
			||||||
    for (auto &c : this->clients_) \
 | 
					 | 
				
			||||||
      c->send_##entity_name##_state(obj); \
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// Macro for entities with extra parameters (but parameters not used in send)
 | 
					 | 
				
			||||||
#define API_DISPATCH_UPDATE_IGNORE_PARAMS(entity_type, entity_name, ...) \
 | 
					 | 
				
			||||||
  void APIServer::on_##entity_name##_update(entity_type *obj, __VA_ARGS__) { /* NOLINT(bugprone-macro-parentheses) */ \
 | 
					 | 
				
			||||||
    if (obj->is_internal()) \
 | 
					 | 
				
			||||||
      return; \
 | 
					 | 
				
			||||||
    for (auto &c : this->clients_) \
 | 
					 | 
				
			||||||
      c->send_##entity_name##_state(obj); \
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifdef USE_BINARY_SENSOR
 | 
					#ifdef USE_BINARY_SENSOR
 | 
				
			||||||
API_DISPATCH_UPDATE(binary_sensor::BinarySensor, binary_sensor)
 | 
					void APIServer::on_binary_sensor_update(binary_sensor::BinarySensor *obj) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_binary_sensor_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_COVER
 | 
					#ifdef USE_COVER
 | 
				
			||||||
API_DISPATCH_UPDATE(cover::Cover, cover)
 | 
					void APIServer::on_cover_update(cover::Cover *obj) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_cover_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_FAN
 | 
					#ifdef USE_FAN
 | 
				
			||||||
API_DISPATCH_UPDATE(fan::Fan, fan)
 | 
					void APIServer::on_fan_update(fan::Fan *obj) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_fan_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_LIGHT
 | 
					#ifdef USE_LIGHT
 | 
				
			||||||
API_DISPATCH_UPDATE(light::LightState, light)
 | 
					void APIServer::on_light_update(light::LightState *obj) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_light_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_SENSOR
 | 
					#ifdef USE_SENSOR
 | 
				
			||||||
API_DISPATCH_UPDATE_IGNORE_PARAMS(sensor::Sensor, sensor, float state)
 | 
					void APIServer::on_sensor_update(sensor::Sensor *obj, float state) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_sensor_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_SWITCH
 | 
					#ifdef USE_SWITCH
 | 
				
			||||||
API_DISPATCH_UPDATE_IGNORE_PARAMS(switch_::Switch, switch, bool state)
 | 
					void APIServer::on_switch_update(switch_::Switch *obj, bool state) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_switch_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_TEXT_SENSOR
 | 
					#ifdef USE_TEXT_SENSOR
 | 
				
			||||||
API_DISPATCH_UPDATE_IGNORE_PARAMS(text_sensor::TextSensor, text_sensor, const std::string &state)
 | 
					void APIServer::on_text_sensor_update(text_sensor::TextSensor *obj, const std::string &state) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_text_sensor_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_CLIMATE
 | 
					#ifdef USE_CLIMATE
 | 
				
			||||||
API_DISPATCH_UPDATE(climate::Climate, climate)
 | 
					void APIServer::on_climate_update(climate::Climate *obj) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_climate_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_NUMBER
 | 
					#ifdef USE_NUMBER
 | 
				
			||||||
API_DISPATCH_UPDATE_IGNORE_PARAMS(number::Number, number, float state)
 | 
					void APIServer::on_number_update(number::Number *obj, float state) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_number_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_DATETIME_DATE
 | 
					#ifdef USE_DATETIME_DATE
 | 
				
			||||||
API_DISPATCH_UPDATE(datetime::DateEntity, date)
 | 
					void APIServer::on_date_update(datetime::DateEntity *obj) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_date_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_DATETIME_TIME
 | 
					#ifdef USE_DATETIME_TIME
 | 
				
			||||||
API_DISPATCH_UPDATE(datetime::TimeEntity, time)
 | 
					void APIServer::on_time_update(datetime::TimeEntity *obj) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_time_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_DATETIME_DATETIME
 | 
					#ifdef USE_DATETIME_DATETIME
 | 
				
			||||||
API_DISPATCH_UPDATE(datetime::DateTimeEntity, datetime)
 | 
					void APIServer::on_datetime_update(datetime::DateTimeEntity *obj) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_datetime_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_TEXT
 | 
					#ifdef USE_TEXT
 | 
				
			||||||
API_DISPATCH_UPDATE_IGNORE_PARAMS(text::Text, text, const std::string &state)
 | 
					void APIServer::on_text_update(text::Text *obj, const std::string &state) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_text_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_SELECT
 | 
					#ifdef USE_SELECT
 | 
				
			||||||
API_DISPATCH_UPDATE_IGNORE_PARAMS(select::Select, select, const std::string &state, size_t index)
 | 
					void APIServer::on_select_update(select::Select *obj, const std::string &state, size_t index) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_select_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_LOCK
 | 
					#ifdef USE_LOCK
 | 
				
			||||||
API_DISPATCH_UPDATE(lock::Lock, lock)
 | 
					void APIServer::on_lock_update(lock::Lock *obj) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_lock_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_VALVE
 | 
					#ifdef USE_VALVE
 | 
				
			||||||
API_DISPATCH_UPDATE(valve::Valve, valve)
 | 
					void APIServer::on_valve_update(valve::Valve *obj) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_valve_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_MEDIA_PLAYER
 | 
					#ifdef USE_MEDIA_PLAYER
 | 
				
			||||||
API_DISPATCH_UPDATE(media_player::MediaPlayer, media_player)
 | 
					void APIServer::on_media_player_update(media_player::MediaPlayer *obj) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_media_player_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_EVENT
 | 
					#ifdef USE_EVENT
 | 
				
			||||||
// Event is a special case - it's the only entity that passes extra parameters to the send method
 | 
					 | 
				
			||||||
void APIServer::on_event(event::Event *obj, const std::string &event_type) {
 | 
					void APIServer::on_event(event::Event *obj, const std::string &event_type) {
 | 
				
			||||||
  if (obj->is_internal())
 | 
					 | 
				
			||||||
    return;
 | 
					 | 
				
			||||||
  for (auto &c : this->clients_)
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
    c->send_event(obj, event_type);
 | 
					    c->send_event(obj, event_type);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_UPDATE
 | 
					#ifdef USE_UPDATE
 | 
				
			||||||
// Update is a special case - the method is called on_update, not on_update_update
 | 
					 | 
				
			||||||
void APIServer::on_update(update::UpdateEntity *obj) {
 | 
					void APIServer::on_update(update::UpdateEntity *obj) {
 | 
				
			||||||
  if (obj->is_internal())
 | 
					 | 
				
			||||||
    return;
 | 
					 | 
				
			||||||
  for (auto &c : this->clients_)
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
    c->send_update_state(obj);
 | 
					    c->send_update_state(obj);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_ALARM_CONTROL_PANEL
 | 
					#ifdef USE_ALARM_CONTROL_PANEL
 | 
				
			||||||
API_DISPATCH_UPDATE(alarm_control_panel::AlarmControlPanel, alarm_control_panel)
 | 
					void APIServer::on_alarm_control_panel_update(alarm_control_panel::AlarmControlPanel *obj) {
 | 
				
			||||||
 | 
					  if (obj->is_internal())
 | 
				
			||||||
 | 
					    return;
 | 
				
			||||||
 | 
					  for (auto &c : this->clients_)
 | 
				
			||||||
 | 
					    c->send_alarm_control_panel_state(obj);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
float APIServer::get_setup_priority() const { return setup_priority::AFTER_WIFI; }
 | 
					float APIServer::get_setup_priority() const { return setup_priority::AFTER_WIFI; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void APIServer::set_port(uint16_t port) { this->port_ = port; }
 | 
					void APIServer::set_port(uint16_t port) { this->port_ = port; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_API_PASSWORD
 | 
					 | 
				
			||||||
void APIServer::set_password(const std::string &password) { this->password_ = password; }
 | 
					void APIServer::set_password(const std::string &password) { this->password_ = password; }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
void APIServer::set_batch_delay(uint16_t batch_delay) { this->batch_delay_ = batch_delay; }
 | 
					void APIServer::set_batch_delay(uint32_t batch_delay) { this->batch_delay_ = batch_delay; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void APIServer::send_homeassistant_service_call(const HomeassistantServiceResponse &call) {
 | 
					void APIServer::send_homeassistant_service_call(const HomeassistantServiceResponse &call) {
 | 
				
			||||||
  for (auto &client : this->clients_) {
 | 
					  for (auto &client : this->clients_) {
 | 
				
			||||||
@@ -442,7 +502,7 @@ bool APIServer::save_noise_psk(psk_t psk, bool make_active) {
 | 
				
			|||||||
#ifdef USE_HOMEASSISTANT_TIME
 | 
					#ifdef USE_HOMEASSISTANT_TIME
 | 
				
			||||||
void APIServer::request_time() {
 | 
					void APIServer::request_time() {
 | 
				
			||||||
  for (auto &client : this->clients_) {
 | 
					  for (auto &client : this->clients_) {
 | 
				
			||||||
    if (!client->flags_.remove && client->is_authenticated())
 | 
					    if (!client->remove_ && client->is_authenticated())
 | 
				
			||||||
      client->send_time_request();
 | 
					      client->send_time_request();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -466,9 +526,8 @@ void APIServer::on_shutdown() {
 | 
				
			|||||||
  for (auto &c : this->clients_) {
 | 
					  for (auto &c : this->clients_) {
 | 
				
			||||||
    if (!c->send_message(DisconnectRequest())) {
 | 
					    if (!c->send_message(DisconnectRequest())) {
 | 
				
			||||||
      // If we can't send the disconnect request directly (tx_buffer full),
 | 
					      // If we can't send the disconnect request directly (tx_buffer full),
 | 
				
			||||||
      // schedule it at the front of the batch so it will be sent with priority
 | 
					      // schedule it in the batch so it will be sent with the 5ms timer
 | 
				
			||||||
      c->schedule_message_front_(nullptr, &APIConnection::try_send_disconnect_request, DisconnectRequest::MESSAGE_TYPE,
 | 
					      c->schedule_message_(nullptr, &APIConnection::try_send_disconnect_request, DisconnectRequest::MESSAGE_TYPE);
 | 
				
			||||||
                                 DisconnectRequest::ESTIMATED_SIZE);
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,9 +12,7 @@
 | 
				
			|||||||
#include "esphome/core/log.h"
 | 
					#include "esphome/core/log.h"
 | 
				
			||||||
#include "list_entities.h"
 | 
					#include "list_entities.h"
 | 
				
			||||||
#include "subscribe_state.h"
 | 
					#include "subscribe_state.h"
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
#include "user_services.h"
 | 
					#include "user_services.h"
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <vector>
 | 
					#include <vector>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -37,15 +35,13 @@ class APIServer : public Component, public Controller {
 | 
				
			|||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
  void on_shutdown() override;
 | 
					  void on_shutdown() override;
 | 
				
			||||||
  bool teardown() override;
 | 
					  bool teardown() override;
 | 
				
			||||||
#ifdef USE_API_PASSWORD
 | 
					 | 
				
			||||||
  bool check_password(const std::string &password) const;
 | 
					  bool check_password(const std::string &password) const;
 | 
				
			||||||
  bool uses_password() const;
 | 
					  bool uses_password() const;
 | 
				
			||||||
  void set_password(const std::string &password);
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
  void set_port(uint16_t port);
 | 
					  void set_port(uint16_t port);
 | 
				
			||||||
 | 
					  void set_password(const std::string &password);
 | 
				
			||||||
  void set_reboot_timeout(uint32_t reboot_timeout);
 | 
					  void set_reboot_timeout(uint32_t reboot_timeout);
 | 
				
			||||||
  void set_batch_delay(uint16_t batch_delay);
 | 
					  void set_batch_delay(uint32_t batch_delay);
 | 
				
			||||||
  uint16_t get_batch_delay() const { return batch_delay_; }
 | 
					  uint32_t get_batch_delay() const { return batch_delay_; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Get reference to shared buffer for API connections
 | 
					  // Get reference to shared buffer for API connections
 | 
				
			||||||
  std::vector<uint8_t> &get_shared_buffer_ref() { return shared_write_buffer_; }
 | 
					  std::vector<uint8_t> &get_shared_buffer_ref() { return shared_write_buffer_; }
 | 
				
			||||||
@@ -109,9 +105,7 @@ class APIServer : public Component, public Controller {
 | 
				
			|||||||
  void on_media_player_update(media_player::MediaPlayer *obj) override;
 | 
					  void on_media_player_update(media_player::MediaPlayer *obj) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
  void send_homeassistant_service_call(const HomeassistantServiceResponse &call);
 | 
					  void send_homeassistant_service_call(const HomeassistantServiceResponse &call);
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
  void register_user_service(UserServiceDescriptor *descriptor) { this->user_services_.push_back(descriptor); }
 | 
					  void register_user_service(UserServiceDescriptor *descriptor) { this->user_services_.push_back(descriptor); }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_HOMEASSISTANT_TIME
 | 
					#ifdef USE_HOMEASSISTANT_TIME
 | 
				
			||||||
  void request_time();
 | 
					  void request_time();
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
@@ -140,49 +134,35 @@ class APIServer : public Component, public Controller {
 | 
				
			|||||||
  void get_home_assistant_state(std::string entity_id, optional<std::string> attribute,
 | 
					  void get_home_assistant_state(std::string entity_id, optional<std::string> attribute,
 | 
				
			||||||
                                std::function<void(std::string)> f);
 | 
					                                std::function<void(std::string)> f);
 | 
				
			||||||
  const std::vector<HomeAssistantStateSubscription> &get_state_subs() const;
 | 
					  const std::vector<HomeAssistantStateSubscription> &get_state_subs() const;
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
  const std::vector<UserServiceDescriptor *> &get_user_services() const { return this->user_services_; }
 | 
					  const std::vector<UserServiceDescriptor *> &get_user_services() const { return this->user_services_; }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_API_CLIENT_CONNECTED_TRIGGER
 | 
					 | 
				
			||||||
  Trigger<std::string, std::string> *get_client_connected_trigger() const { return this->client_connected_trigger_; }
 | 
					  Trigger<std::string, std::string> *get_client_connected_trigger() const { return this->client_connected_trigger_; }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_API_CLIENT_DISCONNECTED_TRIGGER
 | 
					 | 
				
			||||||
  Trigger<std::string, std::string> *get_client_disconnected_trigger() const {
 | 
					  Trigger<std::string, std::string> *get_client_disconnected_trigger() const {
 | 
				
			||||||
    return this->client_disconnected_trigger_;
 | 
					    return this->client_disconnected_trigger_;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  void schedule_reboot_timeout_();
 | 
					  void schedule_reboot_timeout_();
 | 
				
			||||||
  // Pointers and pointer-like types first (4 bytes each)
 | 
					  // Pointers and pointer-like types first (4 bytes each)
 | 
				
			||||||
  std::unique_ptr<socket::Socket> socket_ = nullptr;
 | 
					  std::unique_ptr<socket::Socket> socket_ = nullptr;
 | 
				
			||||||
#ifdef USE_API_CLIENT_CONNECTED_TRIGGER
 | 
					 | 
				
			||||||
  Trigger<std::string, std::string> *client_connected_trigger_ = new Trigger<std::string, std::string>();
 | 
					  Trigger<std::string, std::string> *client_connected_trigger_ = new Trigger<std::string, std::string>();
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_API_CLIENT_DISCONNECTED_TRIGGER
 | 
					 | 
				
			||||||
  Trigger<std::string, std::string> *client_disconnected_trigger_ = new Trigger<std::string, std::string>();
 | 
					  Trigger<std::string, std::string> *client_disconnected_trigger_ = new Trigger<std::string, std::string>();
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // 4-byte aligned types
 | 
					  // 4-byte aligned types
 | 
				
			||||||
  uint32_t reboot_timeout_{300000};
 | 
					  uint32_t reboot_timeout_{300000};
 | 
				
			||||||
 | 
					  uint32_t batch_delay_{100};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Vectors and strings (12 bytes each on 32-bit)
 | 
					  // Vectors and strings (12 bytes each on 32-bit)
 | 
				
			||||||
  std::vector<std::unique_ptr<APIConnection>> clients_;
 | 
					  std::vector<std::unique_ptr<APIConnection>> clients_;
 | 
				
			||||||
#ifdef USE_API_PASSWORD
 | 
					 | 
				
			||||||
  std::string password_;
 | 
					  std::string password_;
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
  std::vector<uint8_t> shared_write_buffer_;  // Shared proto write buffer for all connections
 | 
					  std::vector<uint8_t> shared_write_buffer_;  // Shared proto write buffer for all connections
 | 
				
			||||||
  std::vector<HomeAssistantStateSubscription> state_subs_;
 | 
					  std::vector<HomeAssistantStateSubscription> state_subs_;
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
  std::vector<UserServiceDescriptor *> user_services_;
 | 
					  std::vector<UserServiceDescriptor *> user_services_;
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Group smaller types together
 | 
					  // Group smaller types together
 | 
				
			||||||
  uint16_t port_{6053};
 | 
					  uint16_t port_{6053};
 | 
				
			||||||
  uint16_t batch_delay_{100};
 | 
					 | 
				
			||||||
  bool shutting_down_ = false;
 | 
					  bool shutting_down_ = false;
 | 
				
			||||||
  // 5 bytes used, 3 bytes padding
 | 
					  // 3 bytes used, 1 byte padding
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_API_NOISE
 | 
					#ifdef USE_API_NOISE
 | 
				
			||||||
  std::shared_ptr<APINoiseContext> noise_ctx_ = std::make_shared<APINoiseContext>();
 | 
					  std::shared_ptr<APINoiseContext> noise_ctx_ = std::make_shared<APINoiseContext>();
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,15 +4,9 @@ import asyncio
 | 
				
			|||||||
from datetime import datetime
 | 
					from datetime import datetime
 | 
				
			||||||
import logging
 | 
					import logging
 | 
				
			||||||
from typing import TYPE_CHECKING, Any
 | 
					from typing import TYPE_CHECKING, Any
 | 
				
			||||||
import warnings
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Suppress protobuf version warnings
 | 
					from aioesphomeapi import APIClient, parse_log_message
 | 
				
			||||||
with warnings.catch_warnings():
 | 
					from aioesphomeapi.log_runner import async_run
 | 
				
			||||||
    warnings.filterwarnings(
 | 
					 | 
				
			||||||
        "ignore", category=UserWarning, message=".*Protobuf gencode version.*"
 | 
					 | 
				
			||||||
    )
 | 
					 | 
				
			||||||
    from aioesphomeapi import APIClient, parse_log_message
 | 
					 | 
				
			||||||
    from aioesphomeapi.log_runner import async_run
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
from esphome.const import CONF_KEY, CONF_PASSWORD, CONF_PORT, __version__
 | 
					from esphome.const import CONF_KEY, CONF_PASSWORD, CONF_PORT, __version__
 | 
				
			||||||
from esphome.core import CORE
 | 
					from esphome.core import CORE
 | 
				
			||||||
@@ -35,8 +29,8 @@ async def async_run_logs(config: dict[str, Any], address: str) -> None:
 | 
				
			|||||||
    port: int = int(conf[CONF_PORT])
 | 
					    port: int = int(conf[CONF_PORT])
 | 
				
			||||||
    password: str = conf[CONF_PASSWORD]
 | 
					    password: str = conf[CONF_PASSWORD]
 | 
				
			||||||
    noise_psk: str | None = None
 | 
					    noise_psk: str | None = None
 | 
				
			||||||
    if (encryption := conf.get(CONF_ENCRYPTION)) and (key := encryption.get(CONF_KEY)):
 | 
					    if CONF_ENCRYPTION in conf:
 | 
				
			||||||
        noise_psk = key
 | 
					        noise_psk = conf[CONF_ENCRYPTION][CONF_KEY]
 | 
				
			||||||
    _LOGGER.info("Starting log output from %s using esphome API", address)
 | 
					    _LOGGER.info("Starting log output from %s using esphome API", address)
 | 
				
			||||||
    cli = APIClient(
 | 
					    cli = APIClient(
 | 
				
			||||||
        address,
 | 
					        address,
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,13 +3,10 @@
 | 
				
			|||||||
#include <map>
 | 
					#include <map>
 | 
				
			||||||
#include "api_server.h"
 | 
					#include "api_server.h"
 | 
				
			||||||
#ifdef USE_API
 | 
					#ifdef USE_API
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
#include "user_services.h"
 | 
					#include "user_services.h"
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
namespace esphome {
 | 
					namespace esphome {
 | 
				
			||||||
namespace api {
 | 
					namespace api {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
template<typename T, typename... Ts> class CustomAPIDeviceService : public UserServiceBase<Ts...> {
 | 
					template<typename T, typename... Ts> class CustomAPIDeviceService : public UserServiceBase<Ts...> {
 | 
				
			||||||
 public:
 | 
					 public:
 | 
				
			||||||
  CustomAPIDeviceService(const std::string &name, const std::array<std::string, sizeof...(Ts)> &arg_names, T *obj,
 | 
					  CustomAPIDeviceService(const std::string &name, const std::array<std::string, sizeof...(Ts)> &arg_names, T *obj,
 | 
				
			||||||
@@ -22,7 +19,6 @@ template<typename T, typename... Ts> class CustomAPIDeviceService : public UserS
 | 
				
			|||||||
  T *obj_;
 | 
					  T *obj_;
 | 
				
			||||||
  void (T::*callback_)(Ts...);
 | 
					  void (T::*callback_)(Ts...);
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
#endif  // USE_API_SERVICES
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
class CustomAPIDevice {
 | 
					class CustomAPIDevice {
 | 
				
			||||||
 public:
 | 
					 public:
 | 
				
			||||||
@@ -50,14 +46,12 @@ class CustomAPIDevice {
 | 
				
			|||||||
   * @param name The name of the service to register.
 | 
					   * @param name The name of the service to register.
 | 
				
			||||||
   * @param arg_names The name of the arguments for the service, must match the arguments of the function.
 | 
					   * @param arg_names The name of the arguments for the service, must match the arguments of the function.
 | 
				
			||||||
   */
 | 
					   */
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
  template<typename T, typename... Ts>
 | 
					  template<typename T, typename... Ts>
 | 
				
			||||||
  void register_service(void (T::*callback)(Ts...), const std::string &name,
 | 
					  void register_service(void (T::*callback)(Ts...), const std::string &name,
 | 
				
			||||||
                        const std::array<std::string, sizeof...(Ts)> &arg_names) {
 | 
					                        const std::array<std::string, sizeof...(Ts)> &arg_names) {
 | 
				
			||||||
    auto *service = new CustomAPIDeviceService<T, Ts...>(name, arg_names, (T *) this, callback);  // NOLINT
 | 
					    auto *service = new CustomAPIDeviceService<T, Ts...>(name, arg_names, (T *) this, callback);  // NOLINT
 | 
				
			||||||
    global_api_server->register_user_service(service);
 | 
					    global_api_server->register_user_service(service);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /** Register a custom native API service that will show up in Home Assistant.
 | 
					  /** Register a custom native API service that will show up in Home Assistant.
 | 
				
			||||||
   *
 | 
					   *
 | 
				
			||||||
@@ -77,12 +71,10 @@ class CustomAPIDevice {
 | 
				
			|||||||
   * @param callback The member function to call when the service is triggered.
 | 
					   * @param callback The member function to call when the service is triggered.
 | 
				
			||||||
   * @param name The name of the arguments for the service, must match the arguments of the function.
 | 
					   * @param name The name of the arguments for the service, must match the arguments of the function.
 | 
				
			||||||
   */
 | 
					   */
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
  template<typename T> void register_service(void (T::*callback)(), const std::string &name) {
 | 
					  template<typename T> void register_service(void (T::*callback)(), const std::string &name) {
 | 
				
			||||||
    auto *service = new CustomAPIDeviceService<T>(name, {}, (T *) this, callback);  // NOLINT
 | 
					    auto *service = new CustomAPIDeviceService<T>(name, {}, (T *) this, callback);  // NOLINT
 | 
				
			||||||
    global_api_server->register_user_service(service);
 | 
					    global_api_server->register_user_service(service);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /** Subscribe to the state (or attribute state) of an entity from Home Assistant.
 | 
					  /** Subscribe to the state (or attribute state) of an entity from Home Assistant.
 | 
				
			||||||
   *
 | 
					   *
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,18 +11,6 @@ namespace esphome {
 | 
				
			|||||||
namespace api {
 | 
					namespace api {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
template<typename... X> class TemplatableStringValue : public TemplatableValue<std::string, X...> {
 | 
					template<typename... X> class TemplatableStringValue : public TemplatableValue<std::string, X...> {
 | 
				
			||||||
 private:
 | 
					 | 
				
			||||||
  // Helper to convert value to string - handles the case where value is already a string
 | 
					 | 
				
			||||||
  template<typename T> static std::string value_to_string(T &&val) { return to_string(std::forward<T>(val)); }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Overloads for string types - needed because std::to_string doesn't support them
 | 
					 | 
				
			||||||
  static std::string value_to_string(char *val) {
 | 
					 | 
				
			||||||
    return val ? std::string(val) : std::string();
 | 
					 | 
				
			||||||
  }  // For lambdas returning char* (e.g., itoa)
 | 
					 | 
				
			||||||
  static std::string value_to_string(const char *val) { return std::string(val); }  // For lambdas returning .c_str()
 | 
					 | 
				
			||||||
  static std::string value_to_string(const std::string &val) { return val; }
 | 
					 | 
				
			||||||
  static std::string value_to_string(std::string &&val) { return std::move(val); }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 public:
 | 
					 public:
 | 
				
			||||||
  TemplatableStringValue() : TemplatableValue<std::string, X...>() {}
 | 
					  TemplatableStringValue() : TemplatableValue<std::string, X...>() {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -31,7 +19,7 @@ template<typename... X> class TemplatableStringValue : public TemplatableValue<s
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  template<typename F, enable_if_t<is_invocable<F, X...>::value, int> = 0>
 | 
					  template<typename F, enable_if_t<is_invocable<F, X...>::value, int> = 0>
 | 
				
			||||||
  TemplatableStringValue(F f)
 | 
					  TemplatableStringValue(F f)
 | 
				
			||||||
      : TemplatableValue<std::string, X...>([f](X... x) -> std::string { return value_to_string(f(x...)); }) {}
 | 
					      : TemplatableValue<std::string, X...>([f](X... x) -> std::string { return to_string(f(x...)); }) {}
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
template<typename... Ts> class TemplatableKeyValuePair {
 | 
					template<typename... Ts> class TemplatableKeyValuePair {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,6 @@
 | 
				
			|||||||
#include "list_entities.h"
 | 
					#include "list_entities.h"
 | 
				
			||||||
#ifdef USE_API
 | 
					#ifdef USE_API
 | 
				
			||||||
#include "api_connection.h"
 | 
					#include "api_connection.h"
 | 
				
			||||||
#include "api_pb2.h"
 | 
					 | 
				
			||||||
#include "esphome/core/application.h"
 | 
					#include "esphome/core/application.h"
 | 
				
			||||||
#include "esphome/core/log.h"
 | 
					#include "esphome/core/log.h"
 | 
				
			||||||
#include "esphome/core/util.h"
 | 
					#include "esphome/core/util.h"
 | 
				
			||||||
@@ -9,85 +8,153 @@
 | 
				
			|||||||
namespace esphome {
 | 
					namespace esphome {
 | 
				
			||||||
namespace api {
 | 
					namespace api {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Generate entity handler implementations using macros
 | 
					 | 
				
			||||||
#ifdef USE_BINARY_SENSOR
 | 
					#ifdef USE_BINARY_SENSOR
 | 
				
			||||||
LIST_ENTITIES_HANDLER(binary_sensor, binary_sensor::BinarySensor, ListEntitiesBinarySensorResponse)
 | 
					bool ListEntitiesIterator::on_binary_sensor(binary_sensor::BinarySensor *binary_sensor) {
 | 
				
			||||||
 | 
					  this->client_->send_binary_sensor_info(binary_sensor);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_COVER
 | 
					#ifdef USE_COVER
 | 
				
			||||||
LIST_ENTITIES_HANDLER(cover, cover::Cover, ListEntitiesCoverResponse)
 | 
					bool ListEntitiesIterator::on_cover(cover::Cover *cover) {
 | 
				
			||||||
 | 
					  this->client_->send_cover_info(cover);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_FAN
 | 
					#ifdef USE_FAN
 | 
				
			||||||
LIST_ENTITIES_HANDLER(fan, fan::Fan, ListEntitiesFanResponse)
 | 
					bool ListEntitiesIterator::on_fan(fan::Fan *fan) {
 | 
				
			||||||
 | 
					  this->client_->send_fan_info(fan);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_LIGHT
 | 
					#ifdef USE_LIGHT
 | 
				
			||||||
LIST_ENTITIES_HANDLER(light, light::LightState, ListEntitiesLightResponse)
 | 
					bool ListEntitiesIterator::on_light(light::LightState *light) {
 | 
				
			||||||
 | 
					  this->client_->send_light_info(light);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SENSOR
 | 
					#ifdef USE_SENSOR
 | 
				
			||||||
LIST_ENTITIES_HANDLER(sensor, sensor::Sensor, ListEntitiesSensorResponse)
 | 
					bool ListEntitiesIterator::on_sensor(sensor::Sensor *sensor) {
 | 
				
			||||||
 | 
					  this->client_->send_sensor_info(sensor);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SWITCH
 | 
					#ifdef USE_SWITCH
 | 
				
			||||||
LIST_ENTITIES_HANDLER(switch, switch_::Switch, ListEntitiesSwitchResponse)
 | 
					bool ListEntitiesIterator::on_switch(switch_::Switch *a_switch) {
 | 
				
			||||||
 | 
					  this->client_->send_switch_info(a_switch);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_BUTTON
 | 
					#ifdef USE_BUTTON
 | 
				
			||||||
LIST_ENTITIES_HANDLER(button, button::Button, ListEntitiesButtonResponse)
 | 
					bool ListEntitiesIterator::on_button(button::Button *button) {
 | 
				
			||||||
 | 
					  this->client_->send_button_info(button);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_TEXT_SENSOR
 | 
					#ifdef USE_TEXT_SENSOR
 | 
				
			||||||
LIST_ENTITIES_HANDLER(text_sensor, text_sensor::TextSensor, ListEntitiesTextSensorResponse)
 | 
					bool ListEntitiesIterator::on_text_sensor(text_sensor::TextSensor *text_sensor) {
 | 
				
			||||||
 | 
					  this->client_->send_text_sensor_info(text_sensor);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_LOCK
 | 
					#ifdef USE_LOCK
 | 
				
			||||||
LIST_ENTITIES_HANDLER(lock, lock::Lock, ListEntitiesLockResponse)
 | 
					bool ListEntitiesIterator::on_lock(lock::Lock *a_lock) {
 | 
				
			||||||
 | 
					  this->client_->send_lock_info(a_lock);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_VALVE
 | 
					#ifdef USE_VALVE
 | 
				
			||||||
LIST_ENTITIES_HANDLER(valve, valve::Valve, ListEntitiesValveResponse)
 | 
					bool ListEntitiesIterator::on_valve(valve::Valve *valve) {
 | 
				
			||||||
#endif
 | 
					  this->client_->send_valve_info(valve);
 | 
				
			||||||
#ifdef USE_CAMERA
 | 
					  return true;
 | 
				
			||||||
LIST_ENTITIES_HANDLER(camera, camera::Camera, ListEntitiesCameraResponse)
 | 
					}
 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_CLIMATE
 | 
					 | 
				
			||||||
LIST_ENTITIES_HANDLER(climate, climate::Climate, ListEntitiesClimateResponse)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_NUMBER
 | 
					 | 
				
			||||||
LIST_ENTITIES_HANDLER(number, number::Number, ListEntitiesNumberResponse)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_DATETIME_DATE
 | 
					 | 
				
			||||||
LIST_ENTITIES_HANDLER(date, datetime::DateEntity, ListEntitiesDateResponse)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_DATETIME_TIME
 | 
					 | 
				
			||||||
LIST_ENTITIES_HANDLER(time, datetime::TimeEntity, ListEntitiesTimeResponse)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_DATETIME_DATETIME
 | 
					 | 
				
			||||||
LIST_ENTITIES_HANDLER(datetime, datetime::DateTimeEntity, ListEntitiesDateTimeResponse)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_TEXT
 | 
					 | 
				
			||||||
LIST_ENTITIES_HANDLER(text, text::Text, ListEntitiesTextResponse)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_SELECT
 | 
					 | 
				
			||||||
LIST_ENTITIES_HANDLER(select, select::Select, ListEntitiesSelectResponse)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_MEDIA_PLAYER
 | 
					 | 
				
			||||||
LIST_ENTITIES_HANDLER(media_player, media_player::MediaPlayer, ListEntitiesMediaPlayerResponse)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_ALARM_CONTROL_PANEL
 | 
					 | 
				
			||||||
LIST_ENTITIES_HANDLER(alarm_control_panel, alarm_control_panel::AlarmControlPanel,
 | 
					 | 
				
			||||||
                      ListEntitiesAlarmControlPanelResponse)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_EVENT
 | 
					 | 
				
			||||||
LIST_ENTITIES_HANDLER(event, event::Event, ListEntitiesEventResponse)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef USE_UPDATE
 | 
					 | 
				
			||||||
LIST_ENTITIES_HANDLER(update, update::UpdateEntity, ListEntitiesUpdateResponse)
 | 
					 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Special cases that don't follow the pattern
 | 
					 | 
				
			||||||
bool ListEntitiesIterator::on_end() { return this->client_->send_list_info_done(); }
 | 
					bool ListEntitiesIterator::on_end() { return this->client_->send_list_info_done(); }
 | 
				
			||||||
 | 
					 | 
				
			||||||
ListEntitiesIterator::ListEntitiesIterator(APIConnection *client) : client_(client) {}
 | 
					ListEntitiesIterator::ListEntitiesIterator(APIConnection *client) : client_(client) {}
 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
bool ListEntitiesIterator::on_service(UserServiceDescriptor *service) {
 | 
					bool ListEntitiesIterator::on_service(UserServiceDescriptor *service) {
 | 
				
			||||||
  auto resp = service->encode_list_service_response();
 | 
					  auto resp = service->encode_list_service_response();
 | 
				
			||||||
  return this->client_->send_message(resp);
 | 
					  return this->client_->send_message(resp);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef USE_ESP32_CAMERA
 | 
				
			||||||
 | 
					bool ListEntitiesIterator::on_camera(esp32_camera::ESP32Camera *camera) {
 | 
				
			||||||
 | 
					  this->client_->send_camera_info(camera);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef USE_CLIMATE
 | 
				
			||||||
 | 
					bool ListEntitiesIterator::on_climate(climate::Climate *climate) {
 | 
				
			||||||
 | 
					  this->client_->send_climate_info(climate);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef USE_NUMBER
 | 
				
			||||||
 | 
					bool ListEntitiesIterator::on_number(number::Number *number) {
 | 
				
			||||||
 | 
					  this->client_->send_number_info(number);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef USE_DATETIME_DATE
 | 
				
			||||||
 | 
					bool ListEntitiesIterator::on_date(datetime::DateEntity *date) {
 | 
				
			||||||
 | 
					  this->client_->send_date_info(date);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef USE_DATETIME_TIME
 | 
				
			||||||
 | 
					bool ListEntitiesIterator::on_time(datetime::TimeEntity *time) {
 | 
				
			||||||
 | 
					  this->client_->send_time_info(time);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef USE_DATETIME_DATETIME
 | 
				
			||||||
 | 
					bool ListEntitiesIterator::on_datetime(datetime::DateTimeEntity *datetime) {
 | 
				
			||||||
 | 
					  this->client_->send_datetime_info(datetime);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef USE_TEXT
 | 
				
			||||||
 | 
					bool ListEntitiesIterator::on_text(text::Text *text) {
 | 
				
			||||||
 | 
					  this->client_->send_text_info(text);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef USE_SELECT
 | 
				
			||||||
 | 
					bool ListEntitiesIterator::on_select(select::Select *select) {
 | 
				
			||||||
 | 
					  this->client_->send_select_info(select);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef USE_MEDIA_PLAYER
 | 
				
			||||||
 | 
					bool ListEntitiesIterator::on_media_player(media_player::MediaPlayer *media_player) {
 | 
				
			||||||
 | 
					  this->client_->send_media_player_info(media_player);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					#ifdef USE_ALARM_CONTROL_PANEL
 | 
				
			||||||
 | 
					bool ListEntitiesIterator::on_alarm_control_panel(alarm_control_panel::AlarmControlPanel *a_alarm_control_panel) {
 | 
				
			||||||
 | 
					  this->client_->send_alarm_control_panel_info(a_alarm_control_panel);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					#ifdef USE_EVENT
 | 
				
			||||||
 | 
					bool ListEntitiesIterator::on_event(event::Event *event) {
 | 
				
			||||||
 | 
					  this->client_->send_event_info(event);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					#ifdef USE_UPDATE
 | 
				
			||||||
 | 
					bool ListEntitiesIterator::on_update(update::UpdateEntity *update) {
 | 
				
			||||||
 | 
					  this->client_->send_update_info(update);
 | 
				
			||||||
 | 
					  return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}  // namespace api
 | 
					}  // namespace api
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,85 +9,75 @@ namespace api {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
class APIConnection;
 | 
					class APIConnection;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Macro for generating ListEntitiesIterator handlers
 | 
					 | 
				
			||||||
// Calls schedule_message_ with try_send_*_info
 | 
					 | 
				
			||||||
#define LIST_ENTITIES_HANDLER(entity_type, EntityClass, ResponseType) \
 | 
					 | 
				
			||||||
  bool ListEntitiesIterator::on_##entity_type(EntityClass *entity) { /* NOLINT(bugprone-macro-parentheses) */ \
 | 
					 | 
				
			||||||
    return this->client_->schedule_message_(entity, &APIConnection::try_send_##entity_type##_info, \
 | 
					 | 
				
			||||||
                                            ResponseType::MESSAGE_TYPE, ResponseType::ESTIMATED_SIZE); \
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
class ListEntitiesIterator : public ComponentIterator {
 | 
					class ListEntitiesIterator : public ComponentIterator {
 | 
				
			||||||
 public:
 | 
					 public:
 | 
				
			||||||
  ListEntitiesIterator(APIConnection *client);
 | 
					  ListEntitiesIterator(APIConnection *client);
 | 
				
			||||||
#ifdef USE_BINARY_SENSOR
 | 
					#ifdef USE_BINARY_SENSOR
 | 
				
			||||||
  bool on_binary_sensor(binary_sensor::BinarySensor *entity) override;
 | 
					  bool on_binary_sensor(binary_sensor::BinarySensor *binary_sensor) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_COVER
 | 
					#ifdef USE_COVER
 | 
				
			||||||
  bool on_cover(cover::Cover *entity) override;
 | 
					  bool on_cover(cover::Cover *cover) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_FAN
 | 
					#ifdef USE_FAN
 | 
				
			||||||
  bool on_fan(fan::Fan *entity) override;
 | 
					  bool on_fan(fan::Fan *fan) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_LIGHT
 | 
					#ifdef USE_LIGHT
 | 
				
			||||||
  bool on_light(light::LightState *entity) override;
 | 
					  bool on_light(light::LightState *light) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SENSOR
 | 
					#ifdef USE_SENSOR
 | 
				
			||||||
  bool on_sensor(sensor::Sensor *entity) override;
 | 
					  bool on_sensor(sensor::Sensor *sensor) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SWITCH
 | 
					#ifdef USE_SWITCH
 | 
				
			||||||
  bool on_switch(switch_::Switch *entity) override;
 | 
					  bool on_switch(switch_::Switch *a_switch) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_BUTTON
 | 
					#ifdef USE_BUTTON
 | 
				
			||||||
  bool on_button(button::Button *entity) override;
 | 
					  bool on_button(button::Button *button) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_TEXT_SENSOR
 | 
					#ifdef USE_TEXT_SENSOR
 | 
				
			||||||
  bool on_text_sensor(text_sensor::TextSensor *entity) override;
 | 
					  bool on_text_sensor(text_sensor::TextSensor *text_sensor) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
  bool on_service(UserServiceDescriptor *service) override;
 | 
					  bool on_service(UserServiceDescriptor *service) override;
 | 
				
			||||||
#endif
 | 
					#ifdef USE_ESP32_CAMERA
 | 
				
			||||||
#ifdef USE_CAMERA
 | 
					  bool on_camera(esp32_camera::ESP32Camera *camera) override;
 | 
				
			||||||
  bool on_camera(camera::Camera *entity) override;
 | 
					 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_CLIMATE
 | 
					#ifdef USE_CLIMATE
 | 
				
			||||||
  bool on_climate(climate::Climate *entity) override;
 | 
					  bool on_climate(climate::Climate *climate) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_NUMBER
 | 
					#ifdef USE_NUMBER
 | 
				
			||||||
  bool on_number(number::Number *entity) override;
 | 
					  bool on_number(number::Number *number) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_DATETIME_DATE
 | 
					#ifdef USE_DATETIME_DATE
 | 
				
			||||||
  bool on_date(datetime::DateEntity *entity) override;
 | 
					  bool on_date(datetime::DateEntity *date) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_DATETIME_TIME
 | 
					#ifdef USE_DATETIME_TIME
 | 
				
			||||||
  bool on_time(datetime::TimeEntity *entity) override;
 | 
					  bool on_time(datetime::TimeEntity *time) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_DATETIME_DATETIME
 | 
					#ifdef USE_DATETIME_DATETIME
 | 
				
			||||||
  bool on_datetime(datetime::DateTimeEntity *entity) override;
 | 
					  bool on_datetime(datetime::DateTimeEntity *datetime) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_TEXT
 | 
					#ifdef USE_TEXT
 | 
				
			||||||
  bool on_text(text::Text *entity) override;
 | 
					  bool on_text(text::Text *text) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SELECT
 | 
					#ifdef USE_SELECT
 | 
				
			||||||
  bool on_select(select::Select *entity) override;
 | 
					  bool on_select(select::Select *select) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_LOCK
 | 
					#ifdef USE_LOCK
 | 
				
			||||||
  bool on_lock(lock::Lock *entity) override;
 | 
					  bool on_lock(lock::Lock *a_lock) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_VALVE
 | 
					#ifdef USE_VALVE
 | 
				
			||||||
  bool on_valve(valve::Valve *entity) override;
 | 
					  bool on_valve(valve::Valve *valve) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_MEDIA_PLAYER
 | 
					#ifdef USE_MEDIA_PLAYER
 | 
				
			||||||
  bool on_media_player(media_player::MediaPlayer *entity) override;
 | 
					  bool on_media_player(media_player::MediaPlayer *media_player) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_ALARM_CONTROL_PANEL
 | 
					#ifdef USE_ALARM_CONTROL_PANEL
 | 
				
			||||||
  bool on_alarm_control_panel(alarm_control_panel::AlarmControlPanel *entity) override;
 | 
					  bool on_alarm_control_panel(alarm_control_panel::AlarmControlPanel *a_alarm_control_panel) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_EVENT
 | 
					#ifdef USE_EVENT
 | 
				
			||||||
  bool on_event(event::Event *entity) override;
 | 
					  bool on_event(event::Event *event) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_UPDATE
 | 
					#ifdef USE_UPDATE
 | 
				
			||||||
  bool on_update(update::UpdateEntity *entity) override;
 | 
					  bool on_update(update::UpdateEntity *update) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
  bool on_end() override;
 | 
					  bool on_end() override;
 | 
				
			||||||
  bool completed() { return this->state_ == IteratorState::NONE; }
 | 
					  bool completed() { return this->state_ == IteratorState::NONE; }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,7 +4,6 @@
 | 
				
			|||||||
#include "esphome/core/helpers.h"
 | 
					#include "esphome/core/helpers.h"
 | 
				
			||||||
#include "esphome/core/log.h"
 | 
					#include "esphome/core/log.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <cassert>
 | 
					 | 
				
			||||||
#include <vector>
 | 
					#include <vector>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef ESPHOME_LOG_HAS_VERY_VERBOSE
 | 
					#ifdef ESPHOME_LOG_HAS_VERY_VERBOSE
 | 
				
			||||||
@@ -60,6 +59,7 @@ class ProtoVarInt {
 | 
				
			|||||||
  uint32_t as_uint32() const { return this->value_; }
 | 
					  uint32_t as_uint32() const { return this->value_; }
 | 
				
			||||||
  uint64_t as_uint64() const { return this->value_; }
 | 
					  uint64_t as_uint64() const { return this->value_; }
 | 
				
			||||||
  bool as_bool() const { return this->value_; }
 | 
					  bool as_bool() const { return this->value_; }
 | 
				
			||||||
 | 
					  template<typename T> T as_enum() const { return static_cast<T>(this->as_uint32()); }
 | 
				
			||||||
  int32_t as_int32() const {
 | 
					  int32_t as_int32() const {
 | 
				
			||||||
    // Not ZigZag encoded
 | 
					    // Not ZigZag encoded
 | 
				
			||||||
    return static_cast<int32_t>(this->as_int64());
 | 
					    return static_cast<int32_t>(this->as_int64());
 | 
				
			||||||
@@ -133,24 +133,15 @@ class ProtoVarInt {
 | 
				
			|||||||
  uint64_t value_;
 | 
					  uint64_t value_;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Forward declaration for decode_to_message and encode_to_writer
 | 
					 | 
				
			||||||
class ProtoMessage;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
class ProtoLengthDelimited {
 | 
					class ProtoLengthDelimited {
 | 
				
			||||||
 public:
 | 
					 public:
 | 
				
			||||||
  explicit ProtoLengthDelimited(const uint8_t *value, size_t length) : value_(value), length_(length) {}
 | 
					  explicit ProtoLengthDelimited(const uint8_t *value, size_t length) : value_(value), length_(length) {}
 | 
				
			||||||
  std::string as_string() const { return std::string(reinterpret_cast<const char *>(this->value_), this->length_); }
 | 
					  std::string as_string() const { return std::string(reinterpret_cast<const char *>(this->value_), this->length_); }
 | 
				
			||||||
 | 
					  template<class C> C as_message() const {
 | 
				
			||||||
  /**
 | 
					    auto msg = C();
 | 
				
			||||||
   * Decode the length-delimited data into an existing ProtoMessage instance.
 | 
					    msg.decode(this->value_, this->length_);
 | 
				
			||||||
   *
 | 
					    return msg;
 | 
				
			||||||
   * This method allows decoding without templates, enabling use in contexts
 | 
					  }
 | 
				
			||||||
   * where the message type is not known at compile time. The ProtoMessage's
 | 
					 | 
				
			||||||
   * decode() method will be called with the raw data and length.
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @param msg The ProtoMessage instance to decode into
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  void decode_to_message(ProtoMessage &msg) const;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  const uint8_t *const value_;
 | 
					  const uint8_t *const value_;
 | 
				
			||||||
@@ -272,6 +263,9 @@ class ProtoWriteBuffer {
 | 
				
			|||||||
    this->write((value >> 48) & 0xFF);
 | 
					    this->write((value >> 48) & 0xFF);
 | 
				
			||||||
    this->write((value >> 56) & 0xFF);
 | 
					    this->write((value >> 56) & 0xFF);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					  template<typename T> void encode_enum(uint32_t field_id, T value, bool force = false) {
 | 
				
			||||||
 | 
					    this->encode_uint32(field_id, static_cast<uint32_t>(value), force);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
  void encode_float(uint32_t field_id, float value, bool force = false) {
 | 
					  void encode_float(uint32_t field_id, float value, bool force = false) {
 | 
				
			||||||
    if (value == 0.0f && !force)
 | 
					    if (value == 0.0f && !force)
 | 
				
			||||||
      return;
 | 
					      return;
 | 
				
			||||||
@@ -312,7 +306,18 @@ class ProtoWriteBuffer {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
    this->encode_uint64(field_id, uvalue, force);
 | 
					    this->encode_uint64(field_id, uvalue, force);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  void encode_message(uint32_t field_id, const ProtoMessage &value, bool force = false);
 | 
					  template<class C> void encode_message(uint32_t field_id, const C &value, bool force = false) {
 | 
				
			||||||
 | 
					    this->encode_field_raw(field_id, 2);  // type 2: Length-delimited message
 | 
				
			||||||
 | 
					    size_t begin = this->buffer_->size();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    value.encode(*this);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    const uint32_t nested_length = this->buffer_->size() - begin;
 | 
				
			||||||
 | 
					    // add size varint
 | 
				
			||||||
 | 
					    std::vector<uint8_t> var;
 | 
				
			||||||
 | 
					    ProtoVarInt(nested_length).encode(var);
 | 
				
			||||||
 | 
					    this->buffer_->insert(this->buffer_->begin() + begin, var.begin(), var.end());
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
  std::vector<uint8_t> *get_buffer() const { return buffer_; }
 | 
					  std::vector<uint8_t> *get_buffer() const { return buffer_; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
@@ -340,494 +345,6 @@ class ProtoMessage {
 | 
				
			|||||||
  virtual bool decode_64bit(uint32_t field_id, Proto64Bit value) { return false; }
 | 
					  virtual bool decode_64bit(uint32_t field_id, Proto64Bit value) { return false; }
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ProtoSize {
 | 
					 | 
				
			||||||
 public:
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief ProtoSize class for Protocol Buffer serialization size calculation
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * This class provides static methods to calculate the exact byte counts needed
 | 
					 | 
				
			||||||
   * for encoding various Protocol Buffer field types. All methods are designed to be
 | 
					 | 
				
			||||||
   * efficient for the common case where many fields have default values.
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * Implements Protocol Buffer encoding size calculation according to:
 | 
					 | 
				
			||||||
   * https://protobuf.dev/programming-guides/encoding/
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * Key features:
 | 
					 | 
				
			||||||
   * - Early-return optimization for zero/default values
 | 
					 | 
				
			||||||
   * - Direct total_size updates to avoid unnecessary additions
 | 
					 | 
				
			||||||
   * - Specialized handling for different field types according to protobuf spec
 | 
					 | 
				
			||||||
   * - Templated helpers for repeated fields and messages
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates the size in bytes needed to encode a uint32_t value as a varint
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @param value The uint32_t value to calculate size for
 | 
					 | 
				
			||||||
   * @return The number of bytes needed to encode the value
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline uint32_t varint(uint32_t value) {
 | 
					 | 
				
			||||||
    // Optimized varint size calculation using leading zeros
 | 
					 | 
				
			||||||
    // Each 7 bits requires one byte in the varint encoding
 | 
					 | 
				
			||||||
    if (value < 128)
 | 
					 | 
				
			||||||
      return 1;  // 7 bits, common case for small values
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // For larger values, count bytes needed based on the position of the highest bit set
 | 
					 | 
				
			||||||
    if (value < 16384) {
 | 
					 | 
				
			||||||
      return 2;  // 14 bits
 | 
					 | 
				
			||||||
    } else if (value < 2097152) {
 | 
					 | 
				
			||||||
      return 3;  // 21 bits
 | 
					 | 
				
			||||||
    } else if (value < 268435456) {
 | 
					 | 
				
			||||||
      return 4;  // 28 bits
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
      return 5;  // 32 bits (maximum for uint32_t)
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates the size in bytes needed to encode a uint64_t value as a varint
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @param value The uint64_t value to calculate size for
 | 
					 | 
				
			||||||
   * @return The number of bytes needed to encode the value
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline uint32_t varint(uint64_t value) {
 | 
					 | 
				
			||||||
    // Handle common case of values fitting in uint32_t (vast majority of use cases)
 | 
					 | 
				
			||||||
    if (value <= UINT32_MAX) {
 | 
					 | 
				
			||||||
      return varint(static_cast<uint32_t>(value));
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // For larger values, determine size based on highest bit position
 | 
					 | 
				
			||||||
    if (value < (1ULL << 35)) {
 | 
					 | 
				
			||||||
      return 5;  // 35 bits
 | 
					 | 
				
			||||||
    } else if (value < (1ULL << 42)) {
 | 
					 | 
				
			||||||
      return 6;  // 42 bits
 | 
					 | 
				
			||||||
    } else if (value < (1ULL << 49)) {
 | 
					 | 
				
			||||||
      return 7;  // 49 bits
 | 
					 | 
				
			||||||
    } else if (value < (1ULL << 56)) {
 | 
					 | 
				
			||||||
      return 8;  // 56 bits
 | 
					 | 
				
			||||||
    } else if (value < (1ULL << 63)) {
 | 
					 | 
				
			||||||
      return 9;  // 63 bits
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
      return 10;  // 64 bits (maximum for uint64_t)
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates the size in bytes needed to encode an int32_t value as a varint
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * Special handling is needed for negative values, which are sign-extended to 64 bits
 | 
					 | 
				
			||||||
   * in Protocol Buffers, resulting in a 10-byte varint.
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @param value The int32_t value to calculate size for
 | 
					 | 
				
			||||||
   * @return The number of bytes needed to encode the value
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline uint32_t varint(int32_t value) {
 | 
					 | 
				
			||||||
    // Negative values are sign-extended to 64 bits in protocol buffers,
 | 
					 | 
				
			||||||
    // which always results in a 10-byte varint for negative int32
 | 
					 | 
				
			||||||
    if (value < 0) {
 | 
					 | 
				
			||||||
      return 10;  // Negative int32 is always 10 bytes long
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    // For non-negative values, use the uint32_t implementation
 | 
					 | 
				
			||||||
    return varint(static_cast<uint32_t>(value));
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates the size in bytes needed to encode an int64_t value as a varint
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @param value The int64_t value to calculate size for
 | 
					 | 
				
			||||||
   * @return The number of bytes needed to encode the value
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline uint32_t varint(int64_t value) {
 | 
					 | 
				
			||||||
    // For int64_t, we convert to uint64_t and calculate the size
 | 
					 | 
				
			||||||
    // This works because the bit pattern determines the encoding size,
 | 
					 | 
				
			||||||
    // and we've handled negative int32 values as a special case above
 | 
					 | 
				
			||||||
    return varint(static_cast<uint64_t>(value));
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates the size in bytes needed to encode a field ID and wire type
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @param field_id The field identifier
 | 
					 | 
				
			||||||
   * @param type The wire type value (from the WireType enum in the protobuf spec)
 | 
					 | 
				
			||||||
   * @return The number of bytes needed to encode the field ID and wire type
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline uint32_t field(uint32_t field_id, uint32_t type) {
 | 
					 | 
				
			||||||
    uint32_t tag = (field_id << 3) | (type & 0b111);
 | 
					 | 
				
			||||||
    return varint(tag);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Common parameters for all add_*_field methods
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * All add_*_field methods follow these common patterns:
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @param total_size Reference to the total message size to update
 | 
					 | 
				
			||||||
   * @param field_id_size Pre-calculated size of the field ID in bytes
 | 
					 | 
				
			||||||
   * @param value The value to calculate size for (type varies)
 | 
					 | 
				
			||||||
   * @param force Whether to calculate size even if the value is default/zero/empty
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * Each method follows this implementation pattern:
 | 
					 | 
				
			||||||
   * 1. Skip calculation if value is default (0, false, empty) and not forced
 | 
					 | 
				
			||||||
   * 2. Calculate the size based on the field's encoding rules
 | 
					 | 
				
			||||||
   * 3. Add the field_id_size + calculated value size to total_size
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of an int32 field to the total message size
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_int32_field(uint32_t &total_size, uint32_t field_id_size, int32_t value) {
 | 
					 | 
				
			||||||
    // Skip calculation if value is zero
 | 
					 | 
				
			||||||
    if (value == 0) {
 | 
					 | 
				
			||||||
      return;  // No need to update total_size
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Calculate and directly add to total_size
 | 
					 | 
				
			||||||
    if (value < 0) {
 | 
					 | 
				
			||||||
      // Negative values are encoded as 10-byte varints in protobuf
 | 
					 | 
				
			||||||
      total_size += field_id_size + 10;
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
      // For non-negative values, use the standard varint size
 | 
					 | 
				
			||||||
      total_size += field_id_size + varint(static_cast<uint32_t>(value));
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of an int32 field to the total message size (repeated field version)
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_int32_field_repeated(uint32_t &total_size, uint32_t field_id_size, int32_t value) {
 | 
					 | 
				
			||||||
    // Always calculate size for repeated fields
 | 
					 | 
				
			||||||
    if (value < 0) {
 | 
					 | 
				
			||||||
      // Negative values are encoded as 10-byte varints in protobuf
 | 
					 | 
				
			||||||
      total_size += field_id_size + 10;
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
      // For non-negative values, use the standard varint size
 | 
					 | 
				
			||||||
      total_size += field_id_size + varint(static_cast<uint32_t>(value));
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a uint32 field to the total message size
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_uint32_field(uint32_t &total_size, uint32_t field_id_size, uint32_t value) {
 | 
					 | 
				
			||||||
    // Skip calculation if value is zero
 | 
					 | 
				
			||||||
    if (value == 0) {
 | 
					 | 
				
			||||||
      return;  // No need to update total_size
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Calculate and directly add to total_size
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(value);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a uint32 field to the total message size (repeated field version)
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_uint32_field_repeated(uint32_t &total_size, uint32_t field_id_size, uint32_t value) {
 | 
					 | 
				
			||||||
    // Always calculate size for repeated fields
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(value);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a boolean field to the total message size
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_bool_field(uint32_t &total_size, uint32_t field_id_size, bool value) {
 | 
					 | 
				
			||||||
    // Skip calculation if value is false
 | 
					 | 
				
			||||||
    if (!value) {
 | 
					 | 
				
			||||||
      return;  // No need to update total_size
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Boolean fields always use 1 byte when true
 | 
					 | 
				
			||||||
    total_size += field_id_size + 1;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a boolean field to the total message size (repeated field version)
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_bool_field_repeated(uint32_t &total_size, uint32_t field_id_size, bool value) {
 | 
					 | 
				
			||||||
    // Always calculate size for repeated fields
 | 
					 | 
				
			||||||
    // Boolean fields always use 1 byte
 | 
					 | 
				
			||||||
    total_size += field_id_size + 1;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a fixed field to the total message size
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * Fixed fields always take exactly N bytes (4 for fixed32/float, 8 for fixed64/double).
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @tparam NumBytes The number of bytes for this fixed field (4 or 8)
 | 
					 | 
				
			||||||
   * @param is_nonzero Whether the value is non-zero
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  template<uint32_t NumBytes>
 | 
					 | 
				
			||||||
  static inline void add_fixed_field(uint32_t &total_size, uint32_t field_id_size, bool is_nonzero) {
 | 
					 | 
				
			||||||
    // Skip calculation if value is zero
 | 
					 | 
				
			||||||
    if (!is_nonzero) {
 | 
					 | 
				
			||||||
      return;  // No need to update total_size
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Fixed fields always take exactly NumBytes
 | 
					 | 
				
			||||||
    total_size += field_id_size + NumBytes;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of an enum field to the total message size
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * Enum fields are encoded as uint32 varints.
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_enum_field(uint32_t &total_size, uint32_t field_id_size, uint32_t value) {
 | 
					 | 
				
			||||||
    // Skip calculation if value is zero
 | 
					 | 
				
			||||||
    if (value == 0) {
 | 
					 | 
				
			||||||
      return;  // No need to update total_size
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Enums are encoded as uint32
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(value);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of an enum field to the total message size (repeated field version)
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * Enum fields are encoded as uint32 varints.
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_enum_field_repeated(uint32_t &total_size, uint32_t field_id_size, uint32_t value) {
 | 
					 | 
				
			||||||
    // Always calculate size for repeated fields
 | 
					 | 
				
			||||||
    // Enums are encoded as uint32
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(value);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a sint32 field to the total message size
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * Sint32 fields use ZigZag encoding, which is more efficient for negative values.
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_sint32_field(uint32_t &total_size, uint32_t field_id_size, int32_t value) {
 | 
					 | 
				
			||||||
    // Skip calculation if value is zero
 | 
					 | 
				
			||||||
    if (value == 0) {
 | 
					 | 
				
			||||||
      return;  // No need to update total_size
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // ZigZag encoding for sint32: (n << 1) ^ (n >> 31)
 | 
					 | 
				
			||||||
    uint32_t zigzag = (static_cast<uint32_t>(value) << 1) ^ (static_cast<uint32_t>(value >> 31));
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(zigzag);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a sint32 field to the total message size (repeated field version)
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * Sint32 fields use ZigZag encoding, which is more efficient for negative values.
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_sint32_field_repeated(uint32_t &total_size, uint32_t field_id_size, int32_t value) {
 | 
					 | 
				
			||||||
    // Always calculate size for repeated fields
 | 
					 | 
				
			||||||
    // ZigZag encoding for sint32: (n << 1) ^ (n >> 31)
 | 
					 | 
				
			||||||
    uint32_t zigzag = (static_cast<uint32_t>(value) << 1) ^ (static_cast<uint32_t>(value >> 31));
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(zigzag);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of an int64 field to the total message size
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_int64_field(uint32_t &total_size, uint32_t field_id_size, int64_t value) {
 | 
					 | 
				
			||||||
    // Skip calculation if value is zero
 | 
					 | 
				
			||||||
    if (value == 0) {
 | 
					 | 
				
			||||||
      return;  // No need to update total_size
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Calculate and directly add to total_size
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(value);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of an int64 field to the total message size (repeated field version)
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_int64_field_repeated(uint32_t &total_size, uint32_t field_id_size, int64_t value) {
 | 
					 | 
				
			||||||
    // Always calculate size for repeated fields
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(value);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a uint64 field to the total message size
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_uint64_field(uint32_t &total_size, uint32_t field_id_size, uint64_t value) {
 | 
					 | 
				
			||||||
    // Skip calculation if value is zero
 | 
					 | 
				
			||||||
    if (value == 0) {
 | 
					 | 
				
			||||||
      return;  // No need to update total_size
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Calculate and directly add to total_size
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(value);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a uint64 field to the total message size (repeated field version)
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_uint64_field_repeated(uint32_t &total_size, uint32_t field_id_size, uint64_t value) {
 | 
					 | 
				
			||||||
    // Always calculate size for repeated fields
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(value);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a sint64 field to the total message size
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * Sint64 fields use ZigZag encoding, which is more efficient for negative values.
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_sint64_field(uint32_t &total_size, uint32_t field_id_size, int64_t value) {
 | 
					 | 
				
			||||||
    // Skip calculation if value is zero
 | 
					 | 
				
			||||||
    if (value == 0) {
 | 
					 | 
				
			||||||
      return;  // No need to update total_size
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // ZigZag encoding for sint64: (n << 1) ^ (n >> 63)
 | 
					 | 
				
			||||||
    uint64_t zigzag = (static_cast<uint64_t>(value) << 1) ^ (static_cast<uint64_t>(value >> 63));
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(zigzag);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a sint64 field to the total message size (repeated field version)
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * Sint64 fields use ZigZag encoding, which is more efficient for negative values.
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_sint64_field_repeated(uint32_t &total_size, uint32_t field_id_size, int64_t value) {
 | 
					 | 
				
			||||||
    // Always calculate size for repeated fields
 | 
					 | 
				
			||||||
    // ZigZag encoding for sint64: (n << 1) ^ (n >> 63)
 | 
					 | 
				
			||||||
    uint64_t zigzag = (static_cast<uint64_t>(value) << 1) ^ (static_cast<uint64_t>(value >> 63));
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(zigzag);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a string/bytes field to the total message size
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_string_field(uint32_t &total_size, uint32_t field_id_size, const std::string &str) {
 | 
					 | 
				
			||||||
    // Skip calculation if string is empty
 | 
					 | 
				
			||||||
    if (str.empty()) {
 | 
					 | 
				
			||||||
      return;  // No need to update total_size
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Calculate and directly add to total_size
 | 
					 | 
				
			||||||
    const uint32_t str_size = static_cast<uint32_t>(str.size());
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(str_size) + str_size;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a string/bytes field to the total message size (repeated field version)
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_string_field_repeated(uint32_t &total_size, uint32_t field_id_size, const std::string &str) {
 | 
					 | 
				
			||||||
    // Always calculate size for repeated fields
 | 
					 | 
				
			||||||
    const uint32_t str_size = static_cast<uint32_t>(str.size());
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(str_size) + str_size;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a nested message field to the total message size
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * This helper function directly updates the total_size reference if the nested size
 | 
					 | 
				
			||||||
   * is greater than zero.
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @param nested_size The pre-calculated size of the nested message
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_message_field(uint32_t &total_size, uint32_t field_id_size, uint32_t nested_size) {
 | 
					 | 
				
			||||||
    // Skip calculation if nested message is empty
 | 
					 | 
				
			||||||
    if (nested_size == 0) {
 | 
					 | 
				
			||||||
      return;  // No need to update total_size
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Calculate and directly add to total_size
 | 
					 | 
				
			||||||
    // Field ID + length varint + nested message content
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(nested_size) + nested_size;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a nested message field to the total message size (repeated field version)
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @param nested_size The pre-calculated size of the nested message
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_message_field_repeated(uint32_t &total_size, uint32_t field_id_size, uint32_t nested_size) {
 | 
					 | 
				
			||||||
    // Always calculate size for repeated fields
 | 
					 | 
				
			||||||
    // Field ID + length varint + nested message content
 | 
					 | 
				
			||||||
    total_size += field_id_size + varint(nested_size) + nested_size;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a nested message field to the total message size
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * This version takes a ProtoMessage object, calculates its size internally,
 | 
					 | 
				
			||||||
   * and updates the total_size reference. This eliminates the need for a temporary variable
 | 
					 | 
				
			||||||
   * at the call site.
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @param message The nested message object
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_message_object(uint32_t &total_size, uint32_t field_id_size, const ProtoMessage &message) {
 | 
					 | 
				
			||||||
    uint32_t nested_size = 0;
 | 
					 | 
				
			||||||
    message.calculate_size(nested_size);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Use the base implementation with the calculated nested_size
 | 
					 | 
				
			||||||
    add_message_field(total_size, field_id_size, nested_size);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the size of a nested message field to the total message size (repeated field version)
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @param message The nested message object
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  static inline void add_message_object_repeated(uint32_t &total_size, uint32_t field_id_size,
 | 
					 | 
				
			||||||
                                                 const ProtoMessage &message) {
 | 
					 | 
				
			||||||
    uint32_t nested_size = 0;
 | 
					 | 
				
			||||||
    message.calculate_size(nested_size);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Use the base implementation with the calculated nested_size
 | 
					 | 
				
			||||||
    add_message_field_repeated(total_size, field_id_size, nested_size);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  /**
 | 
					 | 
				
			||||||
   * @brief Calculates and adds the sizes of all messages in a repeated field to the total message size
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * This helper processes a vector of message objects, calculating the size for each message
 | 
					 | 
				
			||||||
   * and adding it to the total size.
 | 
					 | 
				
			||||||
   *
 | 
					 | 
				
			||||||
   * @tparam MessageType The type of the nested messages in the vector
 | 
					 | 
				
			||||||
   * @param messages Vector of message objects
 | 
					 | 
				
			||||||
   */
 | 
					 | 
				
			||||||
  template<typename MessageType>
 | 
					 | 
				
			||||||
  static inline void add_repeated_message(uint32_t &total_size, uint32_t field_id_size,
 | 
					 | 
				
			||||||
                                          const std::vector<MessageType> &messages) {
 | 
					 | 
				
			||||||
    // Skip if the vector is empty
 | 
					 | 
				
			||||||
    if (messages.empty()) {
 | 
					 | 
				
			||||||
      return;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Use the repeated field version for all messages
 | 
					 | 
				
			||||||
    for (const auto &message : messages) {
 | 
					 | 
				
			||||||
      add_message_object_repeated(total_size, field_id_size, message);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// Implementation of encode_message - must be after ProtoMessage is defined
 | 
					 | 
				
			||||||
inline void ProtoWriteBuffer::encode_message(uint32_t field_id, const ProtoMessage &value, bool force) {
 | 
					 | 
				
			||||||
  this->encode_field_raw(field_id, 2);  // type 2: Length-delimited message
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Calculate the message size first
 | 
					 | 
				
			||||||
  uint32_t msg_length_bytes = 0;
 | 
					 | 
				
			||||||
  value.calculate_size(msg_length_bytes);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Calculate how many bytes the length varint needs
 | 
					 | 
				
			||||||
  uint32_t varint_length_bytes = ProtoSize::varint(msg_length_bytes);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Reserve exact space for the length varint
 | 
					 | 
				
			||||||
  size_t begin = this->buffer_->size();
 | 
					 | 
				
			||||||
  this->buffer_->resize(this->buffer_->size() + varint_length_bytes);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Write the length varint directly
 | 
					 | 
				
			||||||
  ProtoVarInt(msg_length_bytes).encode_to_buffer_unchecked(this->buffer_->data() + begin, varint_length_bytes);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Now encode the message content - it will append to the buffer
 | 
					 | 
				
			||||||
  value.encode(*this);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Verify that the encoded size matches what we calculated
 | 
					 | 
				
			||||||
  assert(this->buffer_->size() == begin + varint_length_bytes + msg_length_bytes);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// Implementation of decode_to_message - must be after ProtoMessage is defined
 | 
					 | 
				
			||||||
inline void ProtoLengthDelimited::decode_to_message(ProtoMessage &msg) const {
 | 
					 | 
				
			||||||
  msg.decode(this->value_, this->length_);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
template<typename T> const char *proto_enum_to_string(T value);
 | 
					template<typename T> const char *proto_enum_to_string(T value);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ProtoService {
 | 
					class ProtoService {
 | 
				
			||||||
@@ -846,11 +363,11 @@ class ProtoService {
 | 
				
			|||||||
   * @return A ProtoWriteBuffer object with the reserved size.
 | 
					   * @return A ProtoWriteBuffer object with the reserved size.
 | 
				
			||||||
   */
 | 
					   */
 | 
				
			||||||
  virtual ProtoWriteBuffer create_buffer(uint32_t reserve_size) = 0;
 | 
					  virtual ProtoWriteBuffer create_buffer(uint32_t reserve_size) = 0;
 | 
				
			||||||
  virtual bool send_buffer(ProtoWriteBuffer buffer, uint8_t message_type) = 0;
 | 
					  virtual bool send_buffer(ProtoWriteBuffer buffer, uint16_t message_type) = 0;
 | 
				
			||||||
  virtual void read_message(uint32_t msg_size, uint32_t msg_type, uint8_t *msg_data) = 0;
 | 
					  virtual bool read_message(uint32_t msg_size, uint32_t msg_type, uint8_t *msg_data) = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Optimized method that pre-allocates buffer based on message size
 | 
					  // Optimized method that pre-allocates buffer based on message size
 | 
				
			||||||
  bool send_message_(const ProtoMessage &msg, uint8_t message_type) {
 | 
					  bool send_message_(const ProtoMessage &msg, uint16_t message_type) {
 | 
				
			||||||
    uint32_t msg_size = 0;
 | 
					    uint32_t msg_size = 0;
 | 
				
			||||||
    msg.calculate_size(msg_size);
 | 
					    msg.calculate_size(msg_size);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,67 +6,73 @@
 | 
				
			|||||||
namespace esphome {
 | 
					namespace esphome {
 | 
				
			||||||
namespace api {
 | 
					namespace api {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Generate entity handler implementations using macros
 | 
					 | 
				
			||||||
#ifdef USE_BINARY_SENSOR
 | 
					#ifdef USE_BINARY_SENSOR
 | 
				
			||||||
INITIAL_STATE_HANDLER(binary_sensor, binary_sensor::BinarySensor)
 | 
					bool InitialStateIterator::on_binary_sensor(binary_sensor::BinarySensor *binary_sensor) {
 | 
				
			||||||
 | 
					  return this->client_->send_binary_sensor_state(binary_sensor);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_COVER
 | 
					#ifdef USE_COVER
 | 
				
			||||||
INITIAL_STATE_HANDLER(cover, cover::Cover)
 | 
					bool InitialStateIterator::on_cover(cover::Cover *cover) { return this->client_->send_cover_state(cover); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_FAN
 | 
					#ifdef USE_FAN
 | 
				
			||||||
INITIAL_STATE_HANDLER(fan, fan::Fan)
 | 
					bool InitialStateIterator::on_fan(fan::Fan *fan) { return this->client_->send_fan_state(fan); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_LIGHT
 | 
					#ifdef USE_LIGHT
 | 
				
			||||||
INITIAL_STATE_HANDLER(light, light::LightState)
 | 
					bool InitialStateIterator::on_light(light::LightState *light) { return this->client_->send_light_state(light); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SENSOR
 | 
					#ifdef USE_SENSOR
 | 
				
			||||||
INITIAL_STATE_HANDLER(sensor, sensor::Sensor)
 | 
					bool InitialStateIterator::on_sensor(sensor::Sensor *sensor) { return this->client_->send_sensor_state(sensor); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SWITCH
 | 
					#ifdef USE_SWITCH
 | 
				
			||||||
INITIAL_STATE_HANDLER(switch, switch_::Switch)
 | 
					bool InitialStateIterator::on_switch(switch_::Switch *a_switch) { return this->client_->send_switch_state(a_switch); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_TEXT_SENSOR
 | 
					#ifdef USE_TEXT_SENSOR
 | 
				
			||||||
INITIAL_STATE_HANDLER(text_sensor, text_sensor::TextSensor)
 | 
					bool InitialStateIterator::on_text_sensor(text_sensor::TextSensor *text_sensor) {
 | 
				
			||||||
 | 
					  return this->client_->send_text_sensor_state(text_sensor);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_CLIMATE
 | 
					#ifdef USE_CLIMATE
 | 
				
			||||||
INITIAL_STATE_HANDLER(climate, climate::Climate)
 | 
					bool InitialStateIterator::on_climate(climate::Climate *climate) { return this->client_->send_climate_state(climate); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_NUMBER
 | 
					#ifdef USE_NUMBER
 | 
				
			||||||
INITIAL_STATE_HANDLER(number, number::Number)
 | 
					bool InitialStateIterator::on_number(number::Number *number) { return this->client_->send_number_state(number); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_DATETIME_DATE
 | 
					#ifdef USE_DATETIME_DATE
 | 
				
			||||||
INITIAL_STATE_HANDLER(date, datetime::DateEntity)
 | 
					bool InitialStateIterator::on_date(datetime::DateEntity *date) { return this->client_->send_date_state(date); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_DATETIME_TIME
 | 
					#ifdef USE_DATETIME_TIME
 | 
				
			||||||
INITIAL_STATE_HANDLER(time, datetime::TimeEntity)
 | 
					bool InitialStateIterator::on_time(datetime::TimeEntity *time) { return this->client_->send_time_state(time); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_DATETIME_DATETIME
 | 
					#ifdef USE_DATETIME_DATETIME
 | 
				
			||||||
INITIAL_STATE_HANDLER(datetime, datetime::DateTimeEntity)
 | 
					bool InitialStateIterator::on_datetime(datetime::DateTimeEntity *datetime) {
 | 
				
			||||||
 | 
					  return this->client_->send_datetime_state(datetime);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_TEXT
 | 
					#ifdef USE_TEXT
 | 
				
			||||||
INITIAL_STATE_HANDLER(text, text::Text)
 | 
					bool InitialStateIterator::on_text(text::Text *text) { return this->client_->send_text_state(text); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SELECT
 | 
					#ifdef USE_SELECT
 | 
				
			||||||
INITIAL_STATE_HANDLER(select, select::Select)
 | 
					bool InitialStateIterator::on_select(select::Select *select) { return this->client_->send_select_state(select); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_LOCK
 | 
					#ifdef USE_LOCK
 | 
				
			||||||
INITIAL_STATE_HANDLER(lock, lock::Lock)
 | 
					bool InitialStateIterator::on_lock(lock::Lock *a_lock) { return this->client_->send_lock_state(a_lock); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_VALVE
 | 
					#ifdef USE_VALVE
 | 
				
			||||||
INITIAL_STATE_HANDLER(valve, valve::Valve)
 | 
					bool InitialStateIterator::on_valve(valve::Valve *valve) { return this->client_->send_valve_state(valve); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_MEDIA_PLAYER
 | 
					#ifdef USE_MEDIA_PLAYER
 | 
				
			||||||
INITIAL_STATE_HANDLER(media_player, media_player::MediaPlayer)
 | 
					bool InitialStateIterator::on_media_player(media_player::MediaPlayer *media_player) {
 | 
				
			||||||
 | 
					  return this->client_->send_media_player_state(media_player);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_ALARM_CONTROL_PANEL
 | 
					#ifdef USE_ALARM_CONTROL_PANEL
 | 
				
			||||||
INITIAL_STATE_HANDLER(alarm_control_panel, alarm_control_panel::AlarmControlPanel)
 | 
					bool InitialStateIterator::on_alarm_control_panel(alarm_control_panel::AlarmControlPanel *a_alarm_control_panel) {
 | 
				
			||||||
 | 
					  return this->client_->send_alarm_control_panel_state(a_alarm_control_panel);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_UPDATE
 | 
					#ifdef USE_UPDATE
 | 
				
			||||||
INITIAL_STATE_HANDLER(update, update::UpdateEntity)
 | 
					bool InitialStateIterator::on_update(update::UpdateEntity *update) { return this->client_->send_update_state(update); }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					 | 
				
			||||||
// Special cases (button and event) are already defined inline in subscribe_state.h
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
InitialStateIterator::InitialStateIterator(APIConnection *client) : client_(client) {}
 | 
					InitialStateIterator::InitialStateIterator(APIConnection *client) : client_(client) {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}  // namespace api
 | 
					}  // namespace api
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -10,78 +10,71 @@ namespace api {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
class APIConnection;
 | 
					class APIConnection;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Macro for generating InitialStateIterator handlers
 | 
					 | 
				
			||||||
// Calls send_*_state
 | 
					 | 
				
			||||||
#define INITIAL_STATE_HANDLER(entity_type, EntityClass) \
 | 
					 | 
				
			||||||
  bool InitialStateIterator::on_##entity_type(EntityClass *entity) { /* NOLINT(bugprone-macro-parentheses) */ \
 | 
					 | 
				
			||||||
    return this->client_->send_##entity_type##_state(entity); \
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
class InitialStateIterator : public ComponentIterator {
 | 
					class InitialStateIterator : public ComponentIterator {
 | 
				
			||||||
 public:
 | 
					 public:
 | 
				
			||||||
  InitialStateIterator(APIConnection *client);
 | 
					  InitialStateIterator(APIConnection *client);
 | 
				
			||||||
#ifdef USE_BINARY_SENSOR
 | 
					#ifdef USE_BINARY_SENSOR
 | 
				
			||||||
  bool on_binary_sensor(binary_sensor::BinarySensor *entity) override;
 | 
					  bool on_binary_sensor(binary_sensor::BinarySensor *binary_sensor) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_COVER
 | 
					#ifdef USE_COVER
 | 
				
			||||||
  bool on_cover(cover::Cover *entity) override;
 | 
					  bool on_cover(cover::Cover *cover) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_FAN
 | 
					#ifdef USE_FAN
 | 
				
			||||||
  bool on_fan(fan::Fan *entity) override;
 | 
					  bool on_fan(fan::Fan *fan) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_LIGHT
 | 
					#ifdef USE_LIGHT
 | 
				
			||||||
  bool on_light(light::LightState *entity) override;
 | 
					  bool on_light(light::LightState *light) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SENSOR
 | 
					#ifdef USE_SENSOR
 | 
				
			||||||
  bool on_sensor(sensor::Sensor *entity) override;
 | 
					  bool on_sensor(sensor::Sensor *sensor) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SWITCH
 | 
					#ifdef USE_SWITCH
 | 
				
			||||||
  bool on_switch(switch_::Switch *entity) override;
 | 
					  bool on_switch(switch_::Switch *a_switch) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_BUTTON
 | 
					#ifdef USE_BUTTON
 | 
				
			||||||
  bool on_button(button::Button *button) override { return true; };
 | 
					  bool on_button(button::Button *button) override { return true; };
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_TEXT_SENSOR
 | 
					#ifdef USE_TEXT_SENSOR
 | 
				
			||||||
  bool on_text_sensor(text_sensor::TextSensor *entity) override;
 | 
					  bool on_text_sensor(text_sensor::TextSensor *text_sensor) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_CLIMATE
 | 
					#ifdef USE_CLIMATE
 | 
				
			||||||
  bool on_climate(climate::Climate *entity) override;
 | 
					  bool on_climate(climate::Climate *climate) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_NUMBER
 | 
					#ifdef USE_NUMBER
 | 
				
			||||||
  bool on_number(number::Number *entity) override;
 | 
					  bool on_number(number::Number *number) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_DATETIME_DATE
 | 
					#ifdef USE_DATETIME_DATE
 | 
				
			||||||
  bool on_date(datetime::DateEntity *entity) override;
 | 
					  bool on_date(datetime::DateEntity *date) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_DATETIME_TIME
 | 
					#ifdef USE_DATETIME_TIME
 | 
				
			||||||
  bool on_time(datetime::TimeEntity *entity) override;
 | 
					  bool on_time(datetime::TimeEntity *time) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_DATETIME_DATETIME
 | 
					#ifdef USE_DATETIME_DATETIME
 | 
				
			||||||
  bool on_datetime(datetime::DateTimeEntity *entity) override;
 | 
					  bool on_datetime(datetime::DateTimeEntity *datetime) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_TEXT
 | 
					#ifdef USE_TEXT
 | 
				
			||||||
  bool on_text(text::Text *entity) override;
 | 
					  bool on_text(text::Text *text) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_SELECT
 | 
					#ifdef USE_SELECT
 | 
				
			||||||
  bool on_select(select::Select *entity) override;
 | 
					  bool on_select(select::Select *select) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_LOCK
 | 
					#ifdef USE_LOCK
 | 
				
			||||||
  bool on_lock(lock::Lock *entity) override;
 | 
					  bool on_lock(lock::Lock *a_lock) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_VALVE
 | 
					#ifdef USE_VALVE
 | 
				
			||||||
  bool on_valve(valve::Valve *entity) override;
 | 
					  bool on_valve(valve::Valve *valve) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_MEDIA_PLAYER
 | 
					#ifdef USE_MEDIA_PLAYER
 | 
				
			||||||
  bool on_media_player(media_player::MediaPlayer *entity) override;
 | 
					  bool on_media_player(media_player::MediaPlayer *media_player) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_ALARM_CONTROL_PANEL
 | 
					#ifdef USE_ALARM_CONTROL_PANEL
 | 
				
			||||||
  bool on_alarm_control_panel(alarm_control_panel::AlarmControlPanel *entity) override;
 | 
					  bool on_alarm_control_panel(alarm_control_panel::AlarmControlPanel *a_alarm_control_panel) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_EVENT
 | 
					#ifdef USE_EVENT
 | 
				
			||||||
  bool on_event(event::Event *event) override { return true; };
 | 
					  bool on_event(event::Event *event) override { return true; };
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#ifdef USE_UPDATE
 | 
					#ifdef USE_UPDATE
 | 
				
			||||||
  bool on_update(update::UpdateEntity *entity) override;
 | 
					  bool on_update(update::UpdateEntity *update) override;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
  bool completed() { return this->state_ == IteratorState::NONE; }
 | 
					  bool completed() { return this->state_ == IteratorState::NONE; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -7,7 +7,6 @@
 | 
				
			|||||||
#include "esphome/core/automation.h"
 | 
					#include "esphome/core/automation.h"
 | 
				
			||||||
#include "api_pb2.h"
 | 
					#include "api_pb2.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_API_SERVICES
 | 
					 | 
				
			||||||
namespace esphome {
 | 
					namespace esphome {
 | 
				
			||||||
namespace api {
 | 
					namespace api {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -74,4 +73,3 @@ template<typename... Ts> class UserServiceTrigger : public UserServiceBase<Ts...
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
}  // namespace api
 | 
					}  // namespace api
 | 
				
			||||||
}  // namespace esphome
 | 
					}  // namespace esphome
 | 
				
			||||||
#endif  // USE_API_SERVICES
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,6 +3,8 @@
 | 
				
			|||||||
#include "esphome/core/component.h"
 | 
					#include "esphome/core/component.h"
 | 
				
			||||||
#include "esphome/components/as3935/as3935.h"
 | 
					#include "esphome/components/as3935/as3935.h"
 | 
				
			||||||
#include "esphome/components/spi/spi.h"
 | 
					#include "esphome/components/spi/spi.h"
 | 
				
			||||||
 | 
					#include "esphome/components/sensor/sensor.h"
 | 
				
			||||||
 | 
					#include "esphome/components/binary_sensor/binary_sensor.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace esphome {
 | 
					namespace esphome {
 | 
				
			||||||
namespace as3935_spi {
 | 
					namespace as3935_spi {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -50,6 +50,7 @@ class AS5600Component : public Component, public i2c::I2CDevice {
 | 
				
			|||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
  /// HARDWARE_LATE setup priority
 | 
					  /// HARDWARE_LATE setup priority
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // configuration setters
 | 
					  // configuration setters
 | 
				
			||||||
  void set_dir_pin(InternalGPIOPin *pin) { this->dir_pin_ = pin; }
 | 
					  void set_dir_pin(InternalGPIOPin *pin) { this->dir_pin_ = pin; }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,7 +5,6 @@ from esphome.const import (
 | 
				
			|||||||
    PLATFORM_BK72XX,
 | 
					    PLATFORM_BK72XX,
 | 
				
			||||||
    PLATFORM_ESP32,
 | 
					    PLATFORM_ESP32,
 | 
				
			||||||
    PLATFORM_ESP8266,
 | 
					    PLATFORM_ESP8266,
 | 
				
			||||||
    PLATFORM_LN882X,
 | 
					 | 
				
			||||||
    PLATFORM_RTL87XX,
 | 
					    PLATFORM_RTL87XX,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
from esphome.core import CORE, coroutine_with_priority
 | 
					from esphome.core import CORE, coroutine_with_priority
 | 
				
			||||||
@@ -15,15 +14,7 @@ CODEOWNERS = ["@OttoWinter"]
 | 
				
			|||||||
CONFIG_SCHEMA = cv.All(
 | 
					CONFIG_SCHEMA = cv.All(
 | 
				
			||||||
    cv.Schema({}),
 | 
					    cv.Schema({}),
 | 
				
			||||||
    cv.only_with_arduino,
 | 
					    cv.only_with_arduino,
 | 
				
			||||||
    cv.only_on(
 | 
					    cv.only_on([PLATFORM_ESP32, PLATFORM_ESP8266, PLATFORM_BK72XX, PLATFORM_RTL87XX]),
 | 
				
			||||||
        [
 | 
					 | 
				
			||||||
            PLATFORM_ESP32,
 | 
					 | 
				
			||||||
            PLATFORM_ESP8266,
 | 
					 | 
				
			||||||
            PLATFORM_BK72XX,
 | 
					 | 
				
			||||||
            PLATFORM_LN882X,
 | 
					 | 
				
			||||||
            PLATFORM_RTL87XX,
 | 
					 | 
				
			||||||
        ]
 | 
					 | 
				
			||||||
    ),
 | 
					 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -31,7 +22,7 @@ CONFIG_SCHEMA = cv.All(
 | 
				
			|||||||
async def to_code(config):
 | 
					async def to_code(config):
 | 
				
			||||||
    if CORE.is_esp32 or CORE.is_libretiny:
 | 
					    if CORE.is_esp32 or CORE.is_libretiny:
 | 
				
			||||||
        # https://github.com/ESP32Async/AsyncTCP
 | 
					        # https://github.com/ESP32Async/AsyncTCP
 | 
				
			||||||
        cg.add_library("ESP32Async/AsyncTCP", "3.4.5")
 | 
					        cg.add_library("ESP32Async/AsyncTCP", "3.4.4")
 | 
				
			||||||
    elif CORE.is_esp8266:
 | 
					    elif CORE.is_esp8266:
 | 
				
			||||||
        # https://github.com/ESP32Async/ESPAsyncTCP
 | 
					        # https://github.com/ESP32Async/ESPAsyncTCP
 | 
				
			||||||
        cg.add_library("ESP32Async/ESPAsyncTCP", "2.0.0")
 | 
					        cg.add_library("ESP32Async/ESPAsyncTCP", "2.0.0")
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -25,6 +25,7 @@ class ATCMiThermometer : public Component, public esp32_ble_tracker::ESPBTDevice
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  bool parse_device(const esp32_ble_tracker::ESPBTDevice &device) override;
 | 
					  bool parse_device(const esp32_ble_tracker::ESPBTDevice &device) override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void set_temperature(sensor::Sensor *temperature) { temperature_ = temperature; }
 | 
					  void set_temperature(sensor::Sensor *temperature) { temperature_ = temperature; }
 | 
				
			||||||
  void set_humidity(sensor::Sensor *humidity) { humidity_ = humidity; }
 | 
					  void set_humidity(sensor::Sensor *humidity) { humidity_ = humidity; }
 | 
				
			||||||
  void set_battery_level(sensor::Sensor *battery_level) { battery_level_ = battery_level; }
 | 
					  void set_battery_level(sensor::Sensor *battery_level) { battery_level_ = battery_level; }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,6 @@
 | 
				
			|||||||
#include "atm90e32.h"
 | 
					#include "atm90e32.h"
 | 
				
			||||||
#include <cinttypes>
 | 
					#include <cinttypes>
 | 
				
			||||||
#include <cmath>
 | 
					#include <cmath>
 | 
				
			||||||
#include <numbers>
 | 
					 | 
				
			||||||
#include "esphome/core/log.h"
 | 
					#include "esphome/core/log.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace esphome {
 | 
					namespace esphome {
 | 
				
			||||||
@@ -849,7 +848,7 @@ uint16_t ATM90E32Component::calculate_voltage_threshold(int line_freq, uint16_t
 | 
				
			|||||||
  float nominal_voltage = (line_freq == 60) ? 120.0f : 220.0f;
 | 
					  float nominal_voltage = (line_freq == 60) ? 120.0f : 220.0f;
 | 
				
			||||||
  float target_voltage = nominal_voltage * multiplier;
 | 
					  float target_voltage = nominal_voltage * multiplier;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  float peak_01v = target_voltage * 100.0f * std::numbers::sqrt2_v<float>;  // convert RMS → peak, scale to 0.01V
 | 
					  float peak_01v = target_voltage * 100.0f * std::sqrt(2.0f);  // convert RMS → peak, scale to 0.01V
 | 
				
			||||||
  float divider = (2.0f * ugain) / 32768.0f;
 | 
					  float divider = (2.0f * ugain) / 32768.0f;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  float threshold = peak_01v / divider;
 | 
					  float threshold = peak_01v / divider;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -312,7 +312,7 @@ FileDecoderState AudioDecoder::decode_mp3_() {
 | 
				
			|||||||
  if (err) {
 | 
					  if (err) {
 | 
				
			||||||
    switch (err) {
 | 
					    switch (err) {
 | 
				
			||||||
      case esp_audio_libs::helix_decoder::ERR_MP3_OUT_OF_MEMORY:
 | 
					      case esp_audio_libs::helix_decoder::ERR_MP3_OUT_OF_MEMORY:
 | 
				
			||||||
        [[fallthrough]];
 | 
					        // Intentional fallthrough
 | 
				
			||||||
      case esp_audio_libs::helix_decoder::ERR_MP3_NULL_POINTER:
 | 
					      case esp_audio_libs::helix_decoder::ERR_MP3_NULL_POINTER:
 | 
				
			||||||
        return FileDecoderState::FAILED;
 | 
					        return FileDecoderState::FAILED;
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,7 +5,6 @@
 | 
				
			|||||||
#include "esphome/core/defines.h"
 | 
					#include "esphome/core/defines.h"
 | 
				
			||||||
#include "esphome/core/hal.h"
 | 
					#include "esphome/core/hal.h"
 | 
				
			||||||
#include "esphome/core/helpers.h"
 | 
					#include "esphome/core/helpers.h"
 | 
				
			||||||
#include "esphome/core/log.h"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if CONFIG_MBEDTLS_CERTIFICATE_BUNDLE
 | 
					#if CONFIG_MBEDTLS_CERTIFICATE_BUNDLE
 | 
				
			||||||
#include "esp_crt_bundle.h"
 | 
					#include "esp_crt_bundle.h"
 | 
				
			||||||
@@ -17,13 +16,13 @@ namespace audio {
 | 
				
			|||||||
static const uint32_t READ_WRITE_TIMEOUT_MS = 20;
 | 
					static const uint32_t READ_WRITE_TIMEOUT_MS = 20;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const uint32_t CONNECTION_TIMEOUT_MS = 5000;
 | 
					static const uint32_t CONNECTION_TIMEOUT_MS = 5000;
 | 
				
			||||||
static const uint8_t MAX_FETCHING_HEADER_ATTEMPTS = 6;
 | 
					
 | 
				
			||||||
 | 
					// The number of times the http read times out with no data before throwing an error
 | 
				
			||||||
 | 
					static const uint32_t ERROR_COUNT_NO_DATA_READ_TIMEOUT = 100;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const size_t HTTP_STREAM_BUFFER_SIZE = 2048;
 | 
					static const size_t HTTP_STREAM_BUFFER_SIZE = 2048;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const uint8_t MAX_REDIRECTIONS = 5;
 | 
					static const uint8_t MAX_REDIRECTION = 5;
 | 
				
			||||||
 | 
					 | 
				
			||||||
static const char *const TAG = "audio_reader";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Some common HTTP status codes - borrowed from http_request component accessed 20241224
 | 
					// Some common HTTP status codes - borrowed from http_request component accessed 20241224
 | 
				
			||||||
enum HttpStatus {
 | 
					enum HttpStatus {
 | 
				
			||||||
@@ -95,7 +94,7 @@ esp_err_t AudioReader::start(const std::string &uri, AudioFileType &file_type) {
 | 
				
			|||||||
  client_config.url = uri.c_str();
 | 
					  client_config.url = uri.c_str();
 | 
				
			||||||
  client_config.cert_pem = nullptr;
 | 
					  client_config.cert_pem = nullptr;
 | 
				
			||||||
  client_config.disable_auto_redirect = false;
 | 
					  client_config.disable_auto_redirect = false;
 | 
				
			||||||
  client_config.max_redirection_count = MAX_REDIRECTIONS;
 | 
					  client_config.max_redirection_count = 10;
 | 
				
			||||||
  client_config.event_handler = http_event_handler;
 | 
					  client_config.event_handler = http_event_handler;
 | 
				
			||||||
  client_config.user_data = this;
 | 
					  client_config.user_data = this;
 | 
				
			||||||
  client_config.buffer_size = HTTP_STREAM_BUFFER_SIZE;
 | 
					  client_config.buffer_size = HTTP_STREAM_BUFFER_SIZE;
 | 
				
			||||||
@@ -117,29 +116,12 @@ esp_err_t AudioReader::start(const std::string &uri, AudioFileType &file_type) {
 | 
				
			|||||||
  esp_err_t err = esp_http_client_open(this->client_, 0);
 | 
					  esp_err_t err = esp_http_client_open(this->client_, 0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  if (err != ESP_OK) {
 | 
					  if (err != ESP_OK) {
 | 
				
			||||||
    ESP_LOGE(TAG, "Failed to open URL");
 | 
					 | 
				
			||||||
    this->cleanup_connection_();
 | 
					    this->cleanup_connection_();
 | 
				
			||||||
    return err;
 | 
					    return err;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  int64_t header_length = esp_http_client_fetch_headers(this->client_);
 | 
					  int64_t header_length = esp_http_client_fetch_headers(this->client_);
 | 
				
			||||||
  uint8_t reattempt_count = 0;
 | 
					 | 
				
			||||||
  while ((header_length < 0) && (reattempt_count < MAX_FETCHING_HEADER_ATTEMPTS)) {
 | 
					 | 
				
			||||||
    this->cleanup_connection_();
 | 
					 | 
				
			||||||
    if (header_length != -ESP_ERR_HTTP_EAGAIN) {
 | 
					 | 
				
			||||||
      // Serious error, no recovery
 | 
					 | 
				
			||||||
      return ESP_FAIL;
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
      // Reconnect from a fresh state to avoid a bug where it never reads the headers even if made available
 | 
					 | 
				
			||||||
      this->client_ = esp_http_client_init(&client_config);
 | 
					 | 
				
			||||||
      esp_http_client_open(this->client_, 0);
 | 
					 | 
				
			||||||
      header_length = esp_http_client_fetch_headers(this->client_);
 | 
					 | 
				
			||||||
      ++reattempt_count;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  if (header_length < 0) {
 | 
					  if (header_length < 0) {
 | 
				
			||||||
    ESP_LOGE(TAG, "Failed to fetch headers");
 | 
					 | 
				
			||||||
    this->cleanup_connection_();
 | 
					    this->cleanup_connection_();
 | 
				
			||||||
    return ESP_FAIL;
 | 
					    return ESP_FAIL;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@@ -153,7 +135,7 @@ esp_err_t AudioReader::start(const std::string &uri, AudioFileType &file_type) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  ssize_t redirect_count = 0;
 | 
					  ssize_t redirect_count = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  while ((esp_http_client_set_redirection(this->client_) == ESP_OK) && (redirect_count < MAX_REDIRECTIONS)) {
 | 
					  while ((esp_http_client_set_redirection(this->client_) == ESP_OK) && (redirect_count < MAX_REDIRECTION)) {
 | 
				
			||||||
    err = esp_http_client_open(this->client_, 0);
 | 
					    err = esp_http_client_open(this->client_, 0);
 | 
				
			||||||
    if (err != ESP_OK) {
 | 
					    if (err != ESP_OK) {
 | 
				
			||||||
      this->cleanup_connection_();
 | 
					      this->cleanup_connection_();
 | 
				
			||||||
@@ -285,29 +267,27 @@ AudioReaderState AudioReader::http_read_() {
 | 
				
			|||||||
      return AudioReaderState::FINISHED;
 | 
					      return AudioReaderState::FINISHED;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  } else if (this->output_transfer_buffer_->free() > 0) {
 | 
					  } else if (this->output_transfer_buffer_->free() > 0) {
 | 
				
			||||||
    int received_len = esp_http_client_read(this->client_, (char *) this->output_transfer_buffer_->get_buffer_end(),
 | 
					    size_t bytes_to_read = this->output_transfer_buffer_->free();
 | 
				
			||||||
                                            this->output_transfer_buffer_->free());
 | 
					    int received_len =
 | 
				
			||||||
 | 
					        esp_http_client_read(this->client_, (char *) this->output_transfer_buffer_->get_buffer_end(), bytes_to_read);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (received_len > 0) {
 | 
					    if (received_len > 0) {
 | 
				
			||||||
      this->output_transfer_buffer_->increase_buffer_length(received_len);
 | 
					      this->output_transfer_buffer_->increase_buffer_length(received_len);
 | 
				
			||||||
      this->last_data_read_ms_ = millis();
 | 
					      this->last_data_read_ms_ = millis();
 | 
				
			||||||
      return AudioReaderState::READING;
 | 
					    } else if (received_len < 0) {
 | 
				
			||||||
    } else if (received_len <= 0) {
 | 
					 | 
				
			||||||
      // HTTP read error
 | 
					      // HTTP read error
 | 
				
			||||||
      if (received_len == -1) {
 | 
					      this->cleanup_connection_();
 | 
				
			||||||
        // A true connection error occured, no chance at recovery
 | 
					      return AudioReaderState::FAILED;
 | 
				
			||||||
        this->cleanup_connection_();
 | 
					    } else {
 | 
				
			||||||
        return AudioReaderState::FAILED;
 | 
					      if (bytes_to_read > 0) {
 | 
				
			||||||
      }
 | 
					        // Read timed out
 | 
				
			||||||
 | 
					        if ((millis() - this->last_data_read_ms_) > CONNECTION_TIMEOUT_MS) {
 | 
				
			||||||
 | 
					          this->cleanup_connection_();
 | 
				
			||||||
 | 
					          return AudioReaderState::FAILED;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      // Read timed out, manually verify if it has been too long since the last successful read
 | 
					        delay(READ_WRITE_TIMEOUT_MS);
 | 
				
			||||||
      if ((millis() - this->last_data_read_ms_) > MAX_FETCHING_HEADER_ATTEMPTS * CONNECTION_TIMEOUT_MS) {
 | 
					 | 
				
			||||||
        ESP_LOGE(TAG, "Timed out");
 | 
					 | 
				
			||||||
        this->cleanup_connection_();
 | 
					 | 
				
			||||||
        return AudioReaderState::FAILED;
 | 
					 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
 | 
					 | 
				
			||||||
      delay(READ_WRITE_TIMEOUT_MS);
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -16,6 +16,7 @@ class BParasite : public Component, public esp32_ble_tracker::ESPBTDeviceListene
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  bool parse_device(const esp32_ble_tracker::ESPBTDevice &device) override;
 | 
					  bool parse_device(const esp32_ble_tracker::ESPBTDevice &device) override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  void set_battery_voltage(sensor::Sensor *battery_voltage) { battery_voltage_ = battery_voltage; }
 | 
					  void set_battery_voltage(sensor::Sensor *battery_voltage) { battery_voltage_ = battery_voltage; }
 | 
				
			||||||
  void set_temperature(sensor::Sensor *temperature) { temperature_ = temperature; }
 | 
					  void set_temperature(sensor::Sensor *temperature) { temperature_ = temperature; }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -16,6 +16,7 @@ class BLEBinaryOutput : public output::BinaryOutput, public BLEClientNode, publi
 | 
				
			|||||||
 public:
 | 
					 public:
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
  void loop() override {}
 | 
					  void loop() override {}
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void set_service_uuid16(uint16_t uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_uint16(uuid); }
 | 
					  void set_service_uuid16(uint16_t uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_uint16(uuid); }
 | 
				
			||||||
  void set_service_uuid32(uint32_t uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_uint32(uuid); }
 | 
					  void set_service_uuid32(uint32_t uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_uint32(uuid); }
 | 
				
			||||||
  void set_service_uuid128(uint8_t *uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_raw(uuid); }
 | 
					  void set_service_uuid128(uint8_t *uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_raw(uuid); }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -18,6 +18,7 @@ class BLEClientRSSISensor : public sensor::Sensor, public PollingComponent, publ
 | 
				
			|||||||
  void loop() override;
 | 
					  void loop() override;
 | 
				
			||||||
  void update() override;
 | 
					  void update() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  void gap_event_handler(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t *param) override;
 | 
					  void gap_event_handler(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t *param) override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -24,6 +24,7 @@ class BLESensor : public sensor::Sensor, public PollingComponent, public BLEClie
 | 
				
			|||||||
  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
					  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
				
			||||||
                           esp_ble_gattc_cb_param_t *param) override;
 | 
					                           esp_ble_gattc_cb_param_t *param) override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void set_service_uuid16(uint16_t uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_uint16(uuid); }
 | 
					  void set_service_uuid16(uint16_t uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_uint16(uuid); }
 | 
				
			||||||
  void set_service_uuid32(uint32_t uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_uint32(uuid); }
 | 
					  void set_service_uuid32(uint32_t uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_uint32(uuid); }
 | 
				
			||||||
  void set_service_uuid128(uint8_t *uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_raw(uuid); }
 | 
					  void set_service_uuid128(uint8_t *uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_raw(uuid); }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -19,6 +19,7 @@ class BLEClientSwitch : public switch_::Switch, public Component, public BLEClie
 | 
				
			|||||||
  void loop() override {}
 | 
					  void loop() override {}
 | 
				
			||||||
  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
					  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
				
			||||||
                           esp_ble_gattc_cb_param_t *param) override;
 | 
					                           esp_ble_gattc_cb_param_t *param) override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  void write_state(bool state) override;
 | 
					  void write_state(bool state) override;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -20,6 +20,7 @@ class BLETextSensor : public text_sensor::TextSensor, public PollingComponent, p
 | 
				
			|||||||
  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
					  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
				
			||||||
                           esp_ble_gattc_cb_param_t *param) override;
 | 
					                           esp_ble_gattc_cb_param_t *param) override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void set_service_uuid16(uint16_t uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_uint16(uuid); }
 | 
					  void set_service_uuid16(uint16_t uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_uint16(uuid); }
 | 
				
			||||||
  void set_service_uuid32(uint32_t uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_uint32(uuid); }
 | 
					  void set_service_uuid32(uint32_t uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_uint32(uuid); }
 | 
				
			||||||
  void set_service_uuid128(uint8_t *uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_raw(uuid); }
 | 
					  void set_service_uuid128(uint8_t *uuid) { this->service_uuid_ = espbt::ESPBTUUID::from_raw(uuid); }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -105,6 +105,7 @@ class BLEPresenceDevice : public binary_sensor::BinarySensorInitiallyOff,
 | 
				
			|||||||
      this->set_found_(false);
 | 
					      this->set_found_(false);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  void set_found_(bool state) {
 | 
					  void set_found_(bool state) {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -99,6 +99,7 @@ class BLERSSISensor : public sensor::Sensor, public esp32_ble_tracker::ESPBTDevi
 | 
				
			|||||||
    return false;
 | 
					    return false;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  enum MatchType { MATCH_BY_MAC_ADDRESS, MATCH_BY_IRK, MATCH_BY_SERVICE_UUID, MATCH_BY_IBEACON_UUID };
 | 
					  enum MatchType { MATCH_BY_MAC_ADDRESS, MATCH_BY_IRK, MATCH_BY_SERVICE_UUID, MATCH_BY_IBEACON_UUID };
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -29,6 +29,7 @@ class BLEScanner : public text_sensor::TextSensor, public esp32_ble_tracker::ESP
 | 
				
			|||||||
    return true;
 | 
					    return true;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}  // namespace ble_scanner
 | 
					}  // namespace ble_scanner
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -52,21 +52,11 @@ bool BluetoothProxy::parse_device(const esp32_ble_tracker::ESPBTDevice &device)
 | 
				
			|||||||
  return true;
 | 
					  return true;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Batch size for BLE advertisements to maximize WiFi efficiency
 | 
					static constexpr size_t FLUSH_BATCH_SIZE = 8;
 | 
				
			||||||
// Each advertisement is up to 80 bytes when packaged (including protocol overhead)
 | 
					static std::vector<api::BluetoothLERawAdvertisement> &get_batch_buffer() {
 | 
				
			||||||
// Most advertisements are 20-30 bytes, allowing even more to fit per packet
 | 
					  static std::vector<api::BluetoothLERawAdvertisement> batch_buffer;
 | 
				
			||||||
// 16 advertisements × 80 bytes (worst case) = 1280 bytes out of ~1320 bytes usable payload
 | 
					  return batch_buffer;
 | 
				
			||||||
// This achieves ~97% WiFi MTU utilization while staying under the limit
 | 
					}
 | 
				
			||||||
static constexpr size_t FLUSH_BATCH_SIZE = 16;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
namespace {
 | 
					 | 
				
			||||||
// Batch buffer in anonymous namespace to avoid guard variable (saves 8 bytes)
 | 
					 | 
				
			||||||
// This is initialized at program startup before any threads
 | 
					 | 
				
			||||||
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
 | 
					 | 
				
			||||||
std::vector<api::BluetoothLERawAdvertisement> batch_buffer;
 | 
					 | 
				
			||||||
}  // namespace
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
static std::vector<api::BluetoothLERawAdvertisement> &get_batch_buffer() { return batch_buffer; }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool BluetoothProxy::parse_devices(const esp32_ble::BLEScanResult *scan_results, size_t count) {
 | 
					bool BluetoothProxy::parse_devices(const esp32_ble::BLEScanResult *scan_results, size_t count) {
 | 
				
			||||||
  if (!api::global_api_server->is_connected() || this->api_connection_ == nullptr || !this->raw_advertisements_)
 | 
					  if (!api::global_api_server->is_connected() || this->api_connection_ == nullptr || !this->raw_advertisements_)
 | 
				
			||||||
@@ -180,7 +170,7 @@ int BluetoothProxy::get_bluetooth_connections_free() {
 | 
				
			|||||||
void BluetoothProxy::loop() {
 | 
					void BluetoothProxy::loop() {
 | 
				
			||||||
  if (!api::global_api_server->is_connected() || this->api_connection_ == nullptr) {
 | 
					  if (!api::global_api_server->is_connected() || this->api_connection_ == nullptr) {
 | 
				
			||||||
    for (auto *connection : this->connections_) {
 | 
					    for (auto *connection : this->connections_) {
 | 
				
			||||||
      if (connection->get_address() != 0 && !connection->disconnect_pending()) {
 | 
					      if (connection->get_address() != 0) {
 | 
				
			||||||
        connection->disconnect();
 | 
					        connection->disconnect();
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,7 @@
 | 
				
			|||||||
import esphome.codegen as cg
 | 
					import esphome.codegen as cg
 | 
				
			||||||
from esphome.components import esp32, i2c
 | 
					from esphome.components import esp32, i2c
 | 
				
			||||||
import esphome.config_validation as cv
 | 
					import esphome.config_validation as cv
 | 
				
			||||||
from esphome.const import CONF_ID, CONF_SAMPLE_RATE, CONF_TEMPERATURE_OFFSET, Framework
 | 
					from esphome.const import CONF_ID, CONF_SAMPLE_RATE, CONF_TEMPERATURE_OFFSET
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CODEOWNERS = ["@trvrnrth"]
 | 
					CODEOWNERS = ["@trvrnrth"]
 | 
				
			||||||
DEPENDENCIES = ["i2c"]
 | 
					DEPENDENCIES = ["i2c"]
 | 
				
			||||||
@@ -56,15 +56,7 @@ CONFIG_SCHEMA = cv.All(
 | 
				
			|||||||
            ): cv.positive_time_period_minutes,
 | 
					            ): cv.positive_time_period_minutes,
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    ).extend(i2c.i2c_device_schema(0x76)),
 | 
					    ).extend(i2c.i2c_device_schema(0x76)),
 | 
				
			||||||
    cv.only_with_framework(
 | 
					    cv.only_with_arduino,
 | 
				
			||||||
        frameworks=Framework.ARDUINO,
 | 
					 | 
				
			||||||
        suggestions={
 | 
					 | 
				
			||||||
            Framework.ESP_IDF: (
 | 
					 | 
				
			||||||
                "bme68x_bsec2_i2c",
 | 
					 | 
				
			||||||
                "sensor/bme68x_bsec2",
 | 
					 | 
				
			||||||
            )
 | 
					 | 
				
			||||||
        },
 | 
					 | 
				
			||||||
    ),
 | 
					 | 
				
			||||||
    cv.Any(
 | 
					    cv.Any(
 | 
				
			||||||
        cv.only_on_esp8266,
 | 
					        cv.only_on_esp8266,
 | 
				
			||||||
        cv.All(
 | 
					        cv.All(
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -61,6 +61,8 @@ enum IIRFilter {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
class BMP581Component : public PollingComponent, public i2c::I2CDevice {
 | 
					class BMP581Component : public PollingComponent, public i2c::I2CDevice {
 | 
				
			||||||
 public:
 | 
					 public:
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1 +0,0 @@
 | 
				
			|||||||
CODEOWNERS = ["@DT-art1", "@bdraco"]
 | 
					 | 
				
			||||||
@@ -1,22 +0,0 @@
 | 
				
			|||||||
#include "camera.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
namespace esphome {
 | 
					 | 
				
			||||||
namespace camera {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
 | 
					 | 
				
			||||||
Camera *Camera::global_camera = nullptr;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Camera::Camera() {
 | 
					 | 
				
			||||||
  if (global_camera != nullptr) {
 | 
					 | 
				
			||||||
    this->status_set_error("Multiple cameras are configured, but only one is supported.");
 | 
					 | 
				
			||||||
    this->mark_failed();
 | 
					 | 
				
			||||||
    return;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  global_camera = this;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
Camera *Camera::instance() { return global_camera; }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
}  // namespace camera
 | 
					 | 
				
			||||||
}  // namespace esphome
 | 
					 | 
				
			||||||
@@ -1,80 +0,0 @@
 | 
				
			|||||||
#pragma once
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include "esphome/core/automation.h"
 | 
					 | 
				
			||||||
#include "esphome/core/component.h"
 | 
					 | 
				
			||||||
#include "esphome/core/entity_base.h"
 | 
					 | 
				
			||||||
#include "esphome/core/helpers.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
namespace esphome {
 | 
					 | 
				
			||||||
namespace camera {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/** Different sources for filtering.
 | 
					 | 
				
			||||||
 *  IDLE: Camera requests to send an image to the API.
 | 
					 | 
				
			||||||
 *  API_REQUESTER: API requests a new image.
 | 
					 | 
				
			||||||
 *  WEB_REQUESTER: ESP32 web server request an image. Ignored by API.
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
enum CameraRequester : uint8_t { IDLE, API_REQUESTER, WEB_REQUESTER };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/** Abstract camera image base class.
 | 
					 | 
				
			||||||
 *  Encapsulates the JPEG encoded data and it is shared among
 | 
					 | 
				
			||||||
 *  all connected clients.
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
class CameraImage {
 | 
					 | 
				
			||||||
 public:
 | 
					 | 
				
			||||||
  virtual uint8_t *get_data_buffer() = 0;
 | 
					 | 
				
			||||||
  virtual size_t get_data_length() = 0;
 | 
					 | 
				
			||||||
  virtual bool was_requested_by(CameraRequester requester) const = 0;
 | 
					 | 
				
			||||||
  virtual ~CameraImage() {}
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/** Abstract image reader base class.
 | 
					 | 
				
			||||||
 *  Keeps track of the data offset of the camera image and
 | 
					 | 
				
			||||||
 *  how many bytes are remaining to read. When the image
 | 
					 | 
				
			||||||
 *  is returned, the shared_ptr is reset and the camera can
 | 
					 | 
				
			||||||
 *  reuse the memory of the camera image.
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
class CameraImageReader {
 | 
					 | 
				
			||||||
 public:
 | 
					 | 
				
			||||||
  virtual void set_image(std::shared_ptr<CameraImage> image) = 0;
 | 
					 | 
				
			||||||
  virtual size_t available() const = 0;
 | 
					 | 
				
			||||||
  virtual uint8_t *peek_data_buffer() = 0;
 | 
					 | 
				
			||||||
  virtual void consume_data(size_t consumed) = 0;
 | 
					 | 
				
			||||||
  virtual void return_image() = 0;
 | 
					 | 
				
			||||||
  virtual ~CameraImageReader() {}
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/** Abstract camera base class. Collaborates with API.
 | 
					 | 
				
			||||||
 *  1) API server starts and installs callback (add_image_callback)
 | 
					 | 
				
			||||||
 *     which is called by the camera when a new image is available.
 | 
					 | 
				
			||||||
 *  2) New API client connects and creates a new image reader (create_image_reader).
 | 
					 | 
				
			||||||
 *  3) API connection receives protobuf CameraImageRequest and calls request_image.
 | 
					 | 
				
			||||||
 *  3.a) API connection receives protobuf CameraImageRequest and calls start_stream.
 | 
					 | 
				
			||||||
 *  4) Camera implementation provides JPEG data in the CameraImage and calls callback.
 | 
					 | 
				
			||||||
 *  5) API connection sets the image in the image reader.
 | 
					 | 
				
			||||||
 *  6) API connection consumes data from the image reader and returns the image when finished.
 | 
					 | 
				
			||||||
 *  7.a) Camera captures a new image and continues with 4) until start_stream is called.
 | 
					 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
class Camera : public EntityBase, public Component {
 | 
					 | 
				
			||||||
 public:
 | 
					 | 
				
			||||||
  Camera();
 | 
					 | 
				
			||||||
  // Camera implementation invokes callback to publish a new image.
 | 
					 | 
				
			||||||
  virtual void add_image_callback(std::function<void(std::shared_ptr<CameraImage>)> &&callback) = 0;
 | 
					 | 
				
			||||||
  /// Returns a new camera image reader that keeps track of the JPEG data in the camera image.
 | 
					 | 
				
			||||||
  virtual CameraImageReader *create_image_reader() = 0;
 | 
					 | 
				
			||||||
  // Connection, camera or web server requests one new JPEG image.
 | 
					 | 
				
			||||||
  virtual void request_image(CameraRequester requester) = 0;
 | 
					 | 
				
			||||||
  // Connection, camera or web server requests a stream of images.
 | 
					 | 
				
			||||||
  virtual void start_stream(CameraRequester requester) = 0;
 | 
					 | 
				
			||||||
  // Connection or web server stops the previously started stream.
 | 
					 | 
				
			||||||
  virtual void stop_stream(CameraRequester requester) = 0;
 | 
					 | 
				
			||||||
  virtual ~Camera() {}
 | 
					 | 
				
			||||||
  /// The singleton instance of the camera implementation.
 | 
					 | 
				
			||||||
  static Camera *instance();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 protected:
 | 
					 | 
				
			||||||
  // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
 | 
					 | 
				
			||||||
  static Camera *global_camera;
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
}  // namespace camera
 | 
					 | 
				
			||||||
}  // namespace esphome
 | 
					 | 
				
			||||||
@@ -46,6 +46,7 @@ class CAP1188Component : public Component, public i2c::I2CDevice {
 | 
				
			|||||||
  void set_reset_pin(GPIOPin *reset_pin) { this->reset_pin_ = reset_pin; }
 | 
					  void set_reset_pin(GPIOPin *reset_pin) { this->reset_pin_ = reset_pin; }
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void loop() override;
 | 
					  void loop() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -7,12 +7,11 @@ from esphome.const import (
 | 
				
			|||||||
    PLATFORM_BK72XX,
 | 
					    PLATFORM_BK72XX,
 | 
				
			||||||
    PLATFORM_ESP32,
 | 
					    PLATFORM_ESP32,
 | 
				
			||||||
    PLATFORM_ESP8266,
 | 
					    PLATFORM_ESP8266,
 | 
				
			||||||
    PLATFORM_LN882X,
 | 
					 | 
				
			||||||
    PLATFORM_RTL87XX,
 | 
					    PLATFORM_RTL87XX,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
from esphome.core import CORE, coroutine_with_priority
 | 
					from esphome.core import CORE, coroutine_with_priority
 | 
				
			||||||
 | 
					
 | 
				
			||||||
AUTO_LOAD = ["web_server_base", "ota.web_server"]
 | 
					AUTO_LOAD = ["web_server_base"]
 | 
				
			||||||
DEPENDENCIES = ["wifi"]
 | 
					DEPENDENCIES = ["wifi"]
 | 
				
			||||||
CODEOWNERS = ["@OttoWinter"]
 | 
					CODEOWNERS = ["@OttoWinter"]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -28,15 +27,7 @@ CONFIG_SCHEMA = cv.All(
 | 
				
			|||||||
            ),
 | 
					            ),
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    ).extend(cv.COMPONENT_SCHEMA),
 | 
					    ).extend(cv.COMPONENT_SCHEMA),
 | 
				
			||||||
    cv.only_on(
 | 
					    cv.only_on([PLATFORM_ESP32, PLATFORM_ESP8266, PLATFORM_BK72XX, PLATFORM_RTL87XX]),
 | 
				
			||||||
        [
 | 
					 | 
				
			||||||
            PLATFORM_ESP32,
 | 
					 | 
				
			||||||
            PLATFORM_ESP8266,
 | 
					 | 
				
			||||||
            PLATFORM_BK72XX,
 | 
					 | 
				
			||||||
            PLATFORM_LN882X,
 | 
					 | 
				
			||||||
            PLATFORM_RTL87XX,
 | 
					 | 
				
			||||||
        ]
 | 
					 | 
				
			||||||
    ),
 | 
					 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -47,6 +47,7 @@ void CaptivePortal::start() {
 | 
				
			|||||||
  this->base_->init();
 | 
					  this->base_->init();
 | 
				
			||||||
  if (!this->initialized_) {
 | 
					  if (!this->initialized_) {
 | 
				
			||||||
    this->base_->add_handler(this);
 | 
					    this->base_->add_handler(this);
 | 
				
			||||||
 | 
					    this->base_->add_ota_handler();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef USE_ARDUINO
 | 
					#ifdef USE_ARDUINO
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -25,6 +25,8 @@ class CCS811Component : public PollingComponent, public i2c::I2CDevice {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  optional<uint8_t> read_status_() { return this->read_byte(0x00); }
 | 
					  optional<uint8_t> read_status_() { return this->read_byte(0x00); }
 | 
				
			||||||
  bool status_has_error_() { return this->read_status_().value_or(1) & 1; }
 | 
					  bool status_has_error_() { return this->read_status_().value_or(1) & 1; }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,7 +2,6 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
CODEOWNERS = ["@esphome/core"]
 | 
					CODEOWNERS = ["@esphome/core"]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CONF_BYTE_ORDER = "byte_order"
 | 
					 | 
				
			||||||
CONF_DRAW_ROUNDING = "draw_rounding"
 | 
					CONF_DRAW_ROUNDING = "draw_rounding"
 | 
				
			||||||
CONF_ON_STATE_CHANGE = "on_state_change"
 | 
					CONF_ON_STATE_CHANGE = "on_state_change"
 | 
				
			||||||
CONF_REQUEST_HEADERS = "request_headers"
 | 
					CONF_REQUEST_HEADERS = "request_headers"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,7 @@ class CopyBinarySensor : public binary_sensor::BinarySensor, public Component {
 | 
				
			|||||||
  void set_source(binary_sensor::BinarySensor *source) { source_ = source; }
 | 
					  void set_source(binary_sensor::BinarySensor *source) { source_ = source; }
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  binary_sensor::BinarySensor *source_;
 | 
					  binary_sensor::BinarySensor *source_;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -10,6 +10,7 @@ class CopyButton : public button::Button, public Component {
 | 
				
			|||||||
 public:
 | 
					 public:
 | 
				
			||||||
  void set_source(button::Button *source) { source_ = source; }
 | 
					  void set_source(button::Button *source) { source_ = source; }
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  void press_action() override;
 | 
					  void press_action() override;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,7 @@ class CopyCover : public cover::Cover, public Component {
 | 
				
			|||||||
  void set_source(cover::Cover *source) { source_ = source; }
 | 
					  void set_source(cover::Cover *source) { source_ = source; }
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  cover::CoverTraits get_traits() override;
 | 
					  cover::CoverTraits get_traits() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,7 @@ class CopyFan : public fan::Fan, public Component {
 | 
				
			|||||||
  void set_source(fan::Fan *source) { source_ = source; }
 | 
					  void set_source(fan::Fan *source) { source_ = source; }
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fan::FanTraits get_traits() override;
 | 
					  fan::FanTraits get_traits() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,7 @@ class CopyLock : public lock::Lock, public Component {
 | 
				
			|||||||
  void set_source(lock::Lock *source) { source_ = source; }
 | 
					  void set_source(lock::Lock *source) { source_ = source; }
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  void control(const lock::LockCall &call) override;
 | 
					  void control(const lock::LockCall &call) override;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,7 @@ class CopyNumber : public number::Number, public Component {
 | 
				
			|||||||
  void set_source(number::Number *source) { source_ = source; }
 | 
					  void set_source(number::Number *source) { source_ = source; }
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  void control(float value) override;
 | 
					  void control(float value) override;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,7 @@ class CopySelect : public select::Select, public Component {
 | 
				
			|||||||
  void set_source(select::Select *source) { source_ = source; }
 | 
					  void set_source(select::Select *source) { source_ = source; }
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  void control(const std::string &value) override;
 | 
					  void control(const std::string &value) override;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,7 @@ class CopySensor : public sensor::Sensor, public Component {
 | 
				
			|||||||
  void set_source(sensor::Sensor *source) { source_ = source; }
 | 
					  void set_source(sensor::Sensor *source) { source_ = source; }
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  sensor::Sensor *source_;
 | 
					  sensor::Sensor *source_;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,7 @@ class CopySwitch : public switch_::Switch, public Component {
 | 
				
			|||||||
  void set_source(switch_::Switch *source) { source_ = source; }
 | 
					  void set_source(switch_::Switch *source) { source_ = source; }
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  void write_state(bool state) override;
 | 
					  void write_state(bool state) override;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,7 @@ class CopyText : public text::Text, public Component {
 | 
				
			|||||||
  void set_source(text::Text *source) { source_ = source; }
 | 
					  void set_source(text::Text *source) { source_ = source; }
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  void control(const std::string &value) override;
 | 
					  void control(const std::string &value) override;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,6 +11,7 @@ class CopyTextSensor : public text_sensor::TextSensor, public Component {
 | 
				
			|||||||
  void set_source(text_sensor::TextSensor *source) { source_ = source; }
 | 
					  void set_source(text_sensor::TextSensor *source) { source_ = source; }
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  text_sensor::TextSensor *source_;
 | 
					  text_sensor::TextSensor *source_;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -77,6 +77,7 @@ class CS5460AComponent : public Component,
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void loop() override {}
 | 
					  void loop() override {}
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,4 @@
 | 
				
			|||||||
import esphome.codegen as cg
 | 
					import esphome.codegen as cg
 | 
				
			||||||
from esphome.config_helpers import filter_source_files_from_platform
 | 
					 | 
				
			||||||
import esphome.config_validation as cv
 | 
					import esphome.config_validation as cv
 | 
				
			||||||
from esphome.const import (
 | 
					from esphome.const import (
 | 
				
			||||||
    CONF_BLOCK,
 | 
					    CONF_BLOCK,
 | 
				
			||||||
@@ -8,7 +7,6 @@ from esphome.const import (
 | 
				
			|||||||
    CONF_FREE,
 | 
					    CONF_FREE,
 | 
				
			||||||
    CONF_ID,
 | 
					    CONF_ID,
 | 
				
			||||||
    CONF_LOOP_TIME,
 | 
					    CONF_LOOP_TIME,
 | 
				
			||||||
    PlatformFramework,
 | 
					 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CODEOWNERS = ["@OttoWinter"]
 | 
					CODEOWNERS = ["@OttoWinter"]
 | 
				
			||||||
@@ -46,21 +44,3 @@ CONFIG_SCHEMA = cv.All(
 | 
				
			|||||||
async def to_code(config):
 | 
					async def to_code(config):
 | 
				
			||||||
    var = cg.new_Pvariable(config[CONF_ID])
 | 
					    var = cg.new_Pvariable(config[CONF_ID])
 | 
				
			||||||
    await cg.register_component(var, config)
 | 
					    await cg.register_component(var, config)
 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
FILTER_SOURCE_FILES = filter_source_files_from_platform(
 | 
					 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        "debug_esp32.cpp": {
 | 
					 | 
				
			||||||
            PlatformFramework.ESP32_ARDUINO,
 | 
					 | 
				
			||||||
            PlatformFramework.ESP32_IDF,
 | 
					 | 
				
			||||||
        },
 | 
					 | 
				
			||||||
        "debug_esp8266.cpp": {PlatformFramework.ESP8266_ARDUINO},
 | 
					 | 
				
			||||||
        "debug_host.cpp": {PlatformFramework.HOST_NATIVE},
 | 
					 | 
				
			||||||
        "debug_rp2040.cpp": {PlatformFramework.RP2040_ARDUINO},
 | 
					 | 
				
			||||||
        "debug_libretiny.cpp": {
 | 
					 | 
				
			||||||
            PlatformFramework.BK72XX_ARDUINO,
 | 
					 | 
				
			||||||
            PlatformFramework.RTL87XX_ARDUINO,
 | 
					 | 
				
			||||||
            PlatformFramework.LN882X_ARDUINO,
 | 
					 | 
				
			||||||
        },
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -53,7 +53,6 @@ void DebugComponent::on_shutdown() {
 | 
				
			|||||||
  auto pref = global_preferences->make_preference(REBOOT_MAX_LEN, fnv1_hash(REBOOT_KEY + App.get_name()));
 | 
					  auto pref = global_preferences->make_preference(REBOOT_MAX_LEN, fnv1_hash(REBOOT_KEY + App.get_name()));
 | 
				
			||||||
  if (component != nullptr) {
 | 
					  if (component != nullptr) {
 | 
				
			||||||
    strncpy(buffer, component->get_component_source(), REBOOT_MAX_LEN - 1);
 | 
					    strncpy(buffer, component->get_component_source(), REBOOT_MAX_LEN - 1);
 | 
				
			||||||
    buffer[REBOOT_MAX_LEN - 1] = '\0';
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  ESP_LOGD(TAG, "Storing reboot source: %s", buffer);
 | 
					  ESP_LOGD(TAG, "Storing reboot source: %s", buffer);
 | 
				
			||||||
  pref.save(&buffer);
 | 
					  pref.save(&buffer);
 | 
				
			||||||
@@ -69,7 +68,6 @@ std::string DebugComponent::get_reset_reason_() {
 | 
				
			|||||||
      auto pref = global_preferences->make_preference(REBOOT_MAX_LEN, fnv1_hash(REBOOT_KEY + App.get_name()));
 | 
					      auto pref = global_preferences->make_preference(REBOOT_MAX_LEN, fnv1_hash(REBOOT_KEY + App.get_name()));
 | 
				
			||||||
      char buffer[REBOOT_MAX_LEN]{};
 | 
					      char buffer[REBOOT_MAX_LEN]{};
 | 
				
			||||||
      if (pref.load(&buffer)) {
 | 
					      if (pref.load(&buffer)) {
 | 
				
			||||||
        buffer[REBOOT_MAX_LEN - 1] = '\0';
 | 
					 | 
				
			||||||
        reset_reason = "Reboot request from " + std::string(buffer);
 | 
					        reset_reason = "Reboot request from " + std::string(buffer);
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,6 @@
 | 
				
			|||||||
from esphome import automation, pins
 | 
					from esphome import automation, pins
 | 
				
			||||||
import esphome.codegen as cg
 | 
					import esphome.codegen as cg
 | 
				
			||||||
from esphome.components import esp32, time
 | 
					from esphome.components import time
 | 
				
			||||||
from esphome.components.esp32 import get_esp32_variant
 | 
					from esphome.components.esp32 import get_esp32_variant
 | 
				
			||||||
from esphome.components.esp32.const import (
 | 
					from esphome.components.esp32.const import (
 | 
				
			||||||
    VARIANT_ESP32,
 | 
					    VARIANT_ESP32,
 | 
				
			||||||
@@ -11,7 +11,6 @@ from esphome.components.esp32.const import (
 | 
				
			|||||||
    VARIANT_ESP32S2,
 | 
					    VARIANT_ESP32S2,
 | 
				
			||||||
    VARIANT_ESP32S3,
 | 
					    VARIANT_ESP32S3,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
from esphome.config_helpers import filter_source_files_from_platform
 | 
					 | 
				
			||||||
import esphome.config_validation as cv
 | 
					import esphome.config_validation as cv
 | 
				
			||||||
from esphome.const import (
 | 
					from esphome.const import (
 | 
				
			||||||
    CONF_DEFAULT,
 | 
					    CONF_DEFAULT,
 | 
				
			||||||
@@ -28,7 +27,6 @@ from esphome.const import (
 | 
				
			|||||||
    CONF_WAKEUP_PIN,
 | 
					    CONF_WAKEUP_PIN,
 | 
				
			||||||
    PLATFORM_ESP32,
 | 
					    PLATFORM_ESP32,
 | 
				
			||||||
    PLATFORM_ESP8266,
 | 
					    PLATFORM_ESP8266,
 | 
				
			||||||
    PlatformFramework,
 | 
					 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
WAKEUP_PINS = {
 | 
					WAKEUP_PINS = {
 | 
				
			||||||
@@ -116,20 +114,12 @@ def validate_pin_number(value):
 | 
				
			|||||||
    return value
 | 
					    return value
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def _validate_ex1_wakeup_mode(value):
 | 
					def validate_config(config):
 | 
				
			||||||
    if value == "ALL_LOW":
 | 
					    if get_esp32_variant() == VARIANT_ESP32C3 and CONF_ESP32_EXT1_WAKEUP in config:
 | 
				
			||||||
        esp32.only_on_variant(supported=[VARIANT_ESP32], msg_prefix="ALL_LOW")(value)
 | 
					        raise cv.Invalid("ESP32-C3 does not support wakeup from touch.")
 | 
				
			||||||
    if value == "ANY_LOW":
 | 
					    if get_esp32_variant() == VARIANT_ESP32C3 and CONF_TOUCH_WAKEUP in config:
 | 
				
			||||||
        esp32.only_on_variant(
 | 
					        raise cv.Invalid("ESP32-C3 does not support wakeup from ext1")
 | 
				
			||||||
            supported=[
 | 
					    return config
 | 
				
			||||||
                VARIANT_ESP32S2,
 | 
					 | 
				
			||||||
                VARIANT_ESP32S3,
 | 
					 | 
				
			||||||
                VARIANT_ESP32C6,
 | 
					 | 
				
			||||||
                VARIANT_ESP32H2,
 | 
					 | 
				
			||||||
            ],
 | 
					 | 
				
			||||||
            msg_prefix="ANY_LOW",
 | 
					 | 
				
			||||||
        )(value)
 | 
					 | 
				
			||||||
    return value
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
deep_sleep_ns = cg.esphome_ns.namespace("deep_sleep")
 | 
					deep_sleep_ns = cg.esphome_ns.namespace("deep_sleep")
 | 
				
			||||||
@@ -156,7 +146,6 @@ WAKEUP_PIN_MODES = {
 | 
				
			|||||||
esp_sleep_ext1_wakeup_mode_t = cg.global_ns.enum("esp_sleep_ext1_wakeup_mode_t")
 | 
					esp_sleep_ext1_wakeup_mode_t = cg.global_ns.enum("esp_sleep_ext1_wakeup_mode_t")
 | 
				
			||||||
Ext1Wakeup = deep_sleep_ns.struct("Ext1Wakeup")
 | 
					Ext1Wakeup = deep_sleep_ns.struct("Ext1Wakeup")
 | 
				
			||||||
EXT1_WAKEUP_MODES = {
 | 
					EXT1_WAKEUP_MODES = {
 | 
				
			||||||
    "ANY_LOW": esp_sleep_ext1_wakeup_mode_t.ESP_EXT1_WAKEUP_ANY_LOW,
 | 
					 | 
				
			||||||
    "ALL_LOW": esp_sleep_ext1_wakeup_mode_t.ESP_EXT1_WAKEUP_ALL_LOW,
 | 
					    "ALL_LOW": esp_sleep_ext1_wakeup_mode_t.ESP_EXT1_WAKEUP_ALL_LOW,
 | 
				
			||||||
    "ANY_HIGH": esp_sleep_ext1_wakeup_mode_t.ESP_EXT1_WAKEUP_ANY_HIGH,
 | 
					    "ANY_HIGH": esp_sleep_ext1_wakeup_mode_t.ESP_EXT1_WAKEUP_ANY_HIGH,
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -196,28 +185,16 @@ CONFIG_SCHEMA = cv.All(
 | 
				
			|||||||
            ),
 | 
					            ),
 | 
				
			||||||
            cv.Optional(CONF_ESP32_EXT1_WAKEUP): cv.All(
 | 
					            cv.Optional(CONF_ESP32_EXT1_WAKEUP): cv.All(
 | 
				
			||||||
                cv.only_on_esp32,
 | 
					                cv.only_on_esp32,
 | 
				
			||||||
                esp32.only_on_variant(
 | 
					 | 
				
			||||||
                    unsupported=[VARIANT_ESP32C3], msg_prefix="Wakeup from ext1"
 | 
					 | 
				
			||||||
                ),
 | 
					 | 
				
			||||||
                cv.Schema(
 | 
					                cv.Schema(
 | 
				
			||||||
                    {
 | 
					                    {
 | 
				
			||||||
                        cv.Required(CONF_PINS): cv.ensure_list(
 | 
					                        cv.Required(CONF_PINS): cv.ensure_list(
 | 
				
			||||||
                            pins.internal_gpio_input_pin_schema, validate_pin_number
 | 
					                            pins.internal_gpio_input_pin_schema, validate_pin_number
 | 
				
			||||||
                        ),
 | 
					                        ),
 | 
				
			||||||
                        cv.Required(CONF_MODE): cv.All(
 | 
					                        cv.Required(CONF_MODE): cv.enum(EXT1_WAKEUP_MODES, upper=True),
 | 
				
			||||||
                            cv.enum(EXT1_WAKEUP_MODES, upper=True),
 | 
					 | 
				
			||||||
                            _validate_ex1_wakeup_mode,
 | 
					 | 
				
			||||||
                        ),
 | 
					 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                ),
 | 
					                ),
 | 
				
			||||||
            ),
 | 
					            ),
 | 
				
			||||||
            cv.Optional(CONF_TOUCH_WAKEUP): cv.All(
 | 
					            cv.Optional(CONF_TOUCH_WAKEUP): cv.All(cv.only_on_esp32, cv.boolean),
 | 
				
			||||||
                cv.only_on_esp32,
 | 
					 | 
				
			||||||
                esp32.only_on_variant(
 | 
					 | 
				
			||||||
                    unsupported=[VARIANT_ESP32C3], msg_prefix="Wakeup from touch"
 | 
					 | 
				
			||||||
                ),
 | 
					 | 
				
			||||||
                cv.boolean,
 | 
					 | 
				
			||||||
            ),
 | 
					 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    ).extend(cv.COMPONENT_SCHEMA),
 | 
					    ).extend(cv.COMPONENT_SCHEMA),
 | 
				
			||||||
    cv.only_on([PLATFORM_ESP32, PLATFORM_ESP8266]),
 | 
					    cv.only_on([PLATFORM_ESP32, PLATFORM_ESP8266]),
 | 
				
			||||||
@@ -336,14 +313,3 @@ async def deep_sleep_action_to_code(config, action_id, template_arg, args):
 | 
				
			|||||||
    var = cg.new_Pvariable(action_id, template_arg)
 | 
					    var = cg.new_Pvariable(action_id, template_arg)
 | 
				
			||||||
    await cg.register_parented(var, config[CONF_ID])
 | 
					    await cg.register_parented(var, config[CONF_ID])
 | 
				
			||||||
    return var
 | 
					    return var
 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
FILTER_SOURCE_FILES = filter_source_files_from_platform(
 | 
					 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        "deep_sleep_esp32.cpp": {
 | 
					 | 
				
			||||||
            PlatformFramework.ESP32_ARDUINO,
 | 
					 | 
				
			||||||
            PlatformFramework.ESP32_IDF,
 | 
					 | 
				
			||||||
        },
 | 
					 | 
				
			||||||
        "deep_sleep_esp8266.cpp": {PlatformFramework.ESP8266_ARDUINO},
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,5 @@
 | 
				
			|||||||
#include "display.h"
 | 
					#include "display.h"
 | 
				
			||||||
#include <utility>
 | 
					#include <utility>
 | 
				
			||||||
#include <numbers>
 | 
					 | 
				
			||||||
#include "display_color_utils.h"
 | 
					#include "display_color_utils.h"
 | 
				
			||||||
#include "esphome/core/hal.h"
 | 
					#include "esphome/core/hal.h"
 | 
				
			||||||
#include "esphome/core/log.h"
 | 
					#include "esphome/core/log.h"
 | 
				
			||||||
@@ -425,15 +424,15 @@ void HOT Display::get_regular_polygon_vertex(int vertex_id, int *vertex_x, int *
 | 
				
			|||||||
    // hence we rotate the shape by 270° to orient the polygon up.
 | 
					    // hence we rotate the shape by 270° to orient the polygon up.
 | 
				
			||||||
    rotation_degrees += ROTATION_270_DEGREES;
 | 
					    rotation_degrees += ROTATION_270_DEGREES;
 | 
				
			||||||
    // Convert the rotation to radians, easier to use in trigonometrical calculations
 | 
					    // Convert the rotation to radians, easier to use in trigonometrical calculations
 | 
				
			||||||
    float rotation_radians = rotation_degrees * std::numbers::pi / 180;
 | 
					    float rotation_radians = rotation_degrees * PI / 180;
 | 
				
			||||||
    // A pointy top variation means the first vertex of the polygon is at the top center of the shape, this requires no
 | 
					    // A pointy top variation means the first vertex of the polygon is at the top center of the shape, this requires no
 | 
				
			||||||
    // additional rotation of the shape.
 | 
					    // additional rotation of the shape.
 | 
				
			||||||
    // A flat top variation means the first point of the polygon has to be rotated so that the first edge is horizontal,
 | 
					    // A flat top variation means the first point of the polygon has to be rotated so that the first edge is horizontal,
 | 
				
			||||||
    // this requires to rotate the shape by π/edges radians counter-clockwise so that the first point is located on the
 | 
					    // this requires to rotate the shape by π/edges radians counter-clockwise so that the first point is located on the
 | 
				
			||||||
    // left side of the first horizontal edge.
 | 
					    // left side of the first horizontal edge.
 | 
				
			||||||
    rotation_radians -= (variation == VARIATION_FLAT_TOP) ? std::numbers::pi / edges : 0.0;
 | 
					    rotation_radians -= (variation == VARIATION_FLAT_TOP) ? PI / edges : 0.0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    float vertex_angle = ((float) vertex_id) / edges * 2 * std::numbers::pi + rotation_radians;
 | 
					    float vertex_angle = ((float) vertex_id) / edges * 2 * PI + rotation_radians;
 | 
				
			||||||
    *vertex_x = (int) round(cos(vertex_angle) * radius) + center_x;
 | 
					    *vertex_x = (int) round(cos(vertex_angle) * radius) + center_x;
 | 
				
			||||||
    *vertex_y = (int) round(sin(vertex_angle) * radius) + center_y;
 | 
					    *vertex_y = (int) round(sin(vertex_angle) * radius) + center_y;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -138,6 +138,8 @@ enum DisplayRotation {
 | 
				
			|||||||
  DISPLAY_ROTATION_270_DEGREES = 270,
 | 
					  DISPLAY_ROTATION_270_DEGREES = 270,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define PI 3.1415926535897932384626433832795
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const int EDGES_TRIGON = 3;
 | 
					const int EDGES_TRIGON = 3;
 | 
				
			||||||
const int EDGES_TRIANGLE = 3;
 | 
					const int EDGES_TRIANGLE = 3;
 | 
				
			||||||
const int EDGES_TETRAGON = 4;
 | 
					const int EDGES_TETRAGON = 4;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1 +0,0 @@
 | 
				
			|||||||
CODEOWNERS = ["@mrk-its"]
 | 
					 | 
				
			||||||
@@ -1,209 +0,0 @@
 | 
				
			|||||||
#include "ds2484.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
namespace esphome {
 | 
					 | 
				
			||||||
namespace ds2484 {
 | 
					 | 
				
			||||||
static const char *const TAG = "ds2484.onewire";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
void DS2484OneWireBus::setup() {
 | 
					 | 
				
			||||||
  ESP_LOGCONFIG(TAG, "Running setup");
 | 
					 | 
				
			||||||
  this->reset_device();
 | 
					 | 
				
			||||||
  this->search();
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
void DS2484OneWireBus::dump_config() {
 | 
					 | 
				
			||||||
  ESP_LOGCONFIG(TAG, "1-wire bus:");
 | 
					 | 
				
			||||||
  this->dump_devices_(TAG);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool DS2484OneWireBus::read_status_(uint8_t *status) {
 | 
					 | 
				
			||||||
  for (uint8_t retry_nr = 0; retry_nr < 10; retry_nr++) {
 | 
					 | 
				
			||||||
    if (this->read(status, 1) != i2c::ERROR_OK) {
 | 
					 | 
				
			||||||
      ESP_LOGE(TAG, "read status error");
 | 
					 | 
				
			||||||
      return false;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    ESP_LOGVV(TAG, "status: %02x", *status);
 | 
					 | 
				
			||||||
    if (!(*status & 1)) {
 | 
					 | 
				
			||||||
      return true;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  ESP_LOGE(TAG, "read status error: too many retries");
 | 
					 | 
				
			||||||
  return false;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool DS2484OneWireBus::wait_for_completion_() {
 | 
					 | 
				
			||||||
  uint8_t status;
 | 
					 | 
				
			||||||
  return this->read_status_(&status);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool DS2484OneWireBus::reset_device() {
 | 
					 | 
				
			||||||
  ESP_LOGVV(TAG, "reset_device");
 | 
					 | 
				
			||||||
  uint8_t device_reset_cmd = 0xf0;
 | 
					 | 
				
			||||||
  uint8_t response;
 | 
					 | 
				
			||||||
  if (this->write(&device_reset_cmd, 1) != i2c::ERROR_OK) {
 | 
					 | 
				
			||||||
    return false;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  if (!this->wait_for_completion_()) {
 | 
					 | 
				
			||||||
    ESP_LOGE(TAG, "reset_device: can't complete");
 | 
					 | 
				
			||||||
    return false;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  uint8_t config = (this->active_pullup_ ? 1 : 0) | (this->strong_pullup_ ? 4 : 0);
 | 
					 | 
				
			||||||
  uint8_t write_config[2] = {0xd2, (uint8_t) (config | (~config << 4))};
 | 
					 | 
				
			||||||
  if (this->write(write_config, 2) != i2c::ERROR_OK) {
 | 
					 | 
				
			||||||
    ESP_LOGE(TAG, "reset_device: can't write config");
 | 
					 | 
				
			||||||
    return false;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  if (this->read(&response, 1) != i2c::ERROR_OK) {
 | 
					 | 
				
			||||||
    ESP_LOGE(TAG, "can't read read8 response");
 | 
					 | 
				
			||||||
    return false;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  if (response != (write_config[1] & 0xf)) {
 | 
					 | 
				
			||||||
    ESP_LOGE(TAG, "configuration didn't update");
 | 
					 | 
				
			||||||
    return false;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  return true;
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
int DS2484OneWireBus::reset_int() {
 | 
					 | 
				
			||||||
  ESP_LOGVV(TAG, "reset");
 | 
					 | 
				
			||||||
  uint8_t reset_cmd = 0xb4;
 | 
					 | 
				
			||||||
  if (this->write(&reset_cmd, 1) != i2c::ERROR_OK) {
 | 
					 | 
				
			||||||
    return -1;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  return this->wait_for_completion_() ? 1 : 0;
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
void DS2484OneWireBus::write8_(uint8_t value) {
 | 
					 | 
				
			||||||
  uint8_t buffer[2] = {0xa5, value};
 | 
					 | 
				
			||||||
  this->write(buffer, 2);
 | 
					 | 
				
			||||||
  this->wait_for_completion_();
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
void DS2484OneWireBus::write8(uint8_t value) {
 | 
					 | 
				
			||||||
  ESP_LOGVV(TAG, "write8: %02x", value);
 | 
					 | 
				
			||||||
  this->write8_(value);
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
void DS2484OneWireBus::write64(uint64_t value) {
 | 
					 | 
				
			||||||
  ESP_LOGVV(TAG, "write64: %llx", value);
 | 
					 | 
				
			||||||
  for (uint8_t i = 0; i < 8; i++) {
 | 
					 | 
				
			||||||
    this->write8_((value >> (i * 8)) & 0xff);
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
uint8_t DS2484OneWireBus::read8() {
 | 
					 | 
				
			||||||
  uint8_t read8_cmd = 0x96;
 | 
					 | 
				
			||||||
  uint8_t set_read_reg_cmd[2] = {0xe1, 0xe1};
 | 
					 | 
				
			||||||
  uint8_t response = 0;
 | 
					 | 
				
			||||||
  if (this->write(&read8_cmd, 1) != i2c::ERROR_OK) {
 | 
					 | 
				
			||||||
    ESP_LOGE(TAG, "can't write read8 cmd");
 | 
					 | 
				
			||||||
    return 0;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  this->wait_for_completion_();
 | 
					 | 
				
			||||||
  if (this->write(set_read_reg_cmd, 2) != i2c::ERROR_OK) {
 | 
					 | 
				
			||||||
    ESP_LOGE(TAG, "can't set read data reg");
 | 
					 | 
				
			||||||
    return 0;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  if (this->read(&response, 1) != i2c::ERROR_OK) {
 | 
					 | 
				
			||||||
    ESP_LOGE(TAG, "can't read read8 response");
 | 
					 | 
				
			||||||
    return 0;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  return response;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
uint64_t DS2484OneWireBus::read64() {
 | 
					 | 
				
			||||||
  uint8_t response = 0;
 | 
					 | 
				
			||||||
  for (uint8_t i = 0; i < 8; i++) {
 | 
					 | 
				
			||||||
    response |= (this->read8() << (i * 8));
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  return response;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
void DS2484OneWireBus::reset_search() {
 | 
					 | 
				
			||||||
  this->last_discrepancy_ = 0;
 | 
					 | 
				
			||||||
  this->last_device_flag_ = false;
 | 
					 | 
				
			||||||
  this->address_ = 0;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
bool DS2484OneWireBus::one_wire_triple_(bool *branch, bool *id_bit, bool *cmp_id_bit) {
 | 
					 | 
				
			||||||
  uint8_t buffer[2] = {(uint8_t) 0x78, (uint8_t) (*branch ? 0x80u : 0)};
 | 
					 | 
				
			||||||
  uint8_t status;
 | 
					 | 
				
			||||||
  if (!this->read_status_(&status)) {
 | 
					 | 
				
			||||||
    ESP_LOGE(TAG, "one_wire_triple start: read status error");
 | 
					 | 
				
			||||||
    return false;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  if (this->write(buffer, 2) != i2c::ERROR_OK) {
 | 
					 | 
				
			||||||
    ESP_LOGV(TAG, "one_wire_triple: can't write cmd");
 | 
					 | 
				
			||||||
    return false;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  if (!this->read_status_(&status)) {
 | 
					 | 
				
			||||||
    ESP_LOGE(TAG, "one_wire_triple: read status error");
 | 
					 | 
				
			||||||
    return false;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  *id_bit = bool(status & 0x20);
 | 
					 | 
				
			||||||
  *cmp_id_bit = bool(status & 0x40);
 | 
					 | 
				
			||||||
  *branch = bool(status & 0x80);
 | 
					 | 
				
			||||||
  return true;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
uint64_t IRAM_ATTR DS2484OneWireBus::search_int() {
 | 
					 | 
				
			||||||
  ESP_LOGVV(TAG, "search_int");
 | 
					 | 
				
			||||||
  if (this->last_device_flag_) {
 | 
					 | 
				
			||||||
    ESP_LOGVV(TAG, "last device flag set, quitting");
 | 
					 | 
				
			||||||
    return 0u;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  uint8_t last_zero = 0;
 | 
					 | 
				
			||||||
  uint64_t bit_mask = 1;
 | 
					 | 
				
			||||||
  uint64_t address = this->address_;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  // Initiate search
 | 
					 | 
				
			||||||
  for (uint8_t bit_number = 1; bit_number <= 64; bit_number++, bit_mask <<= 1) {
 | 
					 | 
				
			||||||
    bool branch;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // compute branch value for the case when there is a discrepancy
 | 
					 | 
				
			||||||
    // (there are devices with both 0s and 1s at this bit)
 | 
					 | 
				
			||||||
    if (bit_number < this->last_discrepancy_) {
 | 
					 | 
				
			||||||
      branch = (address & bit_mask) > 0;
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
      branch = bit_number == this->last_discrepancy_;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    bool id_bit, cmp_id_bit;
 | 
					 | 
				
			||||||
    bool branch_before = branch;
 | 
					 | 
				
			||||||
    if (!this->one_wire_triple_(&branch, &id_bit, &cmp_id_bit)) {
 | 
					 | 
				
			||||||
      ESP_LOGW(TAG, "one wire triple error, quitting");
 | 
					 | 
				
			||||||
      return 0;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    if (id_bit && cmp_id_bit) {
 | 
					 | 
				
			||||||
      ESP_LOGW(TAG, "no devices on the bus, quitting");
 | 
					 | 
				
			||||||
      // No devices participating in search
 | 
					 | 
				
			||||||
      return 0;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    if (!id_bit && !cmp_id_bit && !branch) {
 | 
					 | 
				
			||||||
      last_zero = bit_number;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    ESP_LOGVV(TAG, "%d %d branch: %d %d", id_bit, cmp_id_bit, branch_before, branch);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    if (branch) {
 | 
					 | 
				
			||||||
      address |= bit_mask;
 | 
					 | 
				
			||||||
    } else {
 | 
					 | 
				
			||||||
      address &= ~bit_mask;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  ESP_LOGVV(TAG, "last_discepancy: %d", last_zero);
 | 
					 | 
				
			||||||
  ESP_LOGVV(TAG, "address: %llx", address);
 | 
					 | 
				
			||||||
  this->last_discrepancy_ = last_zero;
 | 
					 | 
				
			||||||
  if (this->last_discrepancy_ == 0) {
 | 
					 | 
				
			||||||
    // we're at root and have no choices left, so this was the last one.
 | 
					 | 
				
			||||||
    this->last_device_flag_ = true;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  this->address_ = address;
 | 
					 | 
				
			||||||
  return address;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
}  // namespace ds2484
 | 
					 | 
				
			||||||
}  // namespace esphome
 | 
					 | 
				
			||||||
@@ -1,43 +0,0 @@
 | 
				
			|||||||
#pragma once
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include "esphome/core/component.h"
 | 
					 | 
				
			||||||
#include "esphome/core/hal.h"
 | 
					 | 
				
			||||||
#include "esphome/core/preferences.h"
 | 
					 | 
				
			||||||
#include "esphome/components/i2c/i2c.h"
 | 
					 | 
				
			||||||
#include "esphome/components/one_wire/one_wire.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
namespace esphome {
 | 
					 | 
				
			||||||
namespace ds2484 {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
class DS2484OneWireBus : public one_wire::OneWireBus, public i2c::I2CDevice, public Component {
 | 
					 | 
				
			||||||
 public:
 | 
					 | 
				
			||||||
  void setup() override;
 | 
					 | 
				
			||||||
  void dump_config() override;
 | 
					 | 
				
			||||||
  float get_setup_priority() const override { return setup_priority::BUS - 1.0; }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  bool reset_device();
 | 
					 | 
				
			||||||
  int reset_int() override;
 | 
					 | 
				
			||||||
  void write8(uint8_t) override;
 | 
					 | 
				
			||||||
  void write64(uint64_t) override;
 | 
					 | 
				
			||||||
  uint8_t read8() override;
 | 
					 | 
				
			||||||
  uint64_t read64() override;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  void set_active_pullup(bool value) { this->active_pullup_ = value; }
 | 
					 | 
				
			||||||
  void set_strong_pullup(bool value) { this->strong_pullup_ = value; }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 protected:
 | 
					 | 
				
			||||||
  void reset_search() override;
 | 
					 | 
				
			||||||
  uint64_t search_int() override;
 | 
					 | 
				
			||||||
  bool read_status_(uint8_t *);
 | 
					 | 
				
			||||||
  bool wait_for_completion_();
 | 
					 | 
				
			||||||
  void write8_(uint8_t);
 | 
					 | 
				
			||||||
  bool one_wire_triple_(bool *branch, bool *id_bit, bool *cmp_id_bit);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  uint64_t address_;
 | 
					 | 
				
			||||||
  uint8_t last_discrepancy_{0};
 | 
					 | 
				
			||||||
  bool last_device_flag_{false};
 | 
					 | 
				
			||||||
  bool active_pullup_{false};
 | 
					 | 
				
			||||||
  bool strong_pullup_{false};
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
}  // namespace ds2484
 | 
					 | 
				
			||||||
}  // namespace esphome
 | 
					 | 
				
			||||||
@@ -1,37 +0,0 @@
 | 
				
			|||||||
import esphome.codegen as cg
 | 
					 | 
				
			||||||
from esphome.components import i2c
 | 
					 | 
				
			||||||
from esphome.components.one_wire import OneWireBus
 | 
					 | 
				
			||||||
import esphome.config_validation as cv
 | 
					 | 
				
			||||||
from esphome.const import CONF_ID
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
ds2484_ns = cg.esphome_ns.namespace("ds2484")
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
CONF_ACTIVE_PULLUP = "active_pullup"
 | 
					 | 
				
			||||||
CONF_STRONG_PULLUP = "strong_pullup"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
CODEOWNERS = ["@mrk-its"]
 | 
					 | 
				
			||||||
DEPENDENCIES = ["i2c"]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
DS2484OneWireBus = ds2484_ns.class_(
 | 
					 | 
				
			||||||
    "DS2484OneWireBus", OneWireBus, i2c.I2CDevice, cg.Component
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
CONFIG_SCHEMA = (
 | 
					 | 
				
			||||||
    cv.Schema(
 | 
					 | 
				
			||||||
        {
 | 
					 | 
				
			||||||
            cv.GenerateID(): cv.declare_id(DS2484OneWireBus),
 | 
					 | 
				
			||||||
            cv.Optional(CONF_ACTIVE_PULLUP, default=False): cv.boolean,
 | 
					 | 
				
			||||||
            cv.Optional(CONF_STRONG_PULLUP, default=False): cv.boolean,
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    )
 | 
					 | 
				
			||||||
    .extend(cv.COMPONENT_SCHEMA)
 | 
					 | 
				
			||||||
    .extend(i2c.i2c_device_schema(0x18))
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
async def to_code(config):
 | 
					 | 
				
			||||||
    var = cg.new_Pvariable(config[CONF_ID])
 | 
					 | 
				
			||||||
    await i2c.register_i2c_device(var, config)
 | 
					 | 
				
			||||||
    await cg.register_component(var, config)
 | 
					 | 
				
			||||||
    cg.add(var.set_active_pullup(config[CONF_ACTIVE_PULLUP]))
 | 
					 | 
				
			||||||
    cg.add(var.set_strong_pullup(config[CONF_STRONG_PULLUP]))
 | 
					 | 
				
			||||||
@@ -19,6 +19,7 @@ class DutyTimeSensor : public sensor::Sensor, public PollingComponent {
 | 
				
			|||||||
  void update() override;
 | 
					  void update() override;
 | 
				
			||||||
  void loop() override;
 | 
					  void loop() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  void start();
 | 
					  void start();
 | 
				
			||||||
  void stop();
 | 
					  void stop();
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,7 +4,6 @@
 | 
				
			|||||||
#include "esphome/components/network/ip_address.h"
 | 
					#include "esphome/components/network/ip_address.h"
 | 
				
			||||||
#include "esphome/core/log.h"
 | 
					#include "esphome/core/log.h"
 | 
				
			||||||
#include "esphome/core/util.h"
 | 
					#include "esphome/core/util.h"
 | 
				
			||||||
#include "esphome/core/helpers.h"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <lwip/igmp.h>
 | 
					#include <lwip/igmp.h>
 | 
				
			||||||
#include <lwip/init.h>
 | 
					#include <lwip/init.h>
 | 
				
			||||||
@@ -72,11 +71,7 @@ bool E131Component::join_igmp_groups_() {
 | 
				
			|||||||
    ip4_addr_t multicast_addr =
 | 
					    ip4_addr_t multicast_addr =
 | 
				
			||||||
        network::IPAddress(239, 255, ((universe.first >> 8) & 0xff), ((universe.first >> 0) & 0xff));
 | 
					        network::IPAddress(239, 255, ((universe.first >> 8) & 0xff), ((universe.first >> 0) & 0xff));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    err_t err;
 | 
					    auto err = igmp_joingroup(IP4_ADDR_ANY4, &multicast_addr);
 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
      LwIPLock lock;
 | 
					 | 
				
			||||||
      err = igmp_joingroup(IP4_ADDR_ANY4, &multicast_addr);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (err) {
 | 
					    if (err) {
 | 
				
			||||||
      ESP_LOGW(TAG, "IGMP join for %d universe of E1.31 failed. Multicast might not work.", universe.first);
 | 
					      ESP_LOGW(TAG, "IGMP join for %d universe of E1.31 failed. Multicast might not work.", universe.first);
 | 
				
			||||||
@@ -109,7 +104,6 @@ void E131Component::leave_(int universe) {
 | 
				
			|||||||
  if (listen_method_ == E131_MULTICAST) {
 | 
					  if (listen_method_ == E131_MULTICAST) {
 | 
				
			||||||
    ip4_addr_t multicast_addr = network::IPAddress(239, 255, ((universe >> 8) & 0xff), ((universe >> 0) & 0xff));
 | 
					    ip4_addr_t multicast_addr = network::IPAddress(239, 255, ((universe >> 8) & 0xff), ((universe >> 0) & 0xff));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    LwIPLock lock;
 | 
					 | 
				
			||||||
    igmp_leavegroup(IP4_ADDR_ANY4, &multicast_addr);
 | 
					    igmp_leavegroup(IP4_ADDR_ANY4, &multicast_addr);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -18,6 +18,7 @@ class ENS160Component : public PollingComponent, public sensor::Sensor {
 | 
				
			|||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
  void update() override;
 | 
					  void update() override;
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 protected:
 | 
					 protected:
 | 
				
			||||||
  void send_env_data_();
 | 
					  void send_env_data_();
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -25,6 +25,7 @@ class ES7210 : public audio_adc::AudioAdc, public Component, public i2c::I2CDevi
 | 
				
			|||||||
   */
 | 
					   */
 | 
				
			||||||
 public:
 | 
					 public:
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  void set_bits_per_sample(ES7210BitsPerSample bits_per_sample) { this->bits_per_sample_ = bits_per_sample; }
 | 
					  void set_bits_per_sample(ES7210BitsPerSample bits_per_sample) { this->bits_per_sample_ = bits_per_sample; }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -14,6 +14,7 @@ class ES7243E : public audio_adc::AudioAdc, public Component, public i2c::I2CDev
 | 
				
			|||||||
   */
 | 
					   */
 | 
				
			||||||
 public:
 | 
					 public:
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  bool set_mic_gain(float mic_gain) override;
 | 
					  bool set_mic_gain(float mic_gain) override;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -14,6 +14,7 @@ class ES8156 : public audio_dac::AudioDac, public Component, public i2c::I2CDevi
 | 
				
			|||||||
  /////////////////////////
 | 
					  /////////////////////////
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  ////////////////////////
 | 
					  ////////////////////////
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -50,6 +50,7 @@ class ES8311 : public audio_dac::AudioDac, public Component, public i2c::I2CDevi
 | 
				
			|||||||
  /////////////////////////
 | 
					  /////////////////////////
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  void setup() override;
 | 
					  void setup() override;
 | 
				
			||||||
 | 
					  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
				
			||||||
  void dump_config() override;
 | 
					  void dump_config() override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  ////////////////////////
 | 
					  ////////////////////////
 | 
				
			||||||
 
 | 
				
			|||||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user