mirror of
				https://github.com/esphome/esphome.git
				synced 2025-11-03 16:41:50 +00:00 
			
		
		
		
	Compare commits
	
		
			3 Commits
		
	
	
		
			jesserockz
			...
			jesserockz
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					a6e7e48b73 | ||
| 
						 | 
					f80610d958 | ||
| 
						 | 
					1aacf13888 | 
@@ -1,222 +0,0 @@
 | 
			
		||||
# ESPHome AI Collaboration Guide
 | 
			
		||||
 | 
			
		||||
This document provides essential context for AI models interacting with this project. Adhering to these guidelines will ensure consistency and maintain code quality.
 | 
			
		||||
 | 
			
		||||
## 1. Project Overview & Purpose
 | 
			
		||||
 | 
			
		||||
*   **Primary Goal:** ESPHome is a system to configure microcontrollers (like ESP32, ESP8266, RP2040, and LibreTiny-based chips) using simple yet powerful YAML configuration files. It generates C++ firmware that can be compiled and flashed to these devices, allowing users to control them remotely through home automation systems.
 | 
			
		||||
*   **Business Domain:** Internet of Things (IoT), Home Automation.
 | 
			
		||||
 | 
			
		||||
## 2. Core Technologies & Stack
 | 
			
		||||
 | 
			
		||||
*   **Languages:** Python (>=3.10), C++ (gnu++20)
 | 
			
		||||
*   **Frameworks & Runtimes:** PlatformIO, Arduino, ESP-IDF.
 | 
			
		||||
*   **Build Systems:** PlatformIO is the primary build system. CMake is used as an alternative.
 | 
			
		||||
*   **Configuration:** YAML.
 | 
			
		||||
*   **Key Libraries/Dependencies:**
 | 
			
		||||
    *   **Python:** `voluptuous` (for configuration validation), `PyYAML` (for parsing configuration files), `paho-mqtt` (for MQTT communication), `tornado` (for the web server), `aioesphomeapi` (for the native API).
 | 
			
		||||
    *   **C++:** `ArduinoJson` (for JSON serialization/deserialization), `AsyncMqttClient-esphome` (for MQTT), `ESPAsyncWebServer` (for the web server).
 | 
			
		||||
*   **Package Manager(s):** `pip` (for Python dependencies), `platformio` (for C++/PlatformIO dependencies).
 | 
			
		||||
*   **Communication Protocols:** Protobuf (for native API), MQTT, HTTP.
 | 
			
		||||
 | 
			
		||||
## 3. Architectural Patterns
 | 
			
		||||
 | 
			
		||||
*   **Overall Architecture:** The project follows a code-generation architecture. The Python code parses user-defined YAML configuration files and generates C++ source code. This C++ code is then compiled and flashed to the target microcontroller using PlatformIO.
 | 
			
		||||
 | 
			
		||||
*   **Directory Structure Philosophy:**
 | 
			
		||||
    *   `/esphome`: Contains the core Python source code for the ESPHome application.
 | 
			
		||||
    *   `/esphome/components`: Contains the individual components that can be used in ESPHome configurations. Each component is a self-contained unit with its own C++ and Python code.
 | 
			
		||||
    *   `/tests`: Contains all unit and integration tests for the Python code.
 | 
			
		||||
    *   `/docker`: Contains Docker-related files for building and running ESPHome in a container.
 | 
			
		||||
    *   `/script`: Contains helper scripts for development and maintenance.
 | 
			
		||||
 | 
			
		||||
*   **Core Architectural Components:**
 | 
			
		||||
    1.  **Configuration System** (`esphome/config*.py`): Handles YAML parsing and validation using Voluptuous, schema definitions, and multi-platform configurations.
 | 
			
		||||
    2.  **Code Generation** (`esphome/codegen.py`, `esphome/cpp_generator.py`): Manages Python to C++ code generation, template processing, and build flag management.
 | 
			
		||||
    3.  **Component System** (`esphome/components/`): Contains modular hardware and software components with platform-specific implementations and dependency management.
 | 
			
		||||
    4.  **Core Framework** (`esphome/core/`): Manages the application lifecycle, hardware abstraction, and component registration.
 | 
			
		||||
    5.  **Dashboard** (`esphome/dashboard/`): A web-based interface for device configuration, management, and OTA updates.
 | 
			
		||||
 | 
			
		||||
*   **Platform Support:**
 | 
			
		||||
    1.  **ESP32** (`components/esp32/`): Espressif ESP32 family. Supports multiple variants (S2, S3, C3, etc.) and both IDF and Arduino frameworks.
 | 
			
		||||
    2.  **ESP8266** (`components/esp8266/`): Espressif ESP8266. Arduino framework only, with memory constraints.
 | 
			
		||||
    3.  **RP2040** (`components/rp2040/`): Raspberry Pi Pico/RP2040. Arduino framework with PIO (Programmable I/O) support.
 | 
			
		||||
    4.  **LibreTiny** (`components/libretiny/`): Realtek and Beken chips. Supports multiple chip families and auto-generated components.
 | 
			
		||||
 | 
			
		||||
## 4. Coding Conventions & Style Guide
 | 
			
		||||
 | 
			
		||||
*   **Formatting:**
 | 
			
		||||
    *   **Python:** Uses `ruff` and `flake8` for linting and formatting. Configuration is in `pyproject.toml`.
 | 
			
		||||
    *   **C++:** Uses `clang-format` for formatting. Configuration is in `.clang-format`.
 | 
			
		||||
 | 
			
		||||
*   **Naming Conventions:**
 | 
			
		||||
    *   **Python:** Follows PEP 8. Use clear, descriptive names following snake_case.
 | 
			
		||||
    *   **C++:** Follows the Google C++ Style Guide.
 | 
			
		||||
 | 
			
		||||
*   **Component Structure:**
 | 
			
		||||
    *   **Standard Files:**
 | 
			
		||||
        ```
 | 
			
		||||
        components/[component_name]/
 | 
			
		||||
        ├── __init__.py          # Component configuration schema and code generation
 | 
			
		||||
        ├── [component].h        # C++ header file (if needed)
 | 
			
		||||
        ├── [component].cpp      # C++ implementation (if needed)
 | 
			
		||||
        └── [platform]/         # Platform-specific implementations
 | 
			
		||||
            ├── __init__.py      # Platform-specific configuration
 | 
			
		||||
            ├── [platform].h     # Platform C++ header
 | 
			
		||||
            └── [platform].cpp   # Platform C++ implementation
 | 
			
		||||
        ```
 | 
			
		||||
 | 
			
		||||
    *   **Component Metadata:**
 | 
			
		||||
        - `DEPENDENCIES`: List of required components
 | 
			
		||||
        - `AUTO_LOAD`: Components to automatically load
 | 
			
		||||
        - `CONFLICTS_WITH`: Incompatible components
 | 
			
		||||
        - `CODEOWNERS`: GitHub usernames responsible for maintenance
 | 
			
		||||
        - `MULTI_CONF`: Whether multiple instances are allowed
 | 
			
		||||
 | 
			
		||||
*   **Code Generation & Common Patterns:**
 | 
			
		||||
    *   **Configuration Schema Pattern:**
 | 
			
		||||
        ```python
 | 
			
		||||
        import esphome.codegen as cg
 | 
			
		||||
        import esphome.config_validation as cv
 | 
			
		||||
        from esphome.const import CONF_KEY, CONF_ID
 | 
			
		||||
 | 
			
		||||
        CONF_PARAM = "param"  # A constant that does not yet exist in esphome/const.py
 | 
			
		||||
 | 
			
		||||
        my_component_ns = cg.esphome_ns.namespace("my_component")
 | 
			
		||||
        MyComponent = my_component_ns.class_("MyComponent", cg.Component)
 | 
			
		||||
 | 
			
		||||
        CONFIG_SCHEMA = cv.Schema({
 | 
			
		||||
            cv.GenerateID(): cv.declare_id(MyComponent),
 | 
			
		||||
            cv.Required(CONF_KEY): cv.string,
 | 
			
		||||
            cv.Optional(CONF_PARAM, default=42): cv.int_,
 | 
			
		||||
        }).extend(cv.COMPONENT_SCHEMA)
 | 
			
		||||
 | 
			
		||||
        async def to_code(config):
 | 
			
		||||
            var = cg.new_Pvariable(config[CONF_ID])
 | 
			
		||||
            await cg.register_component(var, config)
 | 
			
		||||
            cg.add(var.set_key(config[CONF_KEY]))
 | 
			
		||||
            cg.add(var.set_param(config[CONF_PARAM]))
 | 
			
		||||
        ```
 | 
			
		||||
 | 
			
		||||
    *   **C++ Class Pattern:**
 | 
			
		||||
        ```cpp
 | 
			
		||||
        namespace esphome {
 | 
			
		||||
        namespace my_component {
 | 
			
		||||
 | 
			
		||||
        class MyComponent : public Component {
 | 
			
		||||
         public:
 | 
			
		||||
          void setup() override;
 | 
			
		||||
          void loop() override;
 | 
			
		||||
          void dump_config() override;
 | 
			
		||||
 | 
			
		||||
          void set_key(const std::string &key) { this->key_ = key; }
 | 
			
		||||
          void set_param(int param) { this->param_ = param; }
 | 
			
		||||
 | 
			
		||||
         protected:
 | 
			
		||||
          std::string key_;
 | 
			
		||||
          int param_{0};
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
        }  // namespace my_component
 | 
			
		||||
        }  // namespace esphome
 | 
			
		||||
        ```
 | 
			
		||||
 | 
			
		||||
    *   **Common Component Examples:**
 | 
			
		||||
        - **Sensor:**
 | 
			
		||||
          ```python
 | 
			
		||||
          from esphome.components import sensor
 | 
			
		||||
          CONFIG_SCHEMA = sensor.sensor_schema(MySensor).extend(cv.polling_component_schema("60s"))
 | 
			
		||||
          async def to_code(config):
 | 
			
		||||
              var = await sensor.new_sensor(config)
 | 
			
		||||
              await cg.register_component(var, config)
 | 
			
		||||
          ```
 | 
			
		||||
 | 
			
		||||
        - **Binary Sensor:**
 | 
			
		||||
          ```python
 | 
			
		||||
          from esphome.components import binary_sensor
 | 
			
		||||
          CONFIG_SCHEMA = binary_sensor.binary_sensor_schema().extend({ ... })
 | 
			
		||||
          async def to_code(config):
 | 
			
		||||
              var = await binary_sensor.new_binary_sensor(config)
 | 
			
		||||
          ```
 | 
			
		||||
 | 
			
		||||
        - **Switch:**
 | 
			
		||||
          ```python
 | 
			
		||||
          from esphome.components import switch
 | 
			
		||||
          CONFIG_SCHEMA = switch.switch_schema().extend({ ... })
 | 
			
		||||
          async def to_code(config):
 | 
			
		||||
              var = await switch.new_switch(config)
 | 
			
		||||
          ```
 | 
			
		||||
 | 
			
		||||
*   **Configuration Validation:**
 | 
			
		||||
    *   **Common Validators:** `cv.int_`, `cv.float_`, `cv.string`, `cv.boolean`, `cv.int_range(min=0, max=100)`, `cv.positive_int`, `cv.percentage`.
 | 
			
		||||
    *   **Complex Validation:** `cv.All(cv.string, cv.Length(min=1, max=50))`, `cv.Any(cv.int_, cv.string)`.
 | 
			
		||||
    *   **Platform-Specific:** `cv.only_on(["esp32", "esp8266"])`, `cv.only_with_arduino`.
 | 
			
		||||
    *   **Schema Extensions:**
 | 
			
		||||
        ```python
 | 
			
		||||
        CONFIG_SCHEMA = cv.Schema({ ... })
 | 
			
		||||
         .extend(cv.COMPONENT_SCHEMA)
 | 
			
		||||
         .extend(uart.UART_DEVICE_SCHEMA)
 | 
			
		||||
         .extend(i2c.i2c_device_schema(0x48))
 | 
			
		||||
         .extend(spi.spi_device_schema(cs_pin_required=True))
 | 
			
		||||
        ```
 | 
			
		||||
 | 
			
		||||
## 5. Key Files & Entrypoints
 | 
			
		||||
 | 
			
		||||
*   **Main Entrypoint(s):** `esphome/__main__.py` is the main entrypoint for the ESPHome command-line interface.
 | 
			
		||||
*   **Configuration:**
 | 
			
		||||
    *   `pyproject.toml`: Defines the Python project metadata and dependencies.
 | 
			
		||||
    *   `platformio.ini`: Configures the PlatformIO build environments for different microcontrollers.
 | 
			
		||||
    *   `.pre-commit-config.yaml`: Configures the pre-commit hooks for linting and formatting.
 | 
			
		||||
*   **CI/CD Pipeline:** Defined in `.github/workflows`.
 | 
			
		||||
 | 
			
		||||
## 6. Development & Testing Workflow
 | 
			
		||||
 | 
			
		||||
*   **Local Development Environment:** Use the provided Docker container or create a Python virtual environment and install dependencies from `requirements_dev.txt`.
 | 
			
		||||
*   **Running Commands:** Use the `script/run-in-env.py` script to execute commands within the project's virtual environment. For example, to run the linter: `python3 script/run-in-env.py pre-commit run`.
 | 
			
		||||
*   **Testing:**
 | 
			
		||||
    *   **Python:** Run unit tests with `pytest`.
 | 
			
		||||
    *   **C++:** Use `clang-tidy` for static analysis.
 | 
			
		||||
    *   **Component Tests:** YAML-based compilation tests are located in `tests/`. The structure is as follows:
 | 
			
		||||
        ```
 | 
			
		||||
        tests/
 | 
			
		||||
        ├── test_build_components/ # Base test configurations
 | 
			
		||||
        └── components/[component]/ # Component-specific tests
 | 
			
		||||
        ```
 | 
			
		||||
        Run them using `script/test_build_components`. Use `-c <component>` to test specific components and `-t <target>` for specific platforms.
 | 
			
		||||
*   **Debugging and Troubleshooting:**
 | 
			
		||||
    *   **Debug Tools:**
 | 
			
		||||
        - `esphome config <file>.yaml` to validate configuration.
 | 
			
		||||
        - `esphome compile <file>.yaml` to compile without uploading.
 | 
			
		||||
        - Check the Dashboard for real-time logs.
 | 
			
		||||
        - Use component-specific debug logging.
 | 
			
		||||
    *   **Common Issues:**
 | 
			
		||||
        - **Import Errors**: Check component dependencies and `PYTHONPATH`.
 | 
			
		||||
        - **Validation Errors**: Review configuration schema definitions.
 | 
			
		||||
        - **Build Errors**: Check platform compatibility and library versions.
 | 
			
		||||
        - **Runtime Errors**: Review generated C++ code and component logic.
 | 
			
		||||
 | 
			
		||||
## 7. Specific Instructions for AI Collaboration
 | 
			
		||||
 | 
			
		||||
*   **Contribution Workflow (Pull Request Process):**
 | 
			
		||||
    1.  **Fork & Branch:** Create a new branch in your fork.
 | 
			
		||||
    2.  **Make Changes:** Adhere to all coding conventions and patterns.
 | 
			
		||||
    3.  **Test:** Create component tests for all supported platforms and run the full test suite locally.
 | 
			
		||||
    4.  **Lint:** Run `pre-commit` to ensure code is compliant.
 | 
			
		||||
    5.  **Commit:** Commit your changes. There is no strict format for commit messages.
 | 
			
		||||
    6.  **Pull Request:** Submit a PR against the `dev` branch. The Pull Request title should have a prefix of the component being worked on (e.g., `[display] Fix bug`, `[abc123] Add new component`). Update documentation, examples, and add `CODEOWNERS` entries as needed. Pull requests should always be made with the PULL_REQUEST_TEMPLATE.md template filled out correctly.
 | 
			
		||||
 | 
			
		||||
*   **Documentation Contributions:**
 | 
			
		||||
    *   Documentation is hosted in the separate `esphome/esphome-docs` repository.
 | 
			
		||||
    *   The contribution workflow is the same as for the codebase.
 | 
			
		||||
 | 
			
		||||
*   **Best Practices:**
 | 
			
		||||
    *   **Component Development:** Keep dependencies minimal, provide clear error messages, and write comprehensive docstrings and tests.
 | 
			
		||||
    *   **Code Generation:** Generate minimal and efficient C++ code. Validate all user inputs thoroughly. Support multiple platform variations.
 | 
			
		||||
    *   **Configuration Design:** Aim for simplicity with sensible defaults, while allowing for advanced customization.
 | 
			
		||||
 | 
			
		||||
*   **Security:** Be mindful of security when making changes to the API, web server, or any other network-related code. Do not hardcode secrets or keys.
 | 
			
		||||
 | 
			
		||||
*   **Dependencies & Build System Integration:**
 | 
			
		||||
    *   **Python:** When adding a new Python dependency, add it to the appropriate `requirements*.txt` file and `pyproject.toml`.
 | 
			
		||||
    *   **C++ / PlatformIO:** When adding a new C++ dependency, add it to `platformio.ini` and use `cg.add_library`.
 | 
			
		||||
    *   **Build Flags:** Use `cg.add_build_flag(...)` to add compiler flags.
 | 
			
		||||
@@ -1 +0,0 @@
 | 
			
		||||
0c2acbc16bfb7d63571dbe7042f94f683be25e4ca8a0f158a960a94adac4b931
 | 
			
		||||
							
								
								
									
										92
									
								
								.github/ISSUE_TEMPLATE/bug_report.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										92
									
								
								.github/ISSUE_TEMPLATE/bug_report.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,92 +0,0 @@
 | 
			
		||||
name: Report an issue with ESPHome
 | 
			
		||||
description: Report an issue with ESPHome.
 | 
			
		||||
body:
 | 
			
		||||
  - type: markdown
 | 
			
		||||
    attributes:
 | 
			
		||||
      value: |
 | 
			
		||||
        This issue form is for reporting bugs only!
 | 
			
		||||
 | 
			
		||||
        If you have a feature request or enhancement, please [request them here instead][fr].
 | 
			
		||||
 | 
			
		||||
        [fr]: https://github.com/orgs/esphome/discussions
 | 
			
		||||
  - type: textarea
 | 
			
		||||
    validations:
 | 
			
		||||
      required: true
 | 
			
		||||
    id: problem
 | 
			
		||||
    attributes:
 | 
			
		||||
      label: The problem
 | 
			
		||||
      description: >-
 | 
			
		||||
        Describe the issue you are experiencing here to communicate to the
 | 
			
		||||
        maintainers. Tell us what you were trying to do and what happened.
 | 
			
		||||
 | 
			
		||||
        Provide a clear and concise description of what the problem is.
 | 
			
		||||
 | 
			
		||||
  - type: markdown
 | 
			
		||||
    attributes:
 | 
			
		||||
      value: |
 | 
			
		||||
        ## Environment
 | 
			
		||||
  - type: input
 | 
			
		||||
    id: version
 | 
			
		||||
    validations:
 | 
			
		||||
      required: true
 | 
			
		||||
    attributes:
 | 
			
		||||
      label: Which version of ESPHome has the issue?
 | 
			
		||||
      description: >
 | 
			
		||||
        ESPHome version like 1.19, 2025.6.0 or 2025.XX.X-dev.
 | 
			
		||||
  - type: dropdown
 | 
			
		||||
    validations:
 | 
			
		||||
      required: true
 | 
			
		||||
    id: installation
 | 
			
		||||
    attributes:
 | 
			
		||||
      label: What type of installation are you using?
 | 
			
		||||
      options:
 | 
			
		||||
        - Home Assistant Add-on
 | 
			
		||||
        - Docker
 | 
			
		||||
        - pip
 | 
			
		||||
  - type: dropdown
 | 
			
		||||
    validations:
 | 
			
		||||
      required: true
 | 
			
		||||
    id: platform
 | 
			
		||||
    attributes:
 | 
			
		||||
      label: What platform are you using?
 | 
			
		||||
      options:
 | 
			
		||||
        - ESP8266
 | 
			
		||||
        - ESP32
 | 
			
		||||
        - RP2040
 | 
			
		||||
        - BK72XX
 | 
			
		||||
        - RTL87XX
 | 
			
		||||
        - LN882X
 | 
			
		||||
        - Host
 | 
			
		||||
        - Other
 | 
			
		||||
  - type: input
 | 
			
		||||
    id: component_name
 | 
			
		||||
    attributes:
 | 
			
		||||
      label: Component causing the issue
 | 
			
		||||
      description: >
 | 
			
		||||
        The name of the component or platform. For example, api/i2c or ultrasonic.
 | 
			
		||||
 | 
			
		||||
  - type: markdown
 | 
			
		||||
    attributes:
 | 
			
		||||
      value: |
 | 
			
		||||
        # Details
 | 
			
		||||
  - type: textarea
 | 
			
		||||
    id: config
 | 
			
		||||
    attributes:
 | 
			
		||||
      label: YAML Config
 | 
			
		||||
      description: |
 | 
			
		||||
        Include a complete YAML configuration file demonstrating the problem here. Preferably post the *entire* file - don't make assumptions about what is unimportant. However, if it's a large or complicated config then you will need to reduce it to the smallest possible file *that still demonstrates the problem*. If you don't provide enough information to *easily* reproduce the problem, it's unlikely your bug report will get any attention. Logs do not belong here, attach them below.
 | 
			
		||||
      render: yaml
 | 
			
		||||
  - type: textarea
 | 
			
		||||
    id: logs
 | 
			
		||||
    attributes:
 | 
			
		||||
      label: Anything in the logs that might be useful for us?
 | 
			
		||||
      description: For example, error message, or stack traces. Serial or USB logs are much more useful than WiFi logs.
 | 
			
		||||
      render: txt
 | 
			
		||||
  - type: textarea
 | 
			
		||||
    id: additional
 | 
			
		||||
    attributes:
 | 
			
		||||
      label: Additional information
 | 
			
		||||
      description: >
 | 
			
		||||
        If you have any additional information for us, use the field below.
 | 
			
		||||
        Please note, you can attach screenshots or screen recordings here, by
 | 
			
		||||
        dragging and dropping files in the field below.
 | 
			
		||||
							
								
								
									
										26
									
								
								.github/ISSUE_TEMPLATE/config.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										26
									
								
								.github/ISSUE_TEMPLATE/config.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,21 +1,15 @@
 | 
			
		||||
---
 | 
			
		||||
blank_issues_enabled: false
 | 
			
		||||
contact_links:
 | 
			
		||||
  - name: Report an issue with the ESPHome documentation
 | 
			
		||||
    url: https://github.com/esphome/esphome-docs/issues/new/choose
 | 
			
		||||
    about: Report an issue with the ESPHome documentation.
 | 
			
		||||
  - name: Report an issue with the ESPHome web server
 | 
			
		||||
    url: https://github.com/esphome/esphome-webserver/issues/new/choose
 | 
			
		||||
    about: Report an issue with the ESPHome web server.
 | 
			
		||||
  - name: Report an issue with the ESPHome Builder / Dashboard
 | 
			
		||||
    url: https://github.com/esphome/dashboard/issues/new/choose
 | 
			
		||||
    about: Report an issue with the ESPHome Builder / Dashboard.
 | 
			
		||||
  - name: Report an issue with the ESPHome API client
 | 
			
		||||
    url: https://github.com/esphome/aioesphomeapi/issues/new/choose
 | 
			
		||||
    about: Report an issue with the ESPHome API client.
 | 
			
		||||
  - name: Make a Feature Request
 | 
			
		||||
    url: https://github.com/orgs/esphome/discussions
 | 
			
		||||
    about: Please create feature requests in the dedicated feature request tracker.
 | 
			
		||||
  - name: Issue Tracker
 | 
			
		||||
    url: https://github.com/esphome/issues
 | 
			
		||||
    about: Please create bug reports in the dedicated issue tracker.
 | 
			
		||||
  - name: Feature Request Tracker
 | 
			
		||||
    url: https://github.com/esphome/feature-requests
 | 
			
		||||
    about: |
 | 
			
		||||
      Please create feature requests in the dedicated feature request tracker.
 | 
			
		||||
  - name: Frequently Asked Question
 | 
			
		||||
    url: https://esphome.io/guides/faq.html
 | 
			
		||||
    about: Please view the FAQ for common questions and what to include in a bug report.
 | 
			
		||||
    about: |
 | 
			
		||||
      Please view the FAQ for common questions and what
 | 
			
		||||
      to include in a bug report.
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								.github/PULL_REQUEST_TEMPLATE.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.github/PULL_REQUEST_TEMPLATE.md
									
									
									
									
										vendored
									
									
								
							@@ -26,7 +26,6 @@
 | 
			
		||||
- [ ] RP2040
 | 
			
		||||
- [ ] BK72xx
 | 
			
		||||
- [ ] RTL87xx
 | 
			
		||||
- [ ] nRF52840
 | 
			
		||||
 | 
			
		||||
## Example entry for `config.yaml`:
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								.github/actions/restore-python/action.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/actions/restore-python/action.yml
									
									
									
									
										vendored
									
									
								
							@@ -41,7 +41,7 @@ runs:
 | 
			
		||||
      shell: bash
 | 
			
		||||
      run: |
 | 
			
		||||
        python -m venv venv
 | 
			
		||||
        source ./venv/Scripts/activate
 | 
			
		||||
        ./venv/Scripts/activate
 | 
			
		||||
        python --version
 | 
			
		||||
        pip install -r requirements.txt -r requirements_test.txt
 | 
			
		||||
        pip install -e .
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1
									
								
								.github/copilot-instructions.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.github/copilot-instructions.md
									
									
									
									
										vendored
									
									
								
							@@ -1 +0,0 @@
 | 
			
		||||
../.ai/instructions.md
 | 
			
		||||
							
								
								
									
										9
									
								
								.github/dependabot.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										9
									
								
								.github/dependabot.yml
									
									
									
									
										vendored
									
									
								
							@@ -9,9 +9,6 @@ updates:
 | 
			
		||||
      # Hypotehsis is only used for testing and is updated quite often
 | 
			
		||||
      - dependency-name: hypothesis
 | 
			
		||||
  - package-ecosystem: github-actions
 | 
			
		||||
    labels:
 | 
			
		||||
      - "dependencies"
 | 
			
		||||
      - "github-actions"
 | 
			
		||||
    directory: "/"
 | 
			
		||||
    schedule:
 | 
			
		||||
      interval: daily
 | 
			
		||||
@@ -23,17 +20,11 @@ updates:
 | 
			
		||||
          - "docker/login-action"
 | 
			
		||||
          - "docker/setup-buildx-action"
 | 
			
		||||
  - package-ecosystem: github-actions
 | 
			
		||||
    labels:
 | 
			
		||||
      - "dependencies"
 | 
			
		||||
      - "github-actions"
 | 
			
		||||
    directory: "/.github/actions/build-image"
 | 
			
		||||
    schedule:
 | 
			
		||||
      interval: daily
 | 
			
		||||
    open-pull-requests-limit: 10
 | 
			
		||||
  - package-ecosystem: github-actions
 | 
			
		||||
    labels:
 | 
			
		||||
      - "dependencies"
 | 
			
		||||
      - "github-actions"
 | 
			
		||||
    directory: "/.github/actions/restore-python"
 | 
			
		||||
    schedule:
 | 
			
		||||
      interval: daily
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										449
									
								
								.github/workflows/auto-label-pr.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										449
									
								
								.github/workflows/auto-label-pr.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,449 +0,0 @@
 | 
			
		||||
name: Auto Label PR
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  # Runs only on pull_request_target due to having access to a App token.
 | 
			
		||||
  # This means PRs from forks will not be able to alter this workflow to get the tokens
 | 
			
		||||
  pull_request_target:
 | 
			
		||||
    types: [labeled, opened, reopened, synchronize, edited]
 | 
			
		||||
 | 
			
		||||
permissions:
 | 
			
		||||
  pull-requests: write
 | 
			
		||||
  contents: read
 | 
			
		||||
 | 
			
		||||
env:
 | 
			
		||||
  TARGET_PLATFORMS: |
 | 
			
		||||
    esp32
 | 
			
		||||
    esp8266
 | 
			
		||||
    rp2040
 | 
			
		||||
    libretiny
 | 
			
		||||
    bk72xx
 | 
			
		||||
    rtl87xx
 | 
			
		||||
    ln882x
 | 
			
		||||
    nrf52
 | 
			
		||||
    host
 | 
			
		||||
  PLATFORM_COMPONENTS: |
 | 
			
		||||
    alarm_control_panel
 | 
			
		||||
    audio_adc
 | 
			
		||||
    audio_dac
 | 
			
		||||
    binary_sensor
 | 
			
		||||
    button
 | 
			
		||||
    canbus
 | 
			
		||||
    climate
 | 
			
		||||
    cover
 | 
			
		||||
    datetime
 | 
			
		||||
    display
 | 
			
		||||
    event
 | 
			
		||||
    fan
 | 
			
		||||
    light
 | 
			
		||||
    lock
 | 
			
		||||
    media_player
 | 
			
		||||
    microphone
 | 
			
		||||
    number
 | 
			
		||||
    one_wire
 | 
			
		||||
    ota
 | 
			
		||||
    output
 | 
			
		||||
    packet_transport
 | 
			
		||||
    select
 | 
			
		||||
    sensor
 | 
			
		||||
    speaker
 | 
			
		||||
    stepper
 | 
			
		||||
    switch
 | 
			
		||||
    text
 | 
			
		||||
    text_sensor
 | 
			
		||||
    time
 | 
			
		||||
    touchscreen
 | 
			
		||||
    update
 | 
			
		||||
    valve
 | 
			
		||||
  SMALL_PR_THRESHOLD: 30
 | 
			
		||||
  MAX_LABELS: 15
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  label:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    if: github.event.action != 'labeled' || github.event.sender.type != 'Bot'
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
 | 
			
		||||
      - name: Get changes
 | 
			
		||||
        id: changes
 | 
			
		||||
        env:
 | 
			
		||||
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
			
		||||
        run: |
 | 
			
		||||
          # Get PR number
 | 
			
		||||
          pr_number="${{ github.event.pull_request.number }}"
 | 
			
		||||
 | 
			
		||||
          # Get list of changed files using gh CLI
 | 
			
		||||
          files=$(gh pr diff $pr_number --name-only)
 | 
			
		||||
          echo "files<<EOF" >> $GITHUB_OUTPUT
 | 
			
		||||
          echo "$files" >> $GITHUB_OUTPUT
 | 
			
		||||
          echo "EOF" >> $GITHUB_OUTPUT
 | 
			
		||||
 | 
			
		||||
          # Get file stats (additions + deletions) using gh CLI
 | 
			
		||||
          stats=$(gh pr view $pr_number --json files --jq '.files | map(.additions + .deletions) | add')
 | 
			
		||||
          echo "total_changes=${stats:-0}" >> $GITHUB_OUTPUT
 | 
			
		||||
 | 
			
		||||
      - name: Generate a token
 | 
			
		||||
        id: generate-token
 | 
			
		||||
        uses: actions/create-github-app-token@v2
 | 
			
		||||
        with:
 | 
			
		||||
          app-id: ${{ secrets.ESPHOME_GITHUB_APP_ID }}
 | 
			
		||||
          private-key: ${{ secrets.ESPHOME_GITHUB_APP_PRIVATE_KEY }}
 | 
			
		||||
 | 
			
		||||
      - name: Auto Label PR
 | 
			
		||||
        uses: actions/github-script@v7.0.1
 | 
			
		||||
        with:
 | 
			
		||||
          github-token: ${{ steps.generate-token.outputs.token }}
 | 
			
		||||
          script: |
 | 
			
		||||
            const fs = require('fs');
 | 
			
		||||
 | 
			
		||||
            const { owner, repo } = context.repo;
 | 
			
		||||
            const pr_number = context.issue.number;
 | 
			
		||||
 | 
			
		||||
            // Get current labels
 | 
			
		||||
            const { data: currentLabelsData } = await github.rest.issues.listLabelsOnIssue({
 | 
			
		||||
              owner,
 | 
			
		||||
              repo,
 | 
			
		||||
              issue_number: pr_number
 | 
			
		||||
            });
 | 
			
		||||
            const currentLabels = currentLabelsData.map(label => label.name);
 | 
			
		||||
 | 
			
		||||
            // Define managed labels that this workflow controls
 | 
			
		||||
            const managedLabels = currentLabels.filter(label =>
 | 
			
		||||
              label.startsWith('component: ') ||
 | 
			
		||||
              [
 | 
			
		||||
                'new-component',
 | 
			
		||||
                'new-platform',
 | 
			
		||||
                'new-target-platform',
 | 
			
		||||
                'merging-to-release',
 | 
			
		||||
                'merging-to-beta',
 | 
			
		||||
                'core',
 | 
			
		||||
                'small-pr',
 | 
			
		||||
                'dashboard',
 | 
			
		||||
                'github-actions',
 | 
			
		||||
                'by-code-owner',
 | 
			
		||||
                'has-tests',
 | 
			
		||||
                'needs-tests',
 | 
			
		||||
                'needs-docs',
 | 
			
		||||
                'too-big',
 | 
			
		||||
                'labeller-recheck'
 | 
			
		||||
              ].includes(label)
 | 
			
		||||
            );
 | 
			
		||||
 | 
			
		||||
            console.log('Current labels:', currentLabels.join(', '));
 | 
			
		||||
            console.log('Managed labels:', managedLabels.join(', '));
 | 
			
		||||
 | 
			
		||||
            // Get changed files
 | 
			
		||||
            const changedFiles = `${{ steps.changes.outputs.files }}`.split('\n').filter(f => f.length > 0);
 | 
			
		||||
            const totalChanges = parseInt('${{ steps.changes.outputs.total_changes }}') || 0;
 | 
			
		||||
 | 
			
		||||
            console.log('Changed files:', changedFiles.length);
 | 
			
		||||
            console.log('Total changes:', totalChanges);
 | 
			
		||||
 | 
			
		||||
            const labels = new Set();
 | 
			
		||||
 | 
			
		||||
            // Get environment variables
 | 
			
		||||
            const targetPlatforms = `${{ env.TARGET_PLATFORMS }}`.split('\n').filter(p => p.trim().length > 0).map(p => p.trim());
 | 
			
		||||
            const platformComponents = `${{ env.PLATFORM_COMPONENTS }}`.split('\n').filter(p => p.trim().length > 0).map(p => p.trim());
 | 
			
		||||
            const smallPrThreshold = parseInt('${{ env.SMALL_PR_THRESHOLD }}');
 | 
			
		||||
            const maxLabels = parseInt('${{ env.MAX_LABELS }}');
 | 
			
		||||
 | 
			
		||||
            // Strategy: Merge to release or beta branch
 | 
			
		||||
            const baseRef = context.payload.pull_request.base.ref;
 | 
			
		||||
            if (baseRef !== 'dev') {
 | 
			
		||||
              if (baseRef === 'release') {
 | 
			
		||||
                labels.add('merging-to-release');
 | 
			
		||||
              } else if (baseRef === 'beta') {
 | 
			
		||||
                labels.add('merging-to-beta');
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              // When targeting non-dev branches, only use merge warning labels
 | 
			
		||||
              const finalLabels = Array.from(labels);
 | 
			
		||||
              console.log('Computed labels (merge branch only):', finalLabels.join(', '));
 | 
			
		||||
 | 
			
		||||
              // Add new labels
 | 
			
		||||
              if (finalLabels.length > 0) {
 | 
			
		||||
                console.log(`Adding labels: ${finalLabels.join(', ')}`);
 | 
			
		||||
                await github.rest.issues.addLabels({
 | 
			
		||||
                  owner,
 | 
			
		||||
                  repo,
 | 
			
		||||
                  issue_number: pr_number,
 | 
			
		||||
                  labels: finalLabels
 | 
			
		||||
                });
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              // Remove old managed labels that are no longer needed
 | 
			
		||||
              const labelsToRemove = managedLabels.filter(label =>
 | 
			
		||||
                !finalLabels.includes(label)
 | 
			
		||||
              );
 | 
			
		||||
 | 
			
		||||
              for (const label of labelsToRemove) {
 | 
			
		||||
                console.log(`Removing label: ${label}`);
 | 
			
		||||
                try {
 | 
			
		||||
                  await github.rest.issues.removeLabel({
 | 
			
		||||
                    owner,
 | 
			
		||||
                    repo,
 | 
			
		||||
                    issue_number: pr_number,
 | 
			
		||||
                    name: label
 | 
			
		||||
                  });
 | 
			
		||||
                } catch (error) {
 | 
			
		||||
                  console.log(`Failed to remove label ${label}:`, error.message);
 | 
			
		||||
                }
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              return; // Exit early, don't process other strategies
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Strategy: Component and Platform labeling
 | 
			
		||||
            const componentRegex = /^esphome\/components\/([^\/]+)\//;
 | 
			
		||||
            const targetPlatformRegex = new RegExp(`^esphome\/components\/(${targetPlatforms.join('|')})/`);
 | 
			
		||||
 | 
			
		||||
            for (const file of changedFiles) {
 | 
			
		||||
              // Check for component changes
 | 
			
		||||
              const componentMatch = file.match(componentRegex);
 | 
			
		||||
              if (componentMatch) {
 | 
			
		||||
                const component = componentMatch[1];
 | 
			
		||||
                labels.add(`component: ${component}`);
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              // Check for target platform changes
 | 
			
		||||
              const platformMatch = file.match(targetPlatformRegex);
 | 
			
		||||
              if (platformMatch) {
 | 
			
		||||
                const targetPlatform = platformMatch[1];
 | 
			
		||||
                labels.add(`platform: ${targetPlatform}`);
 | 
			
		||||
              }
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Get PR files for new component/platform detection
 | 
			
		||||
            const { data: prFiles } = await github.rest.pulls.listFiles({
 | 
			
		||||
              owner,
 | 
			
		||||
              repo,
 | 
			
		||||
              pull_number: pr_number
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            const addedFiles = prFiles.filter(file => file.status === 'added').map(file => file.filename);
 | 
			
		||||
 | 
			
		||||
            // Strategy: New Component detection
 | 
			
		||||
            for (const file of addedFiles) {
 | 
			
		||||
              // Check for new component files: esphome/components/{component}/__init__.py
 | 
			
		||||
              const componentMatch = file.match(/^esphome\/components\/([^\/]+)\/__init__\.py$/);
 | 
			
		||||
              if (componentMatch) {
 | 
			
		||||
                try {
 | 
			
		||||
                  // Read the content directly from the filesystem since we have it checked out
 | 
			
		||||
                  const content = fs.readFileSync(file, 'utf8');
 | 
			
		||||
 | 
			
		||||
                  // Strategy: New Target Platform detection
 | 
			
		||||
                  if (content.includes('IS_TARGET_PLATFORM = True')) {
 | 
			
		||||
                    labels.add('new-target-platform');
 | 
			
		||||
                  }
 | 
			
		||||
                  labels.add('new-component');
 | 
			
		||||
                } catch (error) {
 | 
			
		||||
                  console.log(`Failed to read content of ${file}:`, error.message);
 | 
			
		||||
                  // Fallback: assume it's a new component if we can't read the content
 | 
			
		||||
                  labels.add('new-component');
 | 
			
		||||
                }
 | 
			
		||||
              }
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Strategy: New Platform detection
 | 
			
		||||
            for (const file of addedFiles) {
 | 
			
		||||
              // Check for new platform files: esphome/components/{component}/{platform}.py
 | 
			
		||||
              const platformFileMatch = file.match(/^esphome\/components\/([^\/]+)\/([^\/]+)\.py$/);
 | 
			
		||||
              if (platformFileMatch) {
 | 
			
		||||
                const [, component, platform] = platformFileMatch;
 | 
			
		||||
                if (platformComponents.includes(platform)) {
 | 
			
		||||
                  labels.add('new-platform');
 | 
			
		||||
                }
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              // Check for new platform files: esphome/components/{component}/{platform}/__init__.py
 | 
			
		||||
              const platformDirMatch = file.match(/^esphome\/components\/([^\/]+)\/([^\/]+)\/__init__\.py$/);
 | 
			
		||||
              if (platformDirMatch) {
 | 
			
		||||
                const [, component, platform] = platformDirMatch;
 | 
			
		||||
                if (platformComponents.includes(platform)) {
 | 
			
		||||
                  labels.add('new-platform');
 | 
			
		||||
                }
 | 
			
		||||
              }
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            const coreFiles = changedFiles.filter(file =>
 | 
			
		||||
              file.startsWith('esphome/core/') ||
 | 
			
		||||
              (file.startsWith('esphome/') && file.split('/').length === 2)
 | 
			
		||||
            );
 | 
			
		||||
 | 
			
		||||
            if (coreFiles.length > 0) {
 | 
			
		||||
              labels.add('core');
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Strategy: Small PR detection
 | 
			
		||||
            if (totalChanges <= smallPrThreshold) {
 | 
			
		||||
              labels.add('small-pr');
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Strategy: Dashboard changes
 | 
			
		||||
            const dashboardFiles = changedFiles.filter(file =>
 | 
			
		||||
              file.startsWith('esphome/dashboard/') ||
 | 
			
		||||
              file.startsWith('esphome/components/dashboard_import/')
 | 
			
		||||
            );
 | 
			
		||||
 | 
			
		||||
            if (dashboardFiles.length > 0) {
 | 
			
		||||
              labels.add('dashboard');
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Strategy: GitHub Actions changes
 | 
			
		||||
            const githubActionsFiles = changedFiles.filter(file =>
 | 
			
		||||
              file.startsWith('.github/workflows/')
 | 
			
		||||
            );
 | 
			
		||||
 | 
			
		||||
            if (githubActionsFiles.length > 0) {
 | 
			
		||||
              labels.add('github-actions');
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Strategy: Code Owner detection
 | 
			
		||||
            try {
 | 
			
		||||
              // Fetch CODEOWNERS file from the repository (in case it was changed in this PR)
 | 
			
		||||
              const { data: codeownersFile } = await github.rest.repos.getContent({
 | 
			
		||||
                owner,
 | 
			
		||||
                repo,
 | 
			
		||||
                path: 'CODEOWNERS',
 | 
			
		||||
              });
 | 
			
		||||
 | 
			
		||||
              const codeownersContent = Buffer.from(codeownersFile.content, 'base64').toString('utf8');
 | 
			
		||||
              const prAuthor = context.payload.pull_request.user.login;
 | 
			
		||||
 | 
			
		||||
              // Parse CODEOWNERS file
 | 
			
		||||
              const codeownersLines = codeownersContent.split('\n')
 | 
			
		||||
                .map(line => line.trim())
 | 
			
		||||
                .filter(line => line && !line.startsWith('#'));
 | 
			
		||||
 | 
			
		||||
              let isCodeOwner = false;
 | 
			
		||||
 | 
			
		||||
              // Precompile CODEOWNERS patterns into regex objects
 | 
			
		||||
              const codeownersRegexes = codeownersLines.map(line => {
 | 
			
		||||
                const parts = line.split(/\s+/);
 | 
			
		||||
                const pattern = parts[0];
 | 
			
		||||
                const owners = parts.slice(1);
 | 
			
		||||
 | 
			
		||||
                let regex;
 | 
			
		||||
                if (pattern.endsWith('*')) {
 | 
			
		||||
                  // Directory pattern like "esphome/components/api/*"
 | 
			
		||||
                  const dir = pattern.slice(0, -1);
 | 
			
		||||
                  regex = new RegExp(`^${dir.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}`);
 | 
			
		||||
                } else if (pattern.includes('*')) {
 | 
			
		||||
                  // Glob pattern
 | 
			
		||||
                  const regexPattern = pattern
 | 
			
		||||
                    .replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
 | 
			
		||||
                    .replace(/\\*/g, '.*');
 | 
			
		||||
                  regex = new RegExp(`^${regexPattern}$`);
 | 
			
		||||
                } else {
 | 
			
		||||
                  // Exact match
 | 
			
		||||
                  regex = new RegExp(`^${pattern.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}$`);
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                return { regex, owners };
 | 
			
		||||
              });
 | 
			
		||||
 | 
			
		||||
              for (const file of changedFiles) {
 | 
			
		||||
                for (const { regex, owners } of codeownersRegexes) {
 | 
			
		||||
                  if (regex.test(file)) {
 | 
			
		||||
                    // Check if PR author is in the owners list
 | 
			
		||||
                    if (owners.some(owner => owner === `@${prAuthor}`)) {
 | 
			
		||||
                      isCodeOwner = true;
 | 
			
		||||
                      break;
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                }
 | 
			
		||||
                if (isCodeOwner) break;
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              if (isCodeOwner) {
 | 
			
		||||
                labels.add('by-code-owner');
 | 
			
		||||
              }
 | 
			
		||||
            } catch (error) {
 | 
			
		||||
              console.log('Failed to read or parse CODEOWNERS file:', error.message);
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Strategy: Test detection
 | 
			
		||||
            const testFiles = changedFiles.filter(file =>
 | 
			
		||||
              file.startsWith('tests/')
 | 
			
		||||
            );
 | 
			
		||||
 | 
			
		||||
            if (testFiles.length > 0) {
 | 
			
		||||
              labels.add('has-tests');
 | 
			
		||||
            } else {
 | 
			
		||||
              // Only check for needs-tests if this is a new component or new platform
 | 
			
		||||
              if (labels.has('new-component') || labels.has('new-platform')) {
 | 
			
		||||
                labels.add('needs-tests');
 | 
			
		||||
              }
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Strategy: Documentation check for new components/platforms
 | 
			
		||||
            if (labels.has('new-component') || labels.has('new-platform')) {
 | 
			
		||||
              const prBody = context.payload.pull_request.body || '';
 | 
			
		||||
 | 
			
		||||
              // Look for documentation PR links
 | 
			
		||||
              // Patterns to match:
 | 
			
		||||
              // - https://github.com/esphome/esphome-docs/pull/1234
 | 
			
		||||
              // - esphome/esphome-docs#1234
 | 
			
		||||
              const docsPrPatterns = [
 | 
			
		||||
                /https:\/\/github\.com\/esphome\/esphome-docs\/pull\/\d+/,
 | 
			
		||||
                /esphome\/esphome-docs#\d+/
 | 
			
		||||
              ];
 | 
			
		||||
 | 
			
		||||
              const hasDocsLink = docsPrPatterns.some(pattern => pattern.test(prBody));
 | 
			
		||||
 | 
			
		||||
              if (!hasDocsLink) {
 | 
			
		||||
                labels.add('needs-docs');
 | 
			
		||||
              }
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Convert Set to Array
 | 
			
		||||
            let finalLabels = Array.from(labels);
 | 
			
		||||
 | 
			
		||||
            console.log('Computed labels:', finalLabels.join(', '));
 | 
			
		||||
 | 
			
		||||
            // Don't set more than max labels
 | 
			
		||||
            if (finalLabels.length > maxLabels) {
 | 
			
		||||
              const originalLength = finalLabels.length;
 | 
			
		||||
              console.log(`Not setting ${originalLength} labels because out of range`);
 | 
			
		||||
              finalLabels = ['too-big'];
 | 
			
		||||
 | 
			
		||||
              // Request changes on the PR
 | 
			
		||||
              await github.rest.pulls.createReview({
 | 
			
		||||
                owner,
 | 
			
		||||
                repo,
 | 
			
		||||
                pull_number: pr_number,
 | 
			
		||||
                body: `This PR is too large and affects ${originalLength} different components/areas. Please consider breaking it down into smaller, focused PRs to make review easier and reduce the risk of conflicts.`,
 | 
			
		||||
                event: 'REQUEST_CHANGES'
 | 
			
		||||
              });
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Add new labels
 | 
			
		||||
            if (finalLabels.length > 0) {
 | 
			
		||||
              console.log(`Adding labels: ${finalLabels.join(', ')}`);
 | 
			
		||||
              await github.rest.issues.addLabels({
 | 
			
		||||
                owner,
 | 
			
		||||
                repo,
 | 
			
		||||
                issue_number: pr_number,
 | 
			
		||||
                labels: finalLabels
 | 
			
		||||
              });
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Remove old managed labels that are no longer needed
 | 
			
		||||
            const labelsToRemove = managedLabels.filter(label =>
 | 
			
		||||
              !finalLabels.includes(label)
 | 
			
		||||
            );
 | 
			
		||||
 | 
			
		||||
            for (const label of labelsToRemove) {
 | 
			
		||||
              console.log(`Removing label: ${label}`);
 | 
			
		||||
              try {
 | 
			
		||||
                await github.rest.issues.removeLabel({
 | 
			
		||||
                  owner,
 | 
			
		||||
                  repo,
 | 
			
		||||
                  issue_number: pr_number,
 | 
			
		||||
                  name: label
 | 
			
		||||
                });
 | 
			
		||||
              } catch (error) {
 | 
			
		||||
                console.log(`Failed to remove label ${label}:`, error.message);
 | 
			
		||||
              }
 | 
			
		||||
            }
 | 
			
		||||
							
								
								
									
										75
									
								
								.github/workflows/ci-clang-tidy-hash.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										75
									
								
								.github/workflows/ci-clang-tidy-hash.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,75 +0,0 @@
 | 
			
		||||
name: Clang-tidy Hash CI
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  pull_request:
 | 
			
		||||
    paths:
 | 
			
		||||
      - ".clang-tidy"
 | 
			
		||||
      - "platformio.ini"
 | 
			
		||||
      - "requirements_dev.txt"
 | 
			
		||||
      - ".clang-tidy.hash"
 | 
			
		||||
      - "script/clang_tidy_hash.py"
 | 
			
		||||
      - ".github/workflows/ci-clang-tidy-hash.yml"
 | 
			
		||||
 | 
			
		||||
permissions:
 | 
			
		||||
  contents: read
 | 
			
		||||
  pull-requests: write
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  verify-hash:
 | 
			
		||||
    name: Verify clang-tidy hash
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
 | 
			
		||||
      - name: Set up Python
 | 
			
		||||
        uses: actions/setup-python@v5.6.0
 | 
			
		||||
        with:
 | 
			
		||||
          python-version: "3.11"
 | 
			
		||||
 | 
			
		||||
      - name: Verify hash
 | 
			
		||||
        run: |
 | 
			
		||||
          python script/clang_tidy_hash.py --verify
 | 
			
		||||
 | 
			
		||||
      - if: failure()
 | 
			
		||||
        name: Show hash details
 | 
			
		||||
        run: |
 | 
			
		||||
          python script/clang_tidy_hash.py
 | 
			
		||||
          echo "## Job Failed" | tee -a $GITHUB_STEP_SUMMARY
 | 
			
		||||
          echo "You have modified clang-tidy configuration but have not updated the hash." | tee -a $GITHUB_STEP_SUMMARY
 | 
			
		||||
          echo "Please run 'script/clang_tidy_hash.py --update' and commit the changes." | tee -a $GITHUB_STEP_SUMMARY
 | 
			
		||||
 | 
			
		||||
      - if: failure()
 | 
			
		||||
        name: Request changes
 | 
			
		||||
        uses: actions/github-script@v7.0.1
 | 
			
		||||
        with:
 | 
			
		||||
          script: |
 | 
			
		||||
            await github.rest.pulls.createReview({
 | 
			
		||||
              pull_number: context.issue.number,
 | 
			
		||||
              owner: context.repo.owner,
 | 
			
		||||
              repo: context.repo.repo,
 | 
			
		||||
              event: 'REQUEST_CHANGES',
 | 
			
		||||
              body: 'You have modified clang-tidy configuration but have not updated the hash.\nPlease run `script/clang_tidy_hash.py --update` and commit the changes.'
 | 
			
		||||
            })
 | 
			
		||||
 | 
			
		||||
      - if: success()
 | 
			
		||||
        name: Dismiss review
 | 
			
		||||
        uses: actions/github-script@v7.0.1
 | 
			
		||||
        with:
 | 
			
		||||
          script: |
 | 
			
		||||
            let reviews = await github.rest.pulls.listReviews({
 | 
			
		||||
              pull_number: context.issue.number,
 | 
			
		||||
              owner: context.repo.owner,
 | 
			
		||||
              repo: context.repo.repo
 | 
			
		||||
            });
 | 
			
		||||
            for (let review of reviews.data) {
 | 
			
		||||
              if (review.user.login === 'github-actions[bot]' && review.state === 'CHANGES_REQUESTED') {
 | 
			
		||||
                await github.rest.pulls.dismissReview({
 | 
			
		||||
                  pull_number: context.issue.number,
 | 
			
		||||
                  owner: context.repo.owner,
 | 
			
		||||
                  repo: context.repo.repo,
 | 
			
		||||
                  review_id: review.id,
 | 
			
		||||
                  message: 'Clang-tidy hash now matches configuration.'
 | 
			
		||||
                });
 | 
			
		||||
              }
 | 
			
		||||
            }
 | 
			
		||||
							
								
								
									
										2
									
								
								.github/workflows/ci-docker.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/ci-docker.yml
									
									
									
									
										vendored
									
									
								
							@@ -47,7 +47,7 @@ jobs:
 | 
			
		||||
      - name: Set up Python
 | 
			
		||||
        uses: actions/setup-python@v5.6.0
 | 
			
		||||
        with:
 | 
			
		||||
          python-version: "3.11"
 | 
			
		||||
          python-version: "3.10"
 | 
			
		||||
      - name: Set up Docker Buildx
 | 
			
		||||
        uses: docker/setup-buildx-action@v3.11.1
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										282
									
								
								.github/workflows/ci.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										282
									
								
								.github/workflows/ci.yml
									
									
									
									
										vendored
									
									
								
							@@ -20,8 +20,8 @@ permissions:
 | 
			
		||||
  contents: read
 | 
			
		||||
 | 
			
		||||
env:
 | 
			
		||||
  DEFAULT_PYTHON: "3.11"
 | 
			
		||||
  PYUPGRADE_TARGET: "--py311-plus"
 | 
			
		||||
  DEFAULT_PYTHON: "3.10"
 | 
			
		||||
  PYUPGRADE_TARGET: "--py310-plus"
 | 
			
		||||
 | 
			
		||||
concurrency:
 | 
			
		||||
  # yamllint disable-line rule:line-length
 | 
			
		||||
@@ -39,7 +39,7 @@ jobs:
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
      - name: Generate cache-key
 | 
			
		||||
        id: cache-key
 | 
			
		||||
        run: echo key="${{ hashFiles('requirements.txt', 'requirements_test.txt', '.pre-commit-config.yaml') }}" >> $GITHUB_OUTPUT
 | 
			
		||||
        run: echo key="${{ hashFiles('requirements.txt', 'requirements_test.txt') }}" >> $GITHUB_OUTPUT
 | 
			
		||||
      - name: Set up Python ${{ env.DEFAULT_PYTHON }}
 | 
			
		||||
        id: python
 | 
			
		||||
        uses: actions/setup-python@v5.6.0
 | 
			
		||||
@@ -58,16 +58,56 @@ jobs:
 | 
			
		||||
          python -m venv venv
 | 
			
		||||
          . venv/bin/activate
 | 
			
		||||
          python --version
 | 
			
		||||
          pip install -r requirements.txt -r requirements_test.txt pre-commit
 | 
			
		||||
          pip install -r requirements.txt -r requirements_test.txt
 | 
			
		||||
          pip install -e .
 | 
			
		||||
 | 
			
		||||
  ruff:
 | 
			
		||||
    name: Check ruff
 | 
			
		||||
    runs-on: ubuntu-24.04
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code from GitHub
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
      - name: Restore Python
 | 
			
		||||
        uses: ./.github/actions/restore-python
 | 
			
		||||
        with:
 | 
			
		||||
          python-version: ${{ env.DEFAULT_PYTHON }}
 | 
			
		||||
          cache-key: ${{ needs.common.outputs.cache-key }}
 | 
			
		||||
      - name: Run Ruff
 | 
			
		||||
        run: |
 | 
			
		||||
          . venv/bin/activate
 | 
			
		||||
          ruff format esphome tests
 | 
			
		||||
      - name: Suggested changes
 | 
			
		||||
        run: script/ci-suggest-changes
 | 
			
		||||
        if: always()
 | 
			
		||||
 | 
			
		||||
  flake8:
 | 
			
		||||
    name: Check flake8
 | 
			
		||||
    runs-on: ubuntu-24.04
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code from GitHub
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
      - name: Restore Python
 | 
			
		||||
        uses: ./.github/actions/restore-python
 | 
			
		||||
        with:
 | 
			
		||||
          python-version: ${{ env.DEFAULT_PYTHON }}
 | 
			
		||||
          cache-key: ${{ needs.common.outputs.cache-key }}
 | 
			
		||||
      - name: Run flake8
 | 
			
		||||
        run: |
 | 
			
		||||
          . venv/bin/activate
 | 
			
		||||
          flake8 esphome
 | 
			
		||||
      - name: Suggested changes
 | 
			
		||||
        run: script/ci-suggest-changes
 | 
			
		||||
        if: always()
 | 
			
		||||
 | 
			
		||||
  pylint:
 | 
			
		||||
    name: Check pylint
 | 
			
		||||
    runs-on: ubuntu-24.04
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
      - determine-jobs
 | 
			
		||||
    if: needs.determine-jobs.outputs.python-linters == 'true'
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code from GitHub
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
@@ -84,6 +124,27 @@ jobs:
 | 
			
		||||
        run: script/ci-suggest-changes
 | 
			
		||||
        if: always()
 | 
			
		||||
 | 
			
		||||
  pyupgrade:
 | 
			
		||||
    name: Check pyupgrade
 | 
			
		||||
    runs-on: ubuntu-24.04
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code from GitHub
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
      - name: Restore Python
 | 
			
		||||
        uses: ./.github/actions/restore-python
 | 
			
		||||
        with:
 | 
			
		||||
          python-version: ${{ env.DEFAULT_PYTHON }}
 | 
			
		||||
          cache-key: ${{ needs.common.outputs.cache-key }}
 | 
			
		||||
      - name: Run pyupgrade
 | 
			
		||||
        run: |
 | 
			
		||||
          . venv/bin/activate
 | 
			
		||||
          pyupgrade ${{ env.PYUPGRADE_TARGET }} `find esphome -name "*.py" -type f`
 | 
			
		||||
      - name: Suggested changes
 | 
			
		||||
        run: script/ci-suggest-changes
 | 
			
		||||
        if: always()
 | 
			
		||||
 | 
			
		||||
  ci-custom:
 | 
			
		||||
    name: Run script/ci-custom
 | 
			
		||||
    runs-on: ubuntu-24.04
 | 
			
		||||
@@ -112,6 +173,7 @@ jobs:
 | 
			
		||||
      fail-fast: false
 | 
			
		||||
      matrix:
 | 
			
		||||
        python-version:
 | 
			
		||||
          - "3.10"
 | 
			
		||||
          - "3.11"
 | 
			
		||||
          - "3.12"
 | 
			
		||||
          - "3.13"
 | 
			
		||||
@@ -127,10 +189,14 @@ jobs:
 | 
			
		||||
            os: windows-latest
 | 
			
		||||
          - python-version: "3.12"
 | 
			
		||||
            os: windows-latest
 | 
			
		||||
          - python-version: "3.10"
 | 
			
		||||
            os: windows-latest
 | 
			
		||||
          - python-version: "3.13"
 | 
			
		||||
            os: macOS-latest
 | 
			
		||||
          - python-version: "3.12"
 | 
			
		||||
            os: macOS-latest
 | 
			
		||||
          - python-version: "3.10"
 | 
			
		||||
            os: macOS-latest
 | 
			
		||||
    runs-on: ${{ matrix.os }}
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
@@ -138,7 +204,6 @@ jobs:
 | 
			
		||||
      - name: Check out code from GitHub
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
      - name: Restore Python
 | 
			
		||||
        id: restore-python
 | 
			
		||||
        uses: ./.github/actions/restore-python
 | 
			
		||||
        with:
 | 
			
		||||
          python-version: ${{ matrix.python-version }}
 | 
			
		||||
@@ -148,108 +213,56 @@ jobs:
 | 
			
		||||
      - name: Run pytest
 | 
			
		||||
        if: matrix.os == 'windows-latest'
 | 
			
		||||
        run: |
 | 
			
		||||
          . ./venv/Scripts/activate.ps1
 | 
			
		||||
          pytest -vv --cov-report=xml --tb=native -n auto tests --ignore=tests/integration/
 | 
			
		||||
          ./venv/Scripts/activate
 | 
			
		||||
          pytest -vv --cov-report=xml --tb=native -n auto tests
 | 
			
		||||
      - name: Run pytest
 | 
			
		||||
        if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest'
 | 
			
		||||
        run: |
 | 
			
		||||
          . 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
 | 
			
		||||
        uses: codecov/codecov-action@v5.4.3
 | 
			
		||||
        with:
 | 
			
		||||
          token: ${{ secrets.CODECOV_TOKEN }}
 | 
			
		||||
      - name: Save Python virtual environment cache
 | 
			
		||||
        if: github.ref == 'refs/heads/dev'
 | 
			
		||||
        uses: actions/cache/save@v4.2.3
 | 
			
		||||
        with:
 | 
			
		||||
          path: venv
 | 
			
		||||
          key: ${{ runner.os }}-${{ steps.restore-python.outputs.python-version }}-venv-${{ needs.common.outputs.cache-key }}
 | 
			
		||||
 | 
			
		||||
  determine-jobs:
 | 
			
		||||
    name: Determine which jobs to run
 | 
			
		||||
  clang-format:
 | 
			
		||||
    name: Check clang-format
 | 
			
		||||
    runs-on: ubuntu-24.04
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
    outputs:
 | 
			
		||||
      integration-tests: ${{ steps.determine.outputs.integration-tests }}
 | 
			
		||||
      clang-tidy: ${{ steps.determine.outputs.clang-tidy }}
 | 
			
		||||
      python-linters: ${{ steps.determine.outputs.python-linters }}
 | 
			
		||||
      changed-components: ${{ steps.determine.outputs.changed-components }}
 | 
			
		||||
      component-test-count: ${{ steps.determine.outputs.component-test-count }}
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code from GitHub
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
        with:
 | 
			
		||||
          # Fetch enough history to find the merge base
 | 
			
		||||
          fetch-depth: 2
 | 
			
		||||
      - name: Restore Python
 | 
			
		||||
        uses: ./.github/actions/restore-python
 | 
			
		||||
        with:
 | 
			
		||||
          python-version: ${{ env.DEFAULT_PYTHON }}
 | 
			
		||||
          cache-key: ${{ needs.common.outputs.cache-key }}
 | 
			
		||||
      - name: Determine which tests to run
 | 
			
		||||
        id: determine
 | 
			
		||||
        env:
 | 
			
		||||
          GH_TOKEN: ${{ github.token }}
 | 
			
		||||
      - name: Install clang-format
 | 
			
		||||
        run: |
 | 
			
		||||
          . venv/bin/activate
 | 
			
		||||
          output=$(python script/determine-jobs.py)
 | 
			
		||||
          echo "Test determination output:"
 | 
			
		||||
          echo "$output" | jq
 | 
			
		||||
 | 
			
		||||
          # Extract individual fields
 | 
			
		||||
          echo "integration-tests=$(echo "$output" | jq -r '.integration_tests')" >> $GITHUB_OUTPUT
 | 
			
		||||
          echo "clang-tidy=$(echo "$output" | jq -r '.clang_tidy')" >> $GITHUB_OUTPUT
 | 
			
		||||
          echo "python-linters=$(echo "$output" | jq -r '.python_linters')" >> $GITHUB_OUTPUT
 | 
			
		||||
          echo "changed-components=$(echo "$output" | jq -c '.changed_components')" >> $GITHUB_OUTPUT
 | 
			
		||||
          echo "component-test-count=$(echo "$output" | jq -r '.component_test_count')" >> $GITHUB_OUTPUT
 | 
			
		||||
 | 
			
		||||
  integration-tests:
 | 
			
		||||
    name: Run integration tests
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
      - determine-jobs
 | 
			
		||||
    if: needs.determine-jobs.outputs.integration-tests == 'true'
 | 
			
		||||
    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
 | 
			
		||||
          pip install clang-format -c requirements_dev.txt
 | 
			
		||||
      - name: Run clang-format
 | 
			
		||||
        run: |
 | 
			
		||||
          . venv/bin/activate
 | 
			
		||||
          pytest -vv --no-cov --tb=native -n auto tests/integration/
 | 
			
		||||
          script/clang-format -i
 | 
			
		||||
          git diff-index --quiet HEAD --
 | 
			
		||||
      - name: Suggested changes
 | 
			
		||||
        run: script/ci-suggest-changes
 | 
			
		||||
        if: always()
 | 
			
		||||
 | 
			
		||||
  clang-tidy:
 | 
			
		||||
    name: ${{ matrix.name }}
 | 
			
		||||
    runs-on: ubuntu-24.04
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
      - determine-jobs
 | 
			
		||||
    if: needs.determine-jobs.outputs.clang-tidy == 'true'
 | 
			
		||||
    env:
 | 
			
		||||
      GH_TOKEN: ${{ github.token }}
 | 
			
		||||
      - ruff
 | 
			
		||||
      - ci-custom
 | 
			
		||||
      - clang-format
 | 
			
		||||
      - flake8
 | 
			
		||||
      - pylint
 | 
			
		||||
      - pytest
 | 
			
		||||
      - pyupgrade
 | 
			
		||||
    strategy:
 | 
			
		||||
      fail-fast: false
 | 
			
		||||
      max-parallel: 2
 | 
			
		||||
@@ -288,10 +301,6 @@ jobs:
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code from GitHub
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
        with:
 | 
			
		||||
          # Need history for HEAD~1 to work for checking changed files
 | 
			
		||||
          fetch-depth: 2
 | 
			
		||||
 | 
			
		||||
      - name: Restore Python
 | 
			
		||||
        uses: ./.github/actions/restore-python
 | 
			
		||||
        with:
 | 
			
		||||
@@ -303,14 +312,14 @@ jobs:
 | 
			
		||||
        uses: actions/cache@v4.2.3
 | 
			
		||||
        with:
 | 
			
		||||
          path: ~/.platformio
 | 
			
		||||
          key: platformio-${{ matrix.pio_cache_key }}-${{ hashFiles('platformio.ini') }}
 | 
			
		||||
          key: platformio-${{ matrix.pio_cache_key }}
 | 
			
		||||
 | 
			
		||||
      - name: Cache platformio
 | 
			
		||||
        if: github.ref != 'refs/heads/dev'
 | 
			
		||||
        uses: actions/cache/restore@v4.2.3
 | 
			
		||||
        with:
 | 
			
		||||
          path: ~/.platformio
 | 
			
		||||
          key: platformio-${{ matrix.pio_cache_key }}-${{ hashFiles('platformio.ini') }}
 | 
			
		||||
          key: platformio-${{ matrix.pio_cache_key }}
 | 
			
		||||
 | 
			
		||||
      - name: Register problem matchers
 | 
			
		||||
        run: |
 | 
			
		||||
@@ -324,28 +333,10 @@ jobs:
 | 
			
		||||
          mkdir -p .temp
 | 
			
		||||
          pio run --list-targets -e esp32-idf-tidy
 | 
			
		||||
 | 
			
		||||
      - name: Check if full clang-tidy scan needed
 | 
			
		||||
        id: check_full_scan
 | 
			
		||||
        run: |
 | 
			
		||||
          . venv/bin/activate
 | 
			
		||||
          if python script/clang_tidy_hash.py --check; then
 | 
			
		||||
            echo "full_scan=true" >> $GITHUB_OUTPUT
 | 
			
		||||
            echo "reason=hash_changed" >> $GITHUB_OUTPUT
 | 
			
		||||
          else
 | 
			
		||||
            echo "full_scan=false" >> $GITHUB_OUTPUT
 | 
			
		||||
            echo "reason=normal" >> $GITHUB_OUTPUT
 | 
			
		||||
          fi
 | 
			
		||||
 | 
			
		||||
      - name: Run clang-tidy
 | 
			
		||||
        run: |
 | 
			
		||||
          . venv/bin/activate
 | 
			
		||||
          if [ "${{ steps.check_full_scan.outputs.full_scan }}" = "true" ]; then
 | 
			
		||||
            echo "Running FULL clang-tidy scan (hash changed)"
 | 
			
		||||
          script/clang-tidy --all-headers --fix ${{ matrix.options }} ${{ matrix.ignore_errors && '|| true' || '' }}
 | 
			
		||||
          else
 | 
			
		||||
            echo "Running clang-tidy on changed files only"
 | 
			
		||||
            script/clang-tidy --all-headers --fix --changed ${{ matrix.options }} ${{ matrix.ignore_errors && '|| true' || '' }}
 | 
			
		||||
          fi
 | 
			
		||||
        env:
 | 
			
		||||
          # Also cache libdeps, store them in a ~/.platformio subfolder
 | 
			
		||||
          PLATFORMIO_LIBDEPS_DIR: ~/.platformio/libdeps
 | 
			
		||||
@@ -355,18 +346,59 @@ jobs:
 | 
			
		||||
        # yamllint disable-line rule:line-length
 | 
			
		||||
        if: always()
 | 
			
		||||
 | 
			
		||||
  list-components:
 | 
			
		||||
    runs-on: ubuntu-24.04
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
    if: github.event_name == 'pull_request'
 | 
			
		||||
    outputs:
 | 
			
		||||
      components: ${{ steps.list-components.outputs.components }}
 | 
			
		||||
      count: ${{ steps.list-components.outputs.count }}
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code from GitHub
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
        with:
 | 
			
		||||
          # Fetch enough history so `git merge-base refs/remotes/origin/dev HEAD` works.
 | 
			
		||||
          fetch-depth: 500
 | 
			
		||||
      - name: Get target branch
 | 
			
		||||
        id: target-branch
 | 
			
		||||
        run: |
 | 
			
		||||
          echo "branch=${{ github.event.pull_request.base.ref }}" >> $GITHUB_OUTPUT
 | 
			
		||||
      - name: Fetch ${{ steps.target-branch.outputs.branch }} branch
 | 
			
		||||
        run: |
 | 
			
		||||
          git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/${{ steps.target-branch.outputs.branch }}:refs/remotes/origin/${{ steps.target-branch.outputs.branch }}
 | 
			
		||||
          git merge-base refs/remotes/origin/${{ steps.target-branch.outputs.branch }} HEAD
 | 
			
		||||
      - name: Restore Python
 | 
			
		||||
        uses: ./.github/actions/restore-python
 | 
			
		||||
        with:
 | 
			
		||||
          python-version: ${{ env.DEFAULT_PYTHON }}
 | 
			
		||||
          cache-key: ${{ needs.common.outputs.cache-key }}
 | 
			
		||||
      - name: Find changed components
 | 
			
		||||
        id: list-components
 | 
			
		||||
        run: |
 | 
			
		||||
          . venv/bin/activate
 | 
			
		||||
          components=$(script/list-components.py --changed --branch ${{ steps.target-branch.outputs.branch }})
 | 
			
		||||
          output_components=$(echo "$components" | jq -R -s -c 'split("\n")[:-1] | map(select(length > 0))')
 | 
			
		||||
          count=$(echo "$output_components" | jq length)
 | 
			
		||||
 | 
			
		||||
          echo "components=$output_components" >> $GITHUB_OUTPUT
 | 
			
		||||
          echo "count=$count" >> $GITHUB_OUTPUT
 | 
			
		||||
 | 
			
		||||
          echo "$count Components:"
 | 
			
		||||
          echo "$output_components" | jq
 | 
			
		||||
 | 
			
		||||
  test-build-components:
 | 
			
		||||
    name: Component test ${{ matrix.file }}
 | 
			
		||||
    runs-on: ubuntu-24.04
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
      - determine-jobs
 | 
			
		||||
    if: github.event_name == 'pull_request' && fromJSON(needs.determine-jobs.outputs.component-test-count) > 0 && fromJSON(needs.determine-jobs.outputs.component-test-count) < 100
 | 
			
		||||
      - list-components
 | 
			
		||||
    if: github.event_name == 'pull_request' && fromJSON(needs.list-components.outputs.count) > 0 && fromJSON(needs.list-components.outputs.count) < 100
 | 
			
		||||
    strategy:
 | 
			
		||||
      fail-fast: false
 | 
			
		||||
      max-parallel: 2
 | 
			
		||||
      matrix:
 | 
			
		||||
        file: ${{ fromJson(needs.determine-jobs.outputs.changed-components) }}
 | 
			
		||||
        file: ${{ fromJson(needs.list-components.outputs.components) }}
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Install dependencies
 | 
			
		||||
        run: |
 | 
			
		||||
@@ -394,8 +426,8 @@ jobs:
 | 
			
		||||
    runs-on: ubuntu-24.04
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
      - determine-jobs
 | 
			
		||||
    if: github.event_name == 'pull_request' && fromJSON(needs.determine-jobs.outputs.component-test-count) >= 100
 | 
			
		||||
      - list-components
 | 
			
		||||
    if: github.event_name == 'pull_request' && fromJSON(needs.list-components.outputs.count) >= 100
 | 
			
		||||
    outputs:
 | 
			
		||||
      matrix: ${{ steps.split.outputs.components }}
 | 
			
		||||
    steps:
 | 
			
		||||
@@ -404,7 +436,7 @@ jobs:
 | 
			
		||||
      - name: Split components into 20 groups
 | 
			
		||||
        id: split
 | 
			
		||||
        run: |
 | 
			
		||||
          components=$(echo '${{ needs.determine-jobs.outputs.changed-components }}' | jq -c '.[]' | shuf | jq -s -c '[_nwise(20) | join(" ")]')
 | 
			
		||||
          components=$(echo '${{ needs.list-components.outputs.components }}' | jq -c '.[]' | shuf | jq -s -c '[_nwise(20) | join(" ")]')
 | 
			
		||||
          echo "components=$components" >> $GITHUB_OUTPUT
 | 
			
		||||
 | 
			
		||||
  test-build-components-split:
 | 
			
		||||
@@ -412,9 +444,9 @@ jobs:
 | 
			
		||||
    runs-on: ubuntu-24.04
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
      - determine-jobs
 | 
			
		||||
      - list-components
 | 
			
		||||
      - test-build-components-splitter
 | 
			
		||||
    if: github.event_name == 'pull_request' && fromJSON(needs.determine-jobs.outputs.component-test-count) >= 100
 | 
			
		||||
    if: github.event_name == 'pull_request' && fromJSON(needs.list-components.outputs.count) >= 100
 | 
			
		||||
    strategy:
 | 
			
		||||
      fail-fast: false
 | 
			
		||||
      max-parallel: 4
 | 
			
		||||
@@ -451,41 +483,23 @@ jobs:
 | 
			
		||||
            ./script/test_build_components -e compile -c $component
 | 
			
		||||
          done
 | 
			
		||||
 | 
			
		||||
  pre-commit-ci-lite:
 | 
			
		||||
    name: pre-commit.ci lite
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
    if: github.event_name == 'pull_request' && github.base_ref != 'beta' && github.base_ref != 'release'
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code from GitHub
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
      - name: Restore Python
 | 
			
		||||
        uses: ./.github/actions/restore-python
 | 
			
		||||
        with:
 | 
			
		||||
          python-version: ${{ env.DEFAULT_PYTHON }}
 | 
			
		||||
          cache-key: ${{ needs.common.outputs.cache-key }}
 | 
			
		||||
      - uses: pre-commit/action@v3.0.1
 | 
			
		||||
        env:
 | 
			
		||||
          SKIP: pylint,clang-tidy-hash
 | 
			
		||||
      - uses: pre-commit-ci/lite-action@v1.1.0
 | 
			
		||||
        if: always()
 | 
			
		||||
 | 
			
		||||
  ci-status:
 | 
			
		||||
    name: CI Status
 | 
			
		||||
    runs-on: ubuntu-24.04
 | 
			
		||||
    needs:
 | 
			
		||||
      - common
 | 
			
		||||
      - ruff
 | 
			
		||||
      - ci-custom
 | 
			
		||||
      - clang-format
 | 
			
		||||
      - flake8
 | 
			
		||||
      - pylint
 | 
			
		||||
      - pytest
 | 
			
		||||
      - integration-tests
 | 
			
		||||
      - pyupgrade
 | 
			
		||||
      - clang-tidy
 | 
			
		||||
      - determine-jobs
 | 
			
		||||
      - list-components
 | 
			
		||||
      - test-build-components
 | 
			
		||||
      - test-build-components-splitter
 | 
			
		||||
      - test-build-components-split
 | 
			
		||||
      - pre-commit-ci-lite
 | 
			
		||||
    if: always()
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Success
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										264
									
								
								.github/workflows/codeowner-review-request.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										264
									
								
								.github/workflows/codeowner-review-request.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,264 +0,0 @@
 | 
			
		||||
# This workflow automatically requests reviews from codeowners when:
 | 
			
		||||
# 1. A PR is opened, reopened, or synchronized (updated)
 | 
			
		||||
# 2. A PR is marked as ready for review
 | 
			
		||||
#
 | 
			
		||||
# It reads the CODEOWNERS file and matches all changed files in the PR against
 | 
			
		||||
# the codeowner patterns, then requests reviews from the appropriate owners
 | 
			
		||||
# while avoiding duplicate requests for users who have already been requested
 | 
			
		||||
# or have already reviewed the PR.
 | 
			
		||||
 | 
			
		||||
name: Request Codeowner Reviews
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  # Needs to be pull_request_target to get write permissions
 | 
			
		||||
  pull_request_target:
 | 
			
		||||
    types: [opened, reopened, synchronize, ready_for_review]
 | 
			
		||||
 | 
			
		||||
permissions:
 | 
			
		||||
  pull-requests: write
 | 
			
		||||
  contents: read
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  request-codeowner-reviews:
 | 
			
		||||
    name: Run
 | 
			
		||||
    if: ${{ !github.event.pull_request.draft }}
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Request reviews from component codeowners
 | 
			
		||||
        uses: actions/github-script@v7.0.1
 | 
			
		||||
        with:
 | 
			
		||||
          script: |
 | 
			
		||||
            const owner = context.repo.owner;
 | 
			
		||||
            const repo = context.repo.repo;
 | 
			
		||||
            const pr_number = context.payload.pull_request.number;
 | 
			
		||||
 | 
			
		||||
            console.log(`Processing PR #${pr_number} for codeowner review requests`);
 | 
			
		||||
 | 
			
		||||
            try {
 | 
			
		||||
              // Get the list of changed files in this PR
 | 
			
		||||
              const { data: files } = await github.rest.pulls.listFiles({
 | 
			
		||||
                owner,
 | 
			
		||||
                repo,
 | 
			
		||||
                pull_number: pr_number
 | 
			
		||||
              });
 | 
			
		||||
 | 
			
		||||
              const changedFiles = files.map(file => file.filename);
 | 
			
		||||
              console.log(`Found ${changedFiles.length} changed files`);
 | 
			
		||||
 | 
			
		||||
              if (changedFiles.length === 0) {
 | 
			
		||||
                console.log('No changed files found, skipping codeowner review requests');
 | 
			
		||||
                return;
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              // Fetch CODEOWNERS file from root
 | 
			
		||||
              const { data: codeownersFile } = await github.rest.repos.getContent({
 | 
			
		||||
                owner,
 | 
			
		||||
                repo,
 | 
			
		||||
                path: 'CODEOWNERS',
 | 
			
		||||
                ref: context.payload.pull_request.base.sha
 | 
			
		||||
              });
 | 
			
		||||
              const codeownersContent = Buffer.from(codeownersFile.content, 'base64').toString('utf8');
 | 
			
		||||
 | 
			
		||||
              // Parse CODEOWNERS file to extract all patterns and their owners
 | 
			
		||||
              const codeownersLines = codeownersContent.split('\n')
 | 
			
		||||
                .map(line => line.trim())
 | 
			
		||||
                .filter(line => line && !line.startsWith('#'));
 | 
			
		||||
 | 
			
		||||
              const codeownersPatterns = [];
 | 
			
		||||
 | 
			
		||||
              // Convert CODEOWNERS pattern to regex (robust glob handling)
 | 
			
		||||
              function globToRegex(pattern) {
 | 
			
		||||
                // Escape regex special characters except for glob wildcards
 | 
			
		||||
                let regexStr = pattern
 | 
			
		||||
                  .replace(/([.+^=!:${}()|[\]\\])/g, '\\$1') // escape regex chars
 | 
			
		||||
                  .replace(/\*\*/g, '.*') // globstar
 | 
			
		||||
                  .replace(/\*/g, '[^/]*') // single star
 | 
			
		||||
                  .replace(/\?/g, '.'); // question mark
 | 
			
		||||
                return new RegExp('^' + regexStr + '$');
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              // Helper function to create comment body
 | 
			
		||||
              function createCommentBody(reviewersList, teamsList, matchedFileCount, isSuccessful = true) {
 | 
			
		||||
                const reviewerMentions = reviewersList.map(r => `@${r}`);
 | 
			
		||||
                const teamMentions = teamsList.map(t => `@${owner}/${t}`);
 | 
			
		||||
                const allMentions = [...reviewerMentions, ...teamMentions].join(', ');
 | 
			
		||||
 | 
			
		||||
                if (isSuccessful) {
 | 
			
		||||
                  return `👋 Hi there! I've automatically requested reviews from codeowners based on the files changed in this PR.\n\n${allMentions} - You've been requested to review this PR as codeowner(s) of ${matchedFileCount} file(s) that were modified. Thanks for your time! 🙏`;
 | 
			
		||||
                } else {
 | 
			
		||||
                  return `👋 Hi there! This PR modifies ${matchedFileCount} file(s) with codeowners.\n\n${allMentions} - As codeowner(s) of the affected files, your review would be appreciated! 🙏\n\n_Note: Automatic review request may have failed, but you're still welcome to review._`;
 | 
			
		||||
                }
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              for (const line of codeownersLines) {
 | 
			
		||||
                const parts = line.split(/\s+/);
 | 
			
		||||
                if (parts.length < 2) continue;
 | 
			
		||||
 | 
			
		||||
                const pattern = parts[0];
 | 
			
		||||
                const owners = parts.slice(1);
 | 
			
		||||
 | 
			
		||||
                // Use robust glob-to-regex conversion
 | 
			
		||||
                const regex = globToRegex(pattern);
 | 
			
		||||
                codeownersPatterns.push({ pattern, regex, owners });
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              console.log(`Parsed ${codeownersPatterns.length} codeowner patterns`);
 | 
			
		||||
 | 
			
		||||
              // Match changed files against CODEOWNERS patterns
 | 
			
		||||
              const matchedOwners = new Set();
 | 
			
		||||
              const matchedTeams = new Set();
 | 
			
		||||
              const fileMatches = new Map(); // Track which files matched which patterns
 | 
			
		||||
 | 
			
		||||
              for (const file of changedFiles) {
 | 
			
		||||
                for (const { pattern, regex, owners } of codeownersPatterns) {
 | 
			
		||||
                  if (regex.test(file)) {
 | 
			
		||||
                    console.log(`File '${file}' matches pattern '${pattern}' with owners: ${owners.join(', ')}`);
 | 
			
		||||
 | 
			
		||||
                    if (!fileMatches.has(file)) {
 | 
			
		||||
                      fileMatches.set(file, []);
 | 
			
		||||
                    }
 | 
			
		||||
                    fileMatches.get(file).push({ pattern, owners });
 | 
			
		||||
 | 
			
		||||
                    // Add owners to the appropriate set (remove @ prefix)
 | 
			
		||||
                    for (const owner of owners) {
 | 
			
		||||
                      const cleanOwner = owner.startsWith('@') ? owner.slice(1) : owner;
 | 
			
		||||
                      if (cleanOwner.includes('/')) {
 | 
			
		||||
                        // Team mention (org/team-name)
 | 
			
		||||
                        const teamName = cleanOwner.split('/')[1];
 | 
			
		||||
                        matchedTeams.add(teamName);
 | 
			
		||||
                      } else {
 | 
			
		||||
                        // Individual user
 | 
			
		||||
                        matchedOwners.add(cleanOwner);
 | 
			
		||||
                      }
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                }
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              if (matchedOwners.size === 0 && matchedTeams.size === 0) {
 | 
			
		||||
                console.log('No codeowners found for any changed files');
 | 
			
		||||
                return;
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              // Remove the PR author from reviewers
 | 
			
		||||
              const prAuthor = context.payload.pull_request.user.login;
 | 
			
		||||
              matchedOwners.delete(prAuthor);
 | 
			
		||||
 | 
			
		||||
              // Get current reviewers to avoid duplicate requests (but still mention them)
 | 
			
		||||
              const { data: prData } = await github.rest.pulls.get({
 | 
			
		||||
                owner,
 | 
			
		||||
                repo,
 | 
			
		||||
                pull_number: pr_number
 | 
			
		||||
              });
 | 
			
		||||
 | 
			
		||||
              const currentReviewers = new Set();
 | 
			
		||||
              const currentTeams = new Set();
 | 
			
		||||
 | 
			
		||||
              if (prData.requested_reviewers) {
 | 
			
		||||
                prData.requested_reviewers.forEach(reviewer => {
 | 
			
		||||
                  currentReviewers.add(reviewer.login);
 | 
			
		||||
                });
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              if (prData.requested_teams) {
 | 
			
		||||
                prData.requested_teams.forEach(team => {
 | 
			
		||||
                  currentTeams.add(team.slug);
 | 
			
		||||
                });
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              // Check for completed reviews to avoid re-requesting users who have already reviewed
 | 
			
		||||
              const { data: reviews } = await github.rest.pulls.listReviews({
 | 
			
		||||
                owner,
 | 
			
		||||
                repo,
 | 
			
		||||
                pull_number: pr_number
 | 
			
		||||
              });
 | 
			
		||||
 | 
			
		||||
              const reviewedUsers = new Set();
 | 
			
		||||
              reviews.forEach(review => {
 | 
			
		||||
                reviewedUsers.add(review.user.login);
 | 
			
		||||
              });
 | 
			
		||||
 | 
			
		||||
              // Remove only users who have already submitted reviews (not just requested reviewers)
 | 
			
		||||
              reviewedUsers.forEach(reviewer => {
 | 
			
		||||
                matchedOwners.delete(reviewer);
 | 
			
		||||
              });
 | 
			
		||||
 | 
			
		||||
              // For teams, we'll still remove already requested teams to avoid API errors
 | 
			
		||||
              currentTeams.forEach(team => {
 | 
			
		||||
                matchedTeams.delete(team);
 | 
			
		||||
              });
 | 
			
		||||
 | 
			
		||||
              const reviewersList = Array.from(matchedOwners);
 | 
			
		||||
              const teamsList = Array.from(matchedTeams);
 | 
			
		||||
 | 
			
		||||
              if (reviewersList.length === 0 && teamsList.length === 0) {
 | 
			
		||||
                console.log('No eligible reviewers found (all may already be requested or reviewed)');
 | 
			
		||||
                return;
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              const totalReviewers = reviewersList.length + teamsList.length;
 | 
			
		||||
              console.log(`Requesting reviews from ${reviewersList.length} users and ${teamsList.length} teams for ${fileMatches.size} matched files`);
 | 
			
		||||
 | 
			
		||||
              // Request reviews
 | 
			
		||||
              try {
 | 
			
		||||
                const requestParams = {
 | 
			
		||||
                  owner,
 | 
			
		||||
                  repo,
 | 
			
		||||
                  pull_number: pr_number
 | 
			
		||||
                };
 | 
			
		||||
 | 
			
		||||
                // Filter out users who are already requested reviewers for the API call
 | 
			
		||||
                const newReviewers = reviewersList.filter(reviewer => !currentReviewers.has(reviewer));
 | 
			
		||||
                const newTeams = teamsList.filter(team => !currentTeams.has(team));
 | 
			
		||||
 | 
			
		||||
                if (newReviewers.length > 0) {
 | 
			
		||||
                  requestParams.reviewers = newReviewers;
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                if (newTeams.length > 0) {
 | 
			
		||||
                  requestParams.team_reviewers = newTeams;
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                // Only make the API call if there are new reviewers to request
 | 
			
		||||
                if (newReviewers.length > 0 || newTeams.length > 0) {
 | 
			
		||||
                  await github.rest.pulls.requestReviewers(requestParams);
 | 
			
		||||
                  console.log(`Successfully requested reviews from ${newReviewers.length} new users and ${newTeams.length} new teams`);
 | 
			
		||||
                } else {
 | 
			
		||||
                  console.log('All codeowners are already requested reviewers or have reviewed');
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                // Add a comment to the PR mentioning what happened (include all matched codeowners)
 | 
			
		||||
                const commentBody = createCommentBody(reviewersList, teamsList, fileMatches.size, true);
 | 
			
		||||
 | 
			
		||||
                await github.rest.issues.createComment({
 | 
			
		||||
                  owner,
 | 
			
		||||
                  repo,
 | 
			
		||||
                  issue_number: pr_number,
 | 
			
		||||
                  body: commentBody
 | 
			
		||||
                });
 | 
			
		||||
              } catch (error) {
 | 
			
		||||
                if (error.status === 422) {
 | 
			
		||||
                  console.log('Some reviewers may already be requested or unavailable:', error.message);
 | 
			
		||||
 | 
			
		||||
                  // Try to add a comment even if review request failed
 | 
			
		||||
                  const commentBody = createCommentBody(reviewersList, teamsList, fileMatches.size, false);
 | 
			
		||||
 | 
			
		||||
                  try {
 | 
			
		||||
                    await github.rest.issues.createComment({
 | 
			
		||||
                      owner,
 | 
			
		||||
                      repo,
 | 
			
		||||
                      issue_number: pr_number,
 | 
			
		||||
                      body: commentBody
 | 
			
		||||
                    });
 | 
			
		||||
                  } catch (commentError) {
 | 
			
		||||
                    console.log('Failed to add comment:', commentError.message);
 | 
			
		||||
                  }
 | 
			
		||||
                } else {
 | 
			
		||||
                  throw error;
 | 
			
		||||
                }
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
            } catch (error) {
 | 
			
		||||
              console.log('Failed to process codeowner review requests:', error.message);
 | 
			
		||||
              console.error(error);
 | 
			
		||||
            }
 | 
			
		||||
							
								
								
									
										147
									
								
								.github/workflows/external-component-bot.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										147
									
								
								.github/workflows/external-component-bot.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,147 +0,0 @@
 | 
			
		||||
name: Add External Component Comment
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  pull_request_target:
 | 
			
		||||
    types: [opened, synchronize]
 | 
			
		||||
 | 
			
		||||
permissions:
 | 
			
		||||
  contents: read       #  Needed to fetch PR details
 | 
			
		||||
  issues: write        #  Needed to create and update comments (PR comments are managed via the issues REST API)
 | 
			
		||||
  pull-requests: write  # also needed?
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  external-comment:
 | 
			
		||||
    name: External component comment
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Add external component comment
 | 
			
		||||
        uses: actions/github-script@v7.0.1
 | 
			
		||||
        with:
 | 
			
		||||
          github-token: ${{ secrets.GITHUB_TOKEN }}
 | 
			
		||||
          script: |
 | 
			
		||||
            // Generate external component usage instructions
 | 
			
		||||
            function generateExternalComponentInstructions(prNumber, componentNames, owner, repo) {
 | 
			
		||||
                let source;
 | 
			
		||||
                if (owner === 'esphome' && repo === 'esphome')
 | 
			
		||||
                    source = `github://pr#${prNumber}`;
 | 
			
		||||
                else
 | 
			
		||||
                    source = `github://${owner}/${repo}@pull/${prNumber}/head`;
 | 
			
		||||
                return `To use the changes from this PR as an external component, add the following to your ESPHome configuration YAML file:
 | 
			
		||||
 | 
			
		||||
            \`\`\`yaml
 | 
			
		||||
            external_components:
 | 
			
		||||
              - source: ${source}
 | 
			
		||||
                components: [${componentNames.join(', ')}]
 | 
			
		||||
                refresh: 1h
 | 
			
		||||
            \`\`\``;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Generate repo clone instructions
 | 
			
		||||
            function generateRepoInstructions(prNumber, owner, repo, branch) {
 | 
			
		||||
                return `To use the changes in this PR:
 | 
			
		||||
 | 
			
		||||
            \`\`\`bash
 | 
			
		||||
            # Clone the repository:
 | 
			
		||||
            git clone https://github.com/${owner}/${repo}
 | 
			
		||||
            cd ${repo}
 | 
			
		||||
 | 
			
		||||
            # Checkout the PR branch:
 | 
			
		||||
            git fetch origin pull/${prNumber}/head:${branch}
 | 
			
		||||
            git checkout ${branch}
 | 
			
		||||
 | 
			
		||||
            # Install the development version:
 | 
			
		||||
            script/setup
 | 
			
		||||
 | 
			
		||||
            # Activate the development version:
 | 
			
		||||
            source venv/bin/activate
 | 
			
		||||
            \`\`\`
 | 
			
		||||
 | 
			
		||||
            Now you can run \`esphome\` as usual to test the changes in this PR.
 | 
			
		||||
            `;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            async function createComment(octokit, owner, repo, prNumber, esphomeChanges, componentChanges) {
 | 
			
		||||
                const commentMarker = "<!-- This comment was generated automatically by a GitHub workflow. -->";
 | 
			
		||||
                let commentBody;
 | 
			
		||||
                if (esphomeChanges.length === 1) {
 | 
			
		||||
                    commentBody = generateExternalComponentInstructions(prNumber, componentChanges, owner, repo);
 | 
			
		||||
                } else {
 | 
			
		||||
                    commentBody = generateRepoInstructions(prNumber, owner, repo, context.payload.pull_request.head.ref);
 | 
			
		||||
                }
 | 
			
		||||
                commentBody += `\n\n---\n(Added by the PR bot)\n\n${commentMarker}`;
 | 
			
		||||
 | 
			
		||||
                // Check for existing bot comment
 | 
			
		||||
                const comments = await github.rest.issues.listComments({
 | 
			
		||||
                    owner: owner,
 | 
			
		||||
                    repo: repo,
 | 
			
		||||
                    issue_number: prNumber,
 | 
			
		||||
                });
 | 
			
		||||
 | 
			
		||||
                const botComment = comments.data.find(comment =>
 | 
			
		||||
                    comment.body.includes(commentMarker)
 | 
			
		||||
                );
 | 
			
		||||
 | 
			
		||||
                if (botComment && botComment.body === commentBody) {
 | 
			
		||||
                    // No changes in the comment, do nothing
 | 
			
		||||
                    return;
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                if (botComment) {
 | 
			
		||||
                    // Update existing comment
 | 
			
		||||
                    await github.rest.issues.updateComment({
 | 
			
		||||
                        owner: owner,
 | 
			
		||||
                        repo: repo,
 | 
			
		||||
                        comment_id: botComment.id,
 | 
			
		||||
                        body: commentBody,
 | 
			
		||||
                    });
 | 
			
		||||
                } else {
 | 
			
		||||
                    // Create new comment
 | 
			
		||||
                    await github.rest.issues.createComment({
 | 
			
		||||
                        owner: owner,
 | 
			
		||||
                        repo: repo,
 | 
			
		||||
                        issue_number: prNumber,
 | 
			
		||||
                        body: commentBody,
 | 
			
		||||
                    });
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            async function getEsphomeAndComponentChanges(github, owner, repo, prNumber) {
 | 
			
		||||
                const changedFiles = await github.rest.pulls.listFiles({
 | 
			
		||||
                    owner: owner,
 | 
			
		||||
                    repo: repo,
 | 
			
		||||
                    pull_number: prNumber,
 | 
			
		||||
                });
 | 
			
		||||
 | 
			
		||||
                const esphomeChanges = changedFiles.data
 | 
			
		||||
                    .filter(file => file.filename !== "esphome/core/defines.h" && file.filename.startsWith('esphome/'))
 | 
			
		||||
                    .map(file => {
 | 
			
		||||
                        const match = file.filename.match(/esphome\/([^/]+)/);
 | 
			
		||||
                        return match ? match[1] : null;
 | 
			
		||||
                    })
 | 
			
		||||
                    .filter(it => it !== null);
 | 
			
		||||
 | 
			
		||||
                if (esphomeChanges.length === 0) {
 | 
			
		||||
                    return {esphomeChanges: [], componentChanges: []};
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                const uniqueEsphomeChanges = [...new Set(esphomeChanges)];
 | 
			
		||||
                const componentChanges = changedFiles.data
 | 
			
		||||
                    .filter(file => file.filename.startsWith('esphome/components/'))
 | 
			
		||||
                    .map(file => {
 | 
			
		||||
                        const match = file.filename.match(/esphome\/components\/([^/]+)\//);
 | 
			
		||||
                        return match ? match[1] : null;
 | 
			
		||||
                    })
 | 
			
		||||
                    .filter(it => it !== null);
 | 
			
		||||
 | 
			
		||||
                return {esphomeChanges: uniqueEsphomeChanges, componentChanges: [...new Set(componentChanges)]};
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Start of main code.
 | 
			
		||||
 | 
			
		||||
            const prNumber = context.payload.pull_request.number;
 | 
			
		||||
            const {owner, repo} = context.repo;
 | 
			
		||||
 | 
			
		||||
            const {esphomeChanges, componentChanges} = await getEsphomeAndComponentChanges(github, owner, repo, prNumber);
 | 
			
		||||
            if (componentChanges.length !== 0) {
 | 
			
		||||
                await createComment(github, owner, repo, prNumber, esphomeChanges, componentChanges);
 | 
			
		||||
            }
 | 
			
		||||
							
								
								
									
										119
									
								
								.github/workflows/issue-codeowner-notify.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										119
									
								
								.github/workflows/issue-codeowner-notify.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,119 +0,0 @@
 | 
			
		||||
# This workflow automatically notifies codeowners when an issue is labeled with component labels.
 | 
			
		||||
# It reads the CODEOWNERS file to find the maintainers for the labeled components
 | 
			
		||||
# and posts a comment mentioning them to ensure they're aware of the issue.
 | 
			
		||||
 | 
			
		||||
name: Notify Issue Codeowners
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  issues:
 | 
			
		||||
    types: [labeled]
 | 
			
		||||
 | 
			
		||||
permissions:
 | 
			
		||||
  issues: write
 | 
			
		||||
  contents: read
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  notify-codeowners:
 | 
			
		||||
    name: Run
 | 
			
		||||
    if: ${{ startsWith(github.event.label.name, format('component{0} ', ':')) }}
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Notify codeowners for component issues
 | 
			
		||||
        uses: actions/github-script@v7.0.1
 | 
			
		||||
        with:
 | 
			
		||||
          script: |
 | 
			
		||||
            const owner = context.repo.owner;
 | 
			
		||||
            const repo = context.repo.repo;
 | 
			
		||||
            const issue_number = context.payload.issue.number;
 | 
			
		||||
            const labelName = context.payload.label.name;
 | 
			
		||||
 | 
			
		||||
            console.log(`Processing issue #${issue_number} with label: ${labelName}`);
 | 
			
		||||
 | 
			
		||||
            // Extract component name from label
 | 
			
		||||
            const componentName = labelName.replace('component: ', '');
 | 
			
		||||
            console.log(`Component: ${componentName}`);
 | 
			
		||||
 | 
			
		||||
            try {
 | 
			
		||||
              // Fetch CODEOWNERS file from root
 | 
			
		||||
              const { data: codeownersFile } = await github.rest.repos.getContent({
 | 
			
		||||
                owner,
 | 
			
		||||
                repo,
 | 
			
		||||
                path: 'CODEOWNERS'
 | 
			
		||||
              });
 | 
			
		||||
              const codeownersContent = Buffer.from(codeownersFile.content, 'base64').toString('utf8');
 | 
			
		||||
 | 
			
		||||
              // Parse CODEOWNERS file to extract component mappings
 | 
			
		||||
              const codeownersLines = codeownersContent.split('\n')
 | 
			
		||||
                .map(line => line.trim())
 | 
			
		||||
                .filter(line => line && !line.startsWith('#'));
 | 
			
		||||
 | 
			
		||||
              let componentOwners = null;
 | 
			
		||||
 | 
			
		||||
              for (const line of codeownersLines) {
 | 
			
		||||
                const parts = line.split(/\s+/);
 | 
			
		||||
                if (parts.length < 2) continue;
 | 
			
		||||
 | 
			
		||||
                const pattern = parts[0];
 | 
			
		||||
                const owners = parts.slice(1);
 | 
			
		||||
 | 
			
		||||
                // Look for component patterns: esphome/components/{component}/*
 | 
			
		||||
                const componentMatch = pattern.match(/^esphome\/components\/([^\/]+)\/\*$/);
 | 
			
		||||
                if (componentMatch && componentMatch[1] === componentName) {
 | 
			
		||||
                  componentOwners = owners;
 | 
			
		||||
                  break;
 | 
			
		||||
                }
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              if (!componentOwners) {
 | 
			
		||||
                console.log(`No codeowners found for component: ${componentName}`);
 | 
			
		||||
                return;
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              console.log(`Found codeowners for '${componentName}': ${componentOwners.join(', ')}`);
 | 
			
		||||
 | 
			
		||||
              // Separate users and teams
 | 
			
		||||
              const userOwners = [];
 | 
			
		||||
              const teamOwners = [];
 | 
			
		||||
 | 
			
		||||
              for (const owner of componentOwners) {
 | 
			
		||||
                const cleanOwner = owner.startsWith('@') ? owner.slice(1) : owner;
 | 
			
		||||
                if (cleanOwner.includes('/')) {
 | 
			
		||||
                  // Team mention (org/team-name)
 | 
			
		||||
                  teamOwners.push(`@${cleanOwner}`);
 | 
			
		||||
                } else {
 | 
			
		||||
                  // Individual user
 | 
			
		||||
                  userOwners.push(`@${cleanOwner}`);
 | 
			
		||||
                }
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              // Remove issue author from mentions to avoid self-notification
 | 
			
		||||
              const issueAuthor = context.payload.issue.user.login;
 | 
			
		||||
              const filteredUserOwners = userOwners.filter(mention =>
 | 
			
		||||
                mention !== `@${issueAuthor}`
 | 
			
		||||
              );
 | 
			
		||||
 | 
			
		||||
              const allMentions = [...filteredUserOwners, ...teamOwners];
 | 
			
		||||
 | 
			
		||||
              if (allMentions.length === 0) {
 | 
			
		||||
                console.log('No codeowners to notify (issue author is the only codeowner)');
 | 
			
		||||
                return;
 | 
			
		||||
              }
 | 
			
		||||
 | 
			
		||||
              // Create comment body
 | 
			
		||||
              const mentionString = allMentions.join(', ');
 | 
			
		||||
              const commentBody = `👋 Hey ${mentionString}!\n\nThis issue has been labeled with \`component: ${componentName}\` and you've been identified as a codeowner of this component. Please take a look when you have a chance!\n\nThanks for maintaining this component! 🙏`;
 | 
			
		||||
 | 
			
		||||
              // Post comment
 | 
			
		||||
              await github.rest.issues.createComment({
 | 
			
		||||
                owner,
 | 
			
		||||
                repo,
 | 
			
		||||
                issue_number: issue_number,
 | 
			
		||||
                body: commentBody
 | 
			
		||||
              });
 | 
			
		||||
 | 
			
		||||
              console.log(`Successfully notified codeowners: ${mentionString}`);
 | 
			
		||||
 | 
			
		||||
            } catch (error) {
 | 
			
		||||
              console.log('Failed to process codeowner notifications:', error.message);
 | 
			
		||||
              console.error(error);
 | 
			
		||||
            }
 | 
			
		||||
							
								
								
									
										2
									
								
								.github/workflows/lock.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/lock.yml
									
									
									
									
										vendored
									
									
								
							@@ -9,3 +9,5 @@ on:
 | 
			
		||||
jobs:
 | 
			
		||||
  lock:
 | 
			
		||||
    uses: esphome/workflows/.github/workflows/lock.yml@main
 | 
			
		||||
    with:
 | 
			
		||||
      since-days: 3650
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							@@ -96,7 +96,7 @@ jobs:
 | 
			
		||||
      - name: Set up Python
 | 
			
		||||
        uses: actions/setup-python@v5.6.0
 | 
			
		||||
        with:
 | 
			
		||||
          python-version: "3.11"
 | 
			
		||||
          python-version: "3.10"
 | 
			
		||||
 | 
			
		||||
      - name: Set up Docker Buildx
 | 
			
		||||
        uses: docker/setup-buildx-action@v3.11.1
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										25
									
								
								.github/workflows/yaml-lint.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								.github/workflows/yaml-lint.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,25 @@
 | 
			
		||||
---
 | 
			
		||||
name: YAML lint
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    branches: [dev, beta, release]
 | 
			
		||||
    paths:
 | 
			
		||||
      - "**.yaml"
 | 
			
		||||
      - "**.yml"
 | 
			
		||||
  pull_request:
 | 
			
		||||
    paths:
 | 
			
		||||
      - "**.yaml"
 | 
			
		||||
      - "**.yml"
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  yamllint:
 | 
			
		||||
    name: yamllint
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code from GitHub
 | 
			
		||||
        uses: actions/checkout@v4.2.2
 | 
			
		||||
      - name: Run yamllint
 | 
			
		||||
        uses: frenck/action-yamllint@v1.5.0
 | 
			
		||||
        with:
 | 
			
		||||
          strict: true
 | 
			
		||||
@@ -1,17 +1,10 @@
 | 
			
		||||
---
 | 
			
		||||
# See https://pre-commit.com for more information
 | 
			
		||||
# See https://pre-commit.com/hooks.html for more hooks
 | 
			
		||||
 | 
			
		||||
ci:
 | 
			
		||||
  autoupdate_commit_msg: 'pre-commit: autoupdate'
 | 
			
		||||
  autoupdate_schedule: off  # Disabled until ruff versions are synced between deps and pre-commit
 | 
			
		||||
  # Skip hooks that have issues in pre-commit CI environment
 | 
			
		||||
  skip: [pylint, clang-tidy-hash]
 | 
			
		||||
 | 
			
		||||
repos:
 | 
			
		||||
  - repo: https://github.com/astral-sh/ruff-pre-commit
 | 
			
		||||
    # Ruff version.
 | 
			
		||||
    rev: v0.12.4
 | 
			
		||||
    rev: v0.12.0
 | 
			
		||||
    hooks:
 | 
			
		||||
      # Run the linter.
 | 
			
		||||
      - id: ruff
 | 
			
		||||
@@ -27,25 +20,22 @@ repos:
 | 
			
		||||
          - pydocstyle==5.1.1
 | 
			
		||||
        files: ^(esphome|tests)/.+\.py$
 | 
			
		||||
  - repo: https://github.com/pre-commit/pre-commit-hooks
 | 
			
		||||
    rev: v5.0.0
 | 
			
		||||
    rev: v3.4.0
 | 
			
		||||
    hooks:
 | 
			
		||||
      - id: no-commit-to-branch
 | 
			
		||||
        args:
 | 
			
		||||
          - --branch=dev
 | 
			
		||||
          - --branch=release
 | 
			
		||||
          - --branch=beta
 | 
			
		||||
      - id: end-of-file-fixer
 | 
			
		||||
      - id: trailing-whitespace
 | 
			
		||||
  - repo: https://github.com/asottile/pyupgrade
 | 
			
		||||
    rev: v3.20.0
 | 
			
		||||
    hooks:
 | 
			
		||||
      - id: pyupgrade
 | 
			
		||||
        args: [--py311-plus]
 | 
			
		||||
        args: [--py310-plus]
 | 
			
		||||
  - repo: https://github.com/adrienverge/yamllint.git
 | 
			
		||||
    rev: v1.37.1
 | 
			
		||||
    hooks:
 | 
			
		||||
      - id: yamllint
 | 
			
		||||
        exclude: ^(\.clang-format|\.clang-tidy)$
 | 
			
		||||
  - repo: https://github.com/pre-commit/mirrors-clang-format
 | 
			
		||||
    rev: v13.0.1
 | 
			
		||||
    hooks:
 | 
			
		||||
@@ -58,10 +48,3 @@ repos:
 | 
			
		||||
        entry: python3 script/run-in-env.py pylint
 | 
			
		||||
        language: system
 | 
			
		||||
        types: [python]
 | 
			
		||||
      - id: clang-tidy-hash
 | 
			
		||||
        name: Update clang-tidy hash
 | 
			
		||||
        entry: python script/clang_tidy_hash.py --update-if-changed
 | 
			
		||||
        language: python
 | 
			
		||||
        files: ^(\.clang-tidy|platformio\.ini|requirements_dev\.txt)$
 | 
			
		||||
        pass_filenames: false
 | 
			
		||||
        additional_dependencies: []
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										18
									
								
								CODEOWNERS
									
									
									
									
									
								
							
							
						
						
									
										18
									
								
								CODEOWNERS
									
									
									
									
									
								
							@@ -9,7 +9,6 @@
 | 
			
		||||
pyproject.toml @esphome/core
 | 
			
		||||
esphome/*.py @esphome/core
 | 
			
		||||
esphome/core/* @esphome/core
 | 
			
		||||
.github/** @esphome/core
 | 
			
		||||
 | 
			
		||||
# Integrations
 | 
			
		||||
esphome/components/a01nyub/* @MrSuicideParrot
 | 
			
		||||
@@ -29,7 +28,7 @@ esphome/components/aic3204/* @kbx81
 | 
			
		||||
esphome/components/airthings_ble/* @jeromelaban
 | 
			
		||||
esphome/components/airthings_wave_base/* @jeromelaban @kpfleming @ncareau
 | 
			
		||||
esphome/components/airthings_wave_mini/* @ncareau
 | 
			
		||||
esphome/components/airthings_wave_plus/* @jeromelaban @precurse
 | 
			
		||||
esphome/components/airthings_wave_plus/* @jeromelaban
 | 
			
		||||
esphome/components/alarm_control_panel/* @grahambrown11 @hwstar
 | 
			
		||||
esphome/components/alpha3/* @jan-hofmeier
 | 
			
		||||
esphome/components/am2315c/* @swoboda1337
 | 
			
		||||
@@ -88,7 +87,6 @@ esphome/components/bp1658cj/* @Cossid
 | 
			
		||||
esphome/components/bp5758d/* @Cossid
 | 
			
		||||
esphome/components/button/* @esphome/core
 | 
			
		||||
esphome/components/bytebuffer/* @clydebarrow
 | 
			
		||||
esphome/components/camera/* @DT-art1 @bdraco
 | 
			
		||||
esphome/components/canbus/* @danielschramm @mvturnho
 | 
			
		||||
esphome/components/cap1188/* @mreditor97
 | 
			
		||||
esphome/components/captive_portal/* @OttoWinter
 | 
			
		||||
@@ -126,7 +124,6 @@ esphome/components/dht/* @OttoWinter
 | 
			
		||||
esphome/components/display_menu_base/* @numo68
 | 
			
		||||
esphome/components/dps310/* @kbx81
 | 
			
		||||
esphome/components/ds1307/* @badbadc0ffee
 | 
			
		||||
esphome/components/ds2484/* @mrk-its
 | 
			
		||||
esphome/components/dsmr/* @glmnet @zuidwijk
 | 
			
		||||
esphome/components/duty_time/* @dudanov
 | 
			
		||||
esphome/components/ee895/* @Stock-M
 | 
			
		||||
@@ -149,7 +146,6 @@ esphome/components/esp32_ble_client/* @jesserockz
 | 
			
		||||
esphome/components/esp32_ble_server/* @Rapsssito @clydebarrow @jesserockz
 | 
			
		||||
esphome/components/esp32_camera_web_server/* @ayufan
 | 
			
		||||
esphome/components/esp32_can/* @Sympatron
 | 
			
		||||
esphome/components/esp32_hosted/* @swoboda1337
 | 
			
		||||
esphome/components/esp32_improv/* @jesserockz
 | 
			
		||||
esphome/components/esp32_rmt/* @jesserockz
 | 
			
		||||
esphome/components/esp32_rmt_led_strip/* @jesserockz
 | 
			
		||||
@@ -171,7 +167,6 @@ esphome/components/ft5x06/* @clydebarrow
 | 
			
		||||
esphome/components/ft63x6/* @gpambrozio
 | 
			
		||||
esphome/components/gcja5/* @gcormier
 | 
			
		||||
esphome/components/gdk101/* @Szewcson
 | 
			
		||||
esphome/components/gl_r01_i2c/* @pkejval
 | 
			
		||||
esphome/components/globals/* @esphome/core
 | 
			
		||||
esphome/components/gp2y1010au0f/* @zry98
 | 
			
		||||
esphome/components/gp8403/* @jesserockz
 | 
			
		||||
@@ -252,11 +247,9 @@ esphome/components/libretiny_pwm/* @kuba2k2
 | 
			
		||||
esphome/components/light/* @esphome/core
 | 
			
		||||
esphome/components/lightwaverf/* @max246
 | 
			
		||||
esphome/components/lilygo_t5_47/touchscreen/* @jesserockz
 | 
			
		||||
esphome/components/ln882x/* @lamauny
 | 
			
		||||
esphome/components/lock/* @esphome/core
 | 
			
		||||
esphome/components/logger/* @esphome/core
 | 
			
		||||
esphome/components/logger/select/* @clydebarrow
 | 
			
		||||
esphome/components/lps22/* @nagisa
 | 
			
		||||
esphome/components/ltr390/* @latonita @sjtrny
 | 
			
		||||
esphome/components/ltr501/* @latonita
 | 
			
		||||
esphome/components/ltr_als_ps/* @latonita
 | 
			
		||||
@@ -325,7 +318,6 @@ esphome/components/nextion/text_sensor/* @senexcrenshaw
 | 
			
		||||
esphome/components/nfc/* @jesserockz @kbx81
 | 
			
		||||
esphome/components/noblex/* @AGalfra
 | 
			
		||||
esphome/components/npi19/* @bakerkj
 | 
			
		||||
esphome/components/nrf52/* @tomaszduda23
 | 
			
		||||
esphome/components/number/* @esphome/core
 | 
			
		||||
esphome/components/one_wire/* @ssieb
 | 
			
		||||
esphome/components/online_image/* @clydebarrow @guillempages
 | 
			
		||||
@@ -339,7 +331,6 @@ esphome/components/pca6416a/* @Mat931
 | 
			
		||||
esphome/components/pca9554/* @clydebarrow @hwstar
 | 
			
		||||
esphome/components/pcf85063/* @brogon
 | 
			
		||||
esphome/components/pcf8563/* @KoenBreeman
 | 
			
		||||
esphome/components/pi4ioe5v6408/* @jesserockz
 | 
			
		||||
esphome/components/pid/* @OttoWinter
 | 
			
		||||
esphome/components/pipsolar/* @andreashergert1984
 | 
			
		||||
esphome/components/pm1006/* @habbie
 | 
			
		||||
@@ -380,7 +371,6 @@ esphome/components/rp2040_pwm/* @jesserockz
 | 
			
		||||
esphome/components/rpi_dpi_rgb/* @clydebarrow
 | 
			
		||||
esphome/components/rtl87xx/* @kuba2k2
 | 
			
		||||
esphome/components/rtttl/* @glmnet
 | 
			
		||||
esphome/components/runtime_stats/* @bdraco
 | 
			
		||||
esphome/components/safe_mode/* @jsuanet @kbx81 @paulmonigatti
 | 
			
		||||
esphome/components/scd4x/* @martgras @sjtrny
 | 
			
		||||
esphome/components/script/* @esphome/core
 | 
			
		||||
@@ -447,8 +437,6 @@ esphome/components/sun/* @OttoWinter
 | 
			
		||||
esphome/components/sun_gtil2/* @Mat931
 | 
			
		||||
esphome/components/switch/* @esphome/core
 | 
			
		||||
esphome/components/switch/binary_sensor/* @ssieb
 | 
			
		||||
esphome/components/sx126x/* @swoboda1337
 | 
			
		||||
esphome/components/sx127x/* @swoboda1337
 | 
			
		||||
esphome/components/syslog/* @clydebarrow
 | 
			
		||||
esphome/components/t6615/* @tylermenezes
 | 
			
		||||
esphome/components/tc74/* @sethgirvan
 | 
			
		||||
@@ -503,11 +491,10 @@ esphome/components/vbus/* @ssieb
 | 
			
		||||
esphome/components/veml3235/* @kbx81
 | 
			
		||||
esphome/components/veml7700/* @latonita
 | 
			
		||||
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/watchdog/* @oarcher
 | 
			
		||||
esphome/components/waveshare_epaper/* @clydebarrow
 | 
			
		||||
esphome/components/web_server/ota/* @esphome/core
 | 
			
		||||
esphome/components/web_server_base/* @OttoWinter
 | 
			
		||||
esphome/components/web_server_idf/* @dentra
 | 
			
		||||
esphome/components/weikai/* @DrCoolZic
 | 
			
		||||
@@ -538,6 +525,5 @@ esphome/components/xiaomi_xmwsdj04mmc/* @medusalix
 | 
			
		||||
esphome/components/xl9535/* @mreditor97
 | 
			
		||||
esphome/components/xpt2046/touchscreen/* @nielsnl68 @numo68
 | 
			
		||||
esphome/components/xxtea/* @clydebarrow
 | 
			
		||||
esphome/components/zephyr/* @tomaszduda23
 | 
			
		||||
esphome/components/zhlt01/* @cfeenstra1024
 | 
			
		||||
esphome/components/zio_ultrasonic/* @kahrendt
 | 
			
		||||
 
 | 
			
		||||
@@ -7,7 +7,7 @@ project and be sure to join us on [Discord](https://discord.gg/KhAMKrd).
 | 
			
		||||
 | 
			
		||||
**See also:**
 | 
			
		||||
 | 
			
		||||
[Documentation](https://esphome.io) -- [Issues](https://github.com/esphome/esphome/issues) -- [Feature requests](https://github.com/orgs/esphome/discussions)
 | 
			
		||||
[Documentation](https://esphome.io) -- [Issues](https://github.com/esphome/issues/issues) -- [Feature requests](https://github.com/esphome/feature-requests/issues)
 | 
			
		||||
 | 
			
		||||
---
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								Doxyfile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Doxyfile
									
									
									
									
									
								
							@@ -48,7 +48,7 @@ PROJECT_NAME           = ESPHome
 | 
			
		||||
# could be handy for archiving the generated documentation or if some version
 | 
			
		||||
# control system is used.
 | 
			
		||||
 | 
			
		||||
PROJECT_NUMBER         = 2025.8.0-dev
 | 
			
		||||
PROJECT_NUMBER         = 2025.7.0-dev
 | 
			
		||||
 | 
			
		||||
# 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
 | 
			
		||||
 
 | 
			
		||||
@@ -9,7 +9,7 @@
 | 
			
		||||
 | 
			
		||||
---
 | 
			
		||||
 | 
			
		||||
[Documentation](https://esphome.io) -- [Issues](https://github.com/esphome/esphome/issues) -- [Feature requests](https://github.com/orgs/esphome/discussions)
 | 
			
		||||
[Documentation](https://esphome.io) -- [Issues](https://github.com/esphome/issues/issues) -- [Feature requests](https://github.com/esphome/feature-requests/issues)
 | 
			
		||||
 | 
			
		||||
---
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -34,9 +34,11 @@ from esphome.const import (
 | 
			
		||||
    CONF_PORT,
 | 
			
		||||
    CONF_SUBSTITUTIONS,
 | 
			
		||||
    CONF_TOPIC,
 | 
			
		||||
    PLATFORM_BK72XX,
 | 
			
		||||
    PLATFORM_ESP32,
 | 
			
		||||
    PLATFORM_ESP8266,
 | 
			
		||||
    PLATFORM_RP2040,
 | 
			
		||||
    PLATFORM_RTL87XX,
 | 
			
		||||
    SECRETS_FILES,
 | 
			
		||||
)
 | 
			
		||||
from esphome.core import CORE, EsphomeError, coroutine
 | 
			
		||||
@@ -352,7 +354,7 @@ def upload_program(config, args, host):
 | 
			
		||||
        if CORE.target_platform in (PLATFORM_RP2040):
 | 
			
		||||
            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 1  # Unknown target platform
 | 
			
		||||
 
 | 
			
		||||
@@ -4,7 +4,6 @@
 | 
			
		||||
#include "esphome/core/helpers.h"
 | 
			
		||||
#include "esphome/core/log.h"
 | 
			
		||||
#include <cmath>
 | 
			
		||||
#include <numbers>
 | 
			
		||||
 | 
			
		||||
#ifdef USE_ESP8266
 | 
			
		||||
#include <core_esp8266_waveform.h>
 | 
			
		||||
@@ -204,7 +203,7 @@ void AcDimmer::setup() {
 | 
			
		||||
#endif
 | 
			
		||||
}
 | 
			
		||||
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));
 | 
			
		||||
  if (new_value != 0 && this->store_.value == 0)
 | 
			
		||||
    this->store_.init_cycle = this->init_with_half_cycle_;
 | 
			
		||||
 
 | 
			
		||||
@@ -5,21 +5,13 @@ from esphome.components.esp32.const import (
 | 
			
		||||
    VARIANT_ESP32,
 | 
			
		||||
    VARIANT_ESP32C2,
 | 
			
		||||
    VARIANT_ESP32C3,
 | 
			
		||||
    VARIANT_ESP32C5,
 | 
			
		||||
    VARIANT_ESP32C6,
 | 
			
		||||
    VARIANT_ESP32H2,
 | 
			
		||||
    VARIANT_ESP32S2,
 | 
			
		||||
    VARIANT_ESP32S3,
 | 
			
		||||
)
 | 
			
		||||
from esphome.config_helpers import filter_source_files_from_platform
 | 
			
		||||
import esphome.config_validation as cv
 | 
			
		||||
from esphome.const import (
 | 
			
		||||
    CONF_ANALOG,
 | 
			
		||||
    CONF_INPUT,
 | 
			
		||||
    CONF_NUMBER,
 | 
			
		||||
    PLATFORM_ESP8266,
 | 
			
		||||
    PlatformFramework,
 | 
			
		||||
)
 | 
			
		||||
from esphome.const import CONF_ANALOG, CONF_INPUT, CONF_NUMBER, PLATFORM_ESP8266
 | 
			
		||||
from esphome.core import CORE
 | 
			
		||||
 | 
			
		||||
CODEOWNERS = ["@esphome/core"]
 | 
			
		||||
@@ -52,93 +44,82 @@ SAMPLING_MODES = {
 | 
			
		||||
    "max": sampling_mode.MAX,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
adc_unit_t = cg.global_ns.enum("adc_unit_t", is_class=True)
 | 
			
		||||
 | 
			
		||||
adc_channel_t = cg.global_ns.enum("adc_channel_t", is_class=True)
 | 
			
		||||
adc1_channel_t = cg.global_ns.enum("adc1_channel_t")
 | 
			
		||||
adc2_channel_t = cg.global_ns.enum("adc2_channel_t")
 | 
			
		||||
 | 
			
		||||
# pin to adc1 channel mapping
 | 
			
		||||
# https://github.com/espressif/esp-idf/blob/v4.4.8/components/driver/include/driver/adc.h
 | 
			
		||||
ESP32_VARIANT_ADC1_PIN_TO_CHANNEL = {
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32: {
 | 
			
		||||
        36: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        37: adc_channel_t.ADC_CHANNEL_1,
 | 
			
		||||
        38: adc_channel_t.ADC_CHANNEL_2,
 | 
			
		||||
        39: adc_channel_t.ADC_CHANNEL_3,
 | 
			
		||||
        32: adc_channel_t.ADC_CHANNEL_4,
 | 
			
		||||
        33: adc_channel_t.ADC_CHANNEL_5,
 | 
			
		||||
        34: adc_channel_t.ADC_CHANNEL_6,
 | 
			
		||||
        35: adc_channel_t.ADC_CHANNEL_7,
 | 
			
		||||
        36: adc1_channel_t.ADC1_CHANNEL_0,
 | 
			
		||||
        37: adc1_channel_t.ADC1_CHANNEL_1,
 | 
			
		||||
        38: adc1_channel_t.ADC1_CHANNEL_2,
 | 
			
		||||
        39: adc1_channel_t.ADC1_CHANNEL_3,
 | 
			
		||||
        32: adc1_channel_t.ADC1_CHANNEL_4,
 | 
			
		||||
        33: adc1_channel_t.ADC1_CHANNEL_5,
 | 
			
		||||
        34: adc1_channel_t.ADC1_CHANNEL_6,
 | 
			
		||||
        35: adc1_channel_t.ADC1_CHANNEL_7,
 | 
			
		||||
    },
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32c2/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32C2: {
 | 
			
		||||
        0: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        1: adc_channel_t.ADC_CHANNEL_1,
 | 
			
		||||
        2: adc_channel_t.ADC_CHANNEL_2,
 | 
			
		||||
        3: adc_channel_t.ADC_CHANNEL_3,
 | 
			
		||||
        4: adc_channel_t.ADC_CHANNEL_4,
 | 
			
		||||
        0: adc1_channel_t.ADC1_CHANNEL_0,
 | 
			
		||||
        1: adc1_channel_t.ADC1_CHANNEL_1,
 | 
			
		||||
        2: adc1_channel_t.ADC1_CHANNEL_2,
 | 
			
		||||
        3: adc1_channel_t.ADC1_CHANNEL_3,
 | 
			
		||||
        4: adc1_channel_t.ADC1_CHANNEL_4,
 | 
			
		||||
    },
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32c3/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32C3: {
 | 
			
		||||
        0: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        1: adc_channel_t.ADC_CHANNEL_1,
 | 
			
		||||
        2: adc_channel_t.ADC_CHANNEL_2,
 | 
			
		||||
        3: adc_channel_t.ADC_CHANNEL_3,
 | 
			
		||||
        4: adc_channel_t.ADC_CHANNEL_4,
 | 
			
		||||
    },
 | 
			
		||||
    # ESP32-C5 ADC1 pin mapping - based on official ESP-IDF documentation
 | 
			
		||||
    # https://docs.espressif.com/projects/esp-idf/en/latest/esp32c5/api-reference/peripherals/gpio.html
 | 
			
		||||
    VARIANT_ESP32C5: {
 | 
			
		||||
        1: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        2: adc_channel_t.ADC_CHANNEL_1,
 | 
			
		||||
        3: adc_channel_t.ADC_CHANNEL_2,
 | 
			
		||||
        4: adc_channel_t.ADC_CHANNEL_3,
 | 
			
		||||
        5: adc_channel_t.ADC_CHANNEL_4,
 | 
			
		||||
        6: adc_channel_t.ADC_CHANNEL_5,
 | 
			
		||||
        0: adc1_channel_t.ADC1_CHANNEL_0,
 | 
			
		||||
        1: adc1_channel_t.ADC1_CHANNEL_1,
 | 
			
		||||
        2: adc1_channel_t.ADC1_CHANNEL_2,
 | 
			
		||||
        3: adc1_channel_t.ADC1_CHANNEL_3,
 | 
			
		||||
        4: adc1_channel_t.ADC1_CHANNEL_4,
 | 
			
		||||
    },
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32c6/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32C6: {
 | 
			
		||||
        0: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        1: adc_channel_t.ADC_CHANNEL_1,
 | 
			
		||||
        2: adc_channel_t.ADC_CHANNEL_2,
 | 
			
		||||
        3: adc_channel_t.ADC_CHANNEL_3,
 | 
			
		||||
        4: adc_channel_t.ADC_CHANNEL_4,
 | 
			
		||||
        5: adc_channel_t.ADC_CHANNEL_5,
 | 
			
		||||
        6: adc_channel_t.ADC_CHANNEL_6,
 | 
			
		||||
        0: adc1_channel_t.ADC1_CHANNEL_0,
 | 
			
		||||
        1: adc1_channel_t.ADC1_CHANNEL_1,
 | 
			
		||||
        2: adc1_channel_t.ADC1_CHANNEL_2,
 | 
			
		||||
        3: adc1_channel_t.ADC1_CHANNEL_3,
 | 
			
		||||
        4: adc1_channel_t.ADC1_CHANNEL_4,
 | 
			
		||||
        5: adc1_channel_t.ADC1_CHANNEL_5,
 | 
			
		||||
        6: adc1_channel_t.ADC1_CHANNEL_6,
 | 
			
		||||
    },
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32h2/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32H2: {
 | 
			
		||||
        1: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        2: adc_channel_t.ADC_CHANNEL_1,
 | 
			
		||||
        3: adc_channel_t.ADC_CHANNEL_2,
 | 
			
		||||
        4: adc_channel_t.ADC_CHANNEL_3,
 | 
			
		||||
        5: adc_channel_t.ADC_CHANNEL_4,
 | 
			
		||||
        1: adc1_channel_t.ADC1_CHANNEL_0,
 | 
			
		||||
        2: adc1_channel_t.ADC1_CHANNEL_1,
 | 
			
		||||
        3: adc1_channel_t.ADC1_CHANNEL_2,
 | 
			
		||||
        4: adc1_channel_t.ADC1_CHANNEL_3,
 | 
			
		||||
        5: adc1_channel_t.ADC1_CHANNEL_4,
 | 
			
		||||
    },
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32s2/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32S2: {
 | 
			
		||||
        1: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        2: adc_channel_t.ADC_CHANNEL_1,
 | 
			
		||||
        3: adc_channel_t.ADC_CHANNEL_2,
 | 
			
		||||
        4: adc_channel_t.ADC_CHANNEL_3,
 | 
			
		||||
        5: adc_channel_t.ADC_CHANNEL_4,
 | 
			
		||||
        6: adc_channel_t.ADC_CHANNEL_5,
 | 
			
		||||
        7: adc_channel_t.ADC_CHANNEL_6,
 | 
			
		||||
        8: adc_channel_t.ADC_CHANNEL_7,
 | 
			
		||||
        9: adc_channel_t.ADC_CHANNEL_8,
 | 
			
		||||
        10: adc_channel_t.ADC_CHANNEL_9,
 | 
			
		||||
        1: adc1_channel_t.ADC1_CHANNEL_0,
 | 
			
		||||
        2: adc1_channel_t.ADC1_CHANNEL_1,
 | 
			
		||||
        3: adc1_channel_t.ADC1_CHANNEL_2,
 | 
			
		||||
        4: adc1_channel_t.ADC1_CHANNEL_3,
 | 
			
		||||
        5: adc1_channel_t.ADC1_CHANNEL_4,
 | 
			
		||||
        6: adc1_channel_t.ADC1_CHANNEL_5,
 | 
			
		||||
        7: adc1_channel_t.ADC1_CHANNEL_6,
 | 
			
		||||
        8: adc1_channel_t.ADC1_CHANNEL_7,
 | 
			
		||||
        9: adc1_channel_t.ADC1_CHANNEL_8,
 | 
			
		||||
        10: adc1_channel_t.ADC1_CHANNEL_9,
 | 
			
		||||
    },
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32s3/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32S3: {
 | 
			
		||||
        1: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        2: adc_channel_t.ADC_CHANNEL_1,
 | 
			
		||||
        3: adc_channel_t.ADC_CHANNEL_2,
 | 
			
		||||
        4: adc_channel_t.ADC_CHANNEL_3,
 | 
			
		||||
        5: adc_channel_t.ADC_CHANNEL_4,
 | 
			
		||||
        6: adc_channel_t.ADC_CHANNEL_5,
 | 
			
		||||
        7: adc_channel_t.ADC_CHANNEL_6,
 | 
			
		||||
        8: adc_channel_t.ADC_CHANNEL_7,
 | 
			
		||||
        9: adc_channel_t.ADC_CHANNEL_8,
 | 
			
		||||
        10: adc_channel_t.ADC_CHANNEL_9,
 | 
			
		||||
        1: adc1_channel_t.ADC1_CHANNEL_0,
 | 
			
		||||
        2: adc1_channel_t.ADC1_CHANNEL_1,
 | 
			
		||||
        3: adc1_channel_t.ADC1_CHANNEL_2,
 | 
			
		||||
        4: adc1_channel_t.ADC1_CHANNEL_3,
 | 
			
		||||
        5: adc1_channel_t.ADC1_CHANNEL_4,
 | 
			
		||||
        6: adc1_channel_t.ADC1_CHANNEL_5,
 | 
			
		||||
        7: adc1_channel_t.ADC1_CHANNEL_6,
 | 
			
		||||
        8: adc1_channel_t.ADC1_CHANNEL_7,
 | 
			
		||||
        9: adc1_channel_t.ADC1_CHANNEL_8,
 | 
			
		||||
        10: adc1_channel_t.ADC1_CHANNEL_9,
 | 
			
		||||
    },
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -147,56 +128,54 @@ ESP32_VARIANT_ADC1_PIN_TO_CHANNEL = {
 | 
			
		||||
ESP32_VARIANT_ADC2_PIN_TO_CHANNEL = {
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32: {
 | 
			
		||||
        4: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        0: adc_channel_t.ADC_CHANNEL_1,
 | 
			
		||||
        2: adc_channel_t.ADC_CHANNEL_2,
 | 
			
		||||
        15: adc_channel_t.ADC_CHANNEL_3,
 | 
			
		||||
        13: adc_channel_t.ADC_CHANNEL_4,
 | 
			
		||||
        12: adc_channel_t.ADC_CHANNEL_5,
 | 
			
		||||
        14: adc_channel_t.ADC_CHANNEL_6,
 | 
			
		||||
        27: adc_channel_t.ADC_CHANNEL_7,
 | 
			
		||||
        25: adc_channel_t.ADC_CHANNEL_8,
 | 
			
		||||
        26: adc_channel_t.ADC_CHANNEL_9,
 | 
			
		||||
        4: adc2_channel_t.ADC2_CHANNEL_0,
 | 
			
		||||
        0: adc2_channel_t.ADC2_CHANNEL_1,
 | 
			
		||||
        2: adc2_channel_t.ADC2_CHANNEL_2,
 | 
			
		||||
        15: adc2_channel_t.ADC2_CHANNEL_3,
 | 
			
		||||
        13: adc2_channel_t.ADC2_CHANNEL_4,
 | 
			
		||||
        12: adc2_channel_t.ADC2_CHANNEL_5,
 | 
			
		||||
        14: adc2_channel_t.ADC2_CHANNEL_6,
 | 
			
		||||
        27: adc2_channel_t.ADC2_CHANNEL_7,
 | 
			
		||||
        25: adc2_channel_t.ADC2_CHANNEL_8,
 | 
			
		||||
        26: adc2_channel_t.ADC2_CHANNEL_9,
 | 
			
		||||
    },
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32c2/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32C2: {
 | 
			
		||||
        5: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        5: adc2_channel_t.ADC2_CHANNEL_0,
 | 
			
		||||
    },
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32c3/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32C3: {
 | 
			
		||||
        5: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        5: adc2_channel_t.ADC2_CHANNEL_0,
 | 
			
		||||
    },
 | 
			
		||||
    # ESP32-C5 has no ADC2 channels
 | 
			
		||||
    VARIANT_ESP32C5: {},  # no ADC2
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32c6/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32C6: {},  # no ADC2
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32h2/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32H2: {},  # no ADC2
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32s2/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32S2: {
 | 
			
		||||
        11: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        12: adc_channel_t.ADC_CHANNEL_1,
 | 
			
		||||
        13: adc_channel_t.ADC_CHANNEL_2,
 | 
			
		||||
        14: adc_channel_t.ADC_CHANNEL_3,
 | 
			
		||||
        15: adc_channel_t.ADC_CHANNEL_4,
 | 
			
		||||
        16: adc_channel_t.ADC_CHANNEL_5,
 | 
			
		||||
        17: adc_channel_t.ADC_CHANNEL_6,
 | 
			
		||||
        18: adc_channel_t.ADC_CHANNEL_7,
 | 
			
		||||
        19: adc_channel_t.ADC_CHANNEL_8,
 | 
			
		||||
        20: adc_channel_t.ADC_CHANNEL_9,
 | 
			
		||||
        11: adc2_channel_t.ADC2_CHANNEL_0,
 | 
			
		||||
        12: adc2_channel_t.ADC2_CHANNEL_1,
 | 
			
		||||
        13: adc2_channel_t.ADC2_CHANNEL_2,
 | 
			
		||||
        14: adc2_channel_t.ADC2_CHANNEL_3,
 | 
			
		||||
        15: adc2_channel_t.ADC2_CHANNEL_4,
 | 
			
		||||
        16: adc2_channel_t.ADC2_CHANNEL_5,
 | 
			
		||||
        17: adc2_channel_t.ADC2_CHANNEL_6,
 | 
			
		||||
        18: adc2_channel_t.ADC2_CHANNEL_7,
 | 
			
		||||
        19: adc2_channel_t.ADC2_CHANNEL_8,
 | 
			
		||||
        20: adc2_channel_t.ADC2_CHANNEL_9,
 | 
			
		||||
    },
 | 
			
		||||
    # https://github.com/espressif/esp-idf/blob/master/components/soc/esp32s3/include/soc/adc_channel.h
 | 
			
		||||
    VARIANT_ESP32S3: {
 | 
			
		||||
        11: adc_channel_t.ADC_CHANNEL_0,
 | 
			
		||||
        12: adc_channel_t.ADC_CHANNEL_1,
 | 
			
		||||
        13: adc_channel_t.ADC_CHANNEL_2,
 | 
			
		||||
        14: adc_channel_t.ADC_CHANNEL_3,
 | 
			
		||||
        15: adc_channel_t.ADC_CHANNEL_4,
 | 
			
		||||
        16: adc_channel_t.ADC_CHANNEL_5,
 | 
			
		||||
        17: adc_channel_t.ADC_CHANNEL_6,
 | 
			
		||||
        18: adc_channel_t.ADC_CHANNEL_7,
 | 
			
		||||
        19: adc_channel_t.ADC_CHANNEL_8,
 | 
			
		||||
        20: adc_channel_t.ADC_CHANNEL_9,
 | 
			
		||||
        11: adc2_channel_t.ADC2_CHANNEL_0,
 | 
			
		||||
        12: adc2_channel_t.ADC2_CHANNEL_1,
 | 
			
		||||
        13: adc2_channel_t.ADC2_CHANNEL_2,
 | 
			
		||||
        14: adc2_channel_t.ADC2_CHANNEL_3,
 | 
			
		||||
        15: adc2_channel_t.ADC2_CHANNEL_4,
 | 
			
		||||
        16: adc2_channel_t.ADC2_CHANNEL_5,
 | 
			
		||||
        17: adc2_channel_t.ADC2_CHANNEL_6,
 | 
			
		||||
        18: adc2_channel_t.ADC2_CHANNEL_7,
 | 
			
		||||
        19: adc2_channel_t.ADC2_CHANNEL_8,
 | 
			
		||||
        20: adc2_channel_t.ADC2_CHANNEL_9,
 | 
			
		||||
    },
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -250,20 +229,3 @@ def validate_adc_pin(value):
 | 
			
		||||
        )(value)
 | 
			
		||||
 | 
			
		||||
    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,
 | 
			
		||||
        },
 | 
			
		||||
    }
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
@@ -3,14 +3,11 @@
 | 
			
		||||
#include "esphome/components/sensor/sensor.h"
 | 
			
		||||
#include "esphome/components/voltage_sampler/voltage_sampler.h"
 | 
			
		||||
#include "esphome/core/component.h"
 | 
			
		||||
#include "esphome/core/defines.h"
 | 
			
		||||
#include "esphome/core/hal.h"
 | 
			
		||||
 | 
			
		||||
#ifdef USE_ESP32
 | 
			
		||||
#include "esp_adc/adc_cali.h"
 | 
			
		||||
#include "esp_adc/adc_cali_scheme.h"
 | 
			
		||||
#include "esp_adc/adc_oneshot.h"
 | 
			
		||||
#include "hal/adc_types.h"  // This defines ADC_CHANNEL_MAX
 | 
			
		||||
#include <esp_adc_cal.h>
 | 
			
		||||
#include "driver/adc.h"
 | 
			
		||||
#endif  // USE_ESP32
 | 
			
		||||
 | 
			
		||||
namespace esphome {
 | 
			
		||||
@@ -18,7 +15,8 @@ namespace adc {
 | 
			
		||||
 | 
			
		||||
#ifdef USE_ESP32
 | 
			
		||||
// 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 == 1 && ESP_IDF_VERSION_PATCH >= 3) || \
 | 
			
		||||
      (ESP_IDF_VERSION_MINOR >= 2)) \
 | 
			
		||||
@@ -30,127 +28,79 @@ static const adc_atten_t ADC_ATTEN_DB_12_COMPAT = ADC_ATTEN_DB_11;
 | 
			
		||||
#endif
 | 
			
		||||
#endif  // USE_ESP32
 | 
			
		||||
 | 
			
		||||
enum class SamplingMode : uint8_t {
 | 
			
		||||
  AVG = 0,
 | 
			
		||||
  MIN = 1,
 | 
			
		||||
  MAX = 2,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
enum class SamplingMode : uint8_t { AVG = 0, MIN = 1, MAX = 2 };
 | 
			
		||||
const LogString *sampling_mode_to_str(SamplingMode mode);
 | 
			
		||||
 | 
			
		||||
class Aggregator {
 | 
			
		||||
 public:
 | 
			
		||||
  Aggregator(SamplingMode mode);
 | 
			
		||||
  void add_sample(uint32_t value);
 | 
			
		||||
  uint32_t aggregate();
 | 
			
		||||
  Aggregator(SamplingMode mode);
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  SamplingMode mode_{SamplingMode::AVG};
 | 
			
		||||
  uint32_t aggr_{0};
 | 
			
		||||
  uint32_t samples_{0};
 | 
			
		||||
  SamplingMode mode_{SamplingMode::AVG};
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
class ADCSensor : public sensor::Sensor, public PollingComponent, public voltage_sampler::VoltageSampler {
 | 
			
		||||
 public:
 | 
			
		||||
  /// Update the sensor's state by reading the current ADC value.
 | 
			
		||||
  /// This method is called periodically based on the update interval.
 | 
			
		||||
  void update() override;
 | 
			
		||||
 | 
			
		||||
  /// Set up the ADC sensor by initializing hardware and calibration parameters.
 | 
			
		||||
  /// This method is called once during device initialization.
 | 
			
		||||
  void setup() override;
 | 
			
		||||
 | 
			
		||||
  /// Output the configuration details of the ADC sensor for debugging purposes.
 | 
			
		||||
  /// This method is called during the ESPHome setup process to log the configuration.
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
 | 
			
		||||
  /// Return the setup priority for this component.
 | 
			
		||||
  /// Components with higher priority are initialized earlier during setup.
 | 
			
		||||
  /// @return A float representing the setup priority.
 | 
			
		||||
  float get_setup_priority() const override;
 | 
			
		||||
 | 
			
		||||
  /// Set the GPIO pin to be used by the ADC sensor.
 | 
			
		||||
  /// @param pin Pointer to an InternalGPIOPin representing the ADC input pin.
 | 
			
		||||
  void set_pin(InternalGPIOPin *pin) { this->pin_ = pin; }
 | 
			
		||||
 | 
			
		||||
  /// Enable or disable the output of raw ADC values (unprocessed data).
 | 
			
		||||
  /// @param output_raw Boolean indicating whether to output raw ADC values (true) or processed values (false).
 | 
			
		||||
  void set_output_raw(bool output_raw) { this->output_raw_ = output_raw; }
 | 
			
		||||
 | 
			
		||||
  /// Set the number of samples to be taken for ADC readings to improve accuracy.
 | 
			
		||||
  /// A higher sample count reduces noise but increases the reading time.
 | 
			
		||||
  /// @param sample_count The number of samples (e.g., 1, 4, 8).
 | 
			
		||||
  void set_sample_count(uint8_t sample_count);
 | 
			
		||||
 | 
			
		||||
  /// Set the sampling mode for how multiple ADC samples are combined into a single measurement.
 | 
			
		||||
  ///
 | 
			
		||||
  /// When multiple samples are taken (controlled by set_sample_count), they can be combined
 | 
			
		||||
  /// in one of three ways:
 | 
			
		||||
  ///   - SamplingMode::AVG: Compute the average (default)
 | 
			
		||||
  ///   - SamplingMode::MIN: Use the lowest sample value
 | 
			
		||||
  ///   - SamplingMode::MAX: Use the highest sample value
 | 
			
		||||
  /// @param sampling_mode The desired sampling mode to use for aggregating ADC samples.
 | 
			
		||||
  void set_sampling_mode(SamplingMode sampling_mode);
 | 
			
		||||
 | 
			
		||||
  /// Perform a single ADC sampling operation and return the measured value.
 | 
			
		||||
  /// This function handles raw readings, calibration, and averaging as needed.
 | 
			
		||||
  /// @return The sampled value as a float.
 | 
			
		||||
  float sample() override;
 | 
			
		||||
 | 
			
		||||
#ifdef USE_ESP32
 | 
			
		||||
  /// Set the ADC attenuation level to adjust the input voltage range.
 | 
			
		||||
  /// This determines how the ADC interprets input voltages, allowing for greater precision
 | 
			
		||||
  /// or the ability to measure higher voltages depending on the chosen attenuation level.
 | 
			
		||||
  /// @param attenuation The desired ADC attenuation level (e.g., ADC_ATTEN_DB_0, ADC_ATTEN_DB_11).
 | 
			
		||||
  /// Set the attenuation for this pin. Only available on the ESP32.
 | 
			
		||||
  void set_attenuation(adc_atten_t attenuation) { this->attenuation_ = attenuation; }
 | 
			
		||||
 | 
			
		||||
  /// Configure the ADC to use a specific channel on a specific ADC unit.
 | 
			
		||||
  /// This sets the channel for single-shot or continuous ADC measurements.
 | 
			
		||||
  /// @param unit The ADC unit to use (ADC_UNIT_1 or ADC_UNIT_2).
 | 
			
		||||
  /// @param channel The ADC channel to configure, such as ADC_CHANNEL_0, ADC_CHANNEL_3, etc.
 | 
			
		||||
  void set_channel(adc_unit_t unit, adc_channel_t channel) {
 | 
			
		||||
    this->adc_unit_ = unit;
 | 
			
		||||
    this->channel_ = channel;
 | 
			
		||||
  void set_channel1(adc1_channel_t channel) {
 | 
			
		||||
    this->channel1_ = channel;
 | 
			
		||||
    this->channel2_ = ADC2_CHANNEL_MAX;
 | 
			
		||||
  }
 | 
			
		||||
  void set_channel2(adc2_channel_t channel) {
 | 
			
		||||
    this->channel2_ = channel;
 | 
			
		||||
    this->channel1_ = ADC1_CHANNEL_MAX;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  /// Set whether autoranging should be enabled for the ADC.
 | 
			
		||||
  /// Autoranging automatically adjusts the attenuation level to handle a wide range of input voltages.
 | 
			
		||||
  /// @param autorange Boolean indicating whether to enable autoranging.
 | 
			
		||||
  void set_autorange(bool autorange) { this->autorange_ = autorange; }
 | 
			
		||||
#endif  // USE_ESP32
 | 
			
		||||
 | 
			
		||||
  /// Update ADC values
 | 
			
		||||
  void update() override;
 | 
			
		||||
  /// Setup ADC
 | 
			
		||||
  void setup() override;
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  /// `HARDWARE_LATE` setup priority
 | 
			
		||||
  float get_setup_priority() const override;
 | 
			
		||||
  void set_pin(InternalGPIOPin *pin) { this->pin_ = pin; }
 | 
			
		||||
  void set_output_raw(bool output_raw) { this->output_raw_ = output_raw; }
 | 
			
		||||
  void set_sample_count(uint8_t sample_count);
 | 
			
		||||
  void set_sampling_mode(SamplingMode sampling_mode);
 | 
			
		||||
  float sample() override;
 | 
			
		||||
 | 
			
		||||
#ifdef USE_ESP8266
 | 
			
		||||
  std::string unique_id() override;
 | 
			
		||||
#endif  // USE_ESP8266
 | 
			
		||||
 | 
			
		||||
#ifdef USE_RP2040
 | 
			
		||||
  void set_is_temperature() { this->is_temperature_ = true; }
 | 
			
		||||
#endif  // USE_RP2040
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  uint8_t sample_count_{1};
 | 
			
		||||
  bool output_raw_{false};
 | 
			
		||||
  InternalGPIOPin *pin_;
 | 
			
		||||
  bool output_raw_{false};
 | 
			
		||||
  uint8_t sample_count_{1};
 | 
			
		||||
  SamplingMode sampling_mode_{SamplingMode::AVG};
 | 
			
		||||
 | 
			
		||||
#ifdef USE_ESP32
 | 
			
		||||
  float sample_autorange_();
 | 
			
		||||
  float sample_fixed_attenuation_();
 | 
			
		||||
  bool autorange_{false};
 | 
			
		||||
  adc_oneshot_unit_handle_t adc_handle_{nullptr};
 | 
			
		||||
  adc_cali_handle_t calibration_handle_{nullptr};
 | 
			
		||||
  adc_atten_t attenuation_{ADC_ATTEN_DB_0};
 | 
			
		||||
  adc_channel_t channel_;
 | 
			
		||||
  adc_unit_t adc_unit_;
 | 
			
		||||
  struct SetupFlags {
 | 
			
		||||
    uint8_t init_complete : 1;
 | 
			
		||||
    uint8_t config_complete : 1;
 | 
			
		||||
    uint8_t handle_init_complete : 1;
 | 
			
		||||
    uint8_t calibration_complete : 1;
 | 
			
		||||
    uint8_t reserved : 4;
 | 
			
		||||
  } setup_flags_{};
 | 
			
		||||
  static adc_oneshot_unit_handle_t shared_adc_handles[2];
 | 
			
		||||
#endif  // USE_ESP32
 | 
			
		||||
 | 
			
		||||
#ifdef USE_RP2040
 | 
			
		||||
  bool is_temperature_{false};
 | 
			
		||||
#endif  // USE_RP2040
 | 
			
		||||
 | 
			
		||||
#ifdef USE_ESP32
 | 
			
		||||
  adc_atten_t attenuation_{ADC_ATTEN_DB_0};
 | 
			
		||||
  adc1_channel_t channel1_{ADC1_CHANNEL_MAX};
 | 
			
		||||
  adc2_channel_t channel2_{ADC2_CHANNEL_MAX};
 | 
			
		||||
  bool autorange_{false};
 | 
			
		||||
#if ESP_IDF_VERSION_MAJOR >= 5
 | 
			
		||||
  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
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
}  // namespace adc
 | 
			
		||||
 
 | 
			
		||||
@@ -61,7 +61,7 @@ uint32_t Aggregator::aggregate() {
 | 
			
		||||
 | 
			
		||||
void ADCSensor::update() {
 | 
			
		||||
  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);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -8,315 +8,137 @@ namespace adc {
 | 
			
		||||
 | 
			
		||||
static const char *const TAG = "adc.esp32";
 | 
			
		||||
 | 
			
		||||
adc_oneshot_unit_handle_t ADCSensor::shared_adc_handles[2] = {nullptr, nullptr};
 | 
			
		||||
static const adc_bits_width_t ADC_WIDTH_MAX_SOC_BITS = static_cast<adc_bits_width_t>(ADC_WIDTH_MAX - 1);
 | 
			
		||||
 | 
			
		||||
const LogString *attenuation_to_str(adc_atten_t attenuation) {
 | 
			
		||||
  switch (attenuation) {
 | 
			
		||||
    case ADC_ATTEN_DB_0:
 | 
			
		||||
      return LOG_STR("0 dB");
 | 
			
		||||
    case ADC_ATTEN_DB_2_5:
 | 
			
		||||
      return LOG_STR("2.5 dB");
 | 
			
		||||
    case ADC_ATTEN_DB_6:
 | 
			
		||||
      return LOG_STR("6 dB");
 | 
			
		||||
    case ADC_ATTEN_DB_12_COMPAT:
 | 
			
		||||
      return LOG_STR("12 dB");
 | 
			
		||||
    default:
 | 
			
		||||
      return LOG_STR("Unknown Attenuation");
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
#ifndef SOC_ADC_RTC_MAX_BITWIDTH
 | 
			
		||||
#if USE_ESP32_VARIANT_ESP32S2
 | 
			
		||||
static const int32_t SOC_ADC_RTC_MAX_BITWIDTH = 13;
 | 
			
		||||
#else
 | 
			
		||||
static const int32_t SOC_ADC_RTC_MAX_BITWIDTH = 12;
 | 
			
		||||
#endif  // USE_ESP32_VARIANT_ESP32S2
 | 
			
		||||
#endif  // SOC_ADC_RTC_MAX_BITWIDTH
 | 
			
		||||
 | 
			
		||||
const LogString *adc_unit_to_str(adc_unit_t unit) {
 | 
			
		||||
  switch (unit) {
 | 
			
		||||
    case ADC_UNIT_1:
 | 
			
		||||
      return LOG_STR("ADC1");
 | 
			
		||||
    case ADC_UNIT_2:
 | 
			
		||||
      return LOG_STR("ADC2");
 | 
			
		||||
    default:
 | 
			
		||||
      return LOG_STR("Unknown ADC Unit");
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
static const int ADC_MAX = (1 << SOC_ADC_RTC_MAX_BITWIDTH) - 1;
 | 
			
		||||
static const int ADC_HALF = (1 << SOC_ADC_RTC_MAX_BITWIDTH) >> 1;
 | 
			
		||||
 | 
			
		||||
void ADCSensor::setup() {
 | 
			
		||||
  ESP_LOGCONFIG(TAG, "Running setup for '%s'", this->get_name().c_str());
 | 
			
		||||
  // Check if another sensor already initialized this ADC unit
 | 
			
		||||
  if (ADCSensor::shared_adc_handles[this->adc_unit_] == nullptr) {
 | 
			
		||||
    adc_oneshot_unit_init_cfg_t init_config = {};  // Zero initialize
 | 
			
		||||
    init_config.unit_id = this->adc_unit_;
 | 
			
		||||
    init_config.ulp_mode = ADC_ULP_MODE_DISABLE;
 | 
			
		||||
#if USE_ESP32_VARIANT_ESP32C3 || USE_ESP32_VARIANT_ESP32C5 || USE_ESP32_VARIANT_ESP32C6 || USE_ESP32_VARIANT_ESP32H2
 | 
			
		||||
    init_config.clk_src = ADC_DIGI_CLK_SRC_DEFAULT;
 | 
			
		||||
#endif  // USE_ESP32_VARIANT_ESP32C3 || USE_ESP32_VARIANT_ESP32C5 || USE_ESP32_VARIANT_ESP32C6 ||
 | 
			
		||||
        // USE_ESP32_VARIANT_ESP32H2
 | 
			
		||||
    esp_err_t err = adc_oneshot_new_unit(&init_config, &ADCSensor::shared_adc_handles[this->adc_unit_]);
 | 
			
		||||
    if (err != ESP_OK) {
 | 
			
		||||
      ESP_LOGE(TAG, "Error initializing %s: %d", LOG_STR_ARG(adc_unit_to_str(this->adc_unit_)), err);
 | 
			
		||||
      this->mark_failed();
 | 
			
		||||
      return;
 | 
			
		||||
 | 
			
		||||
  if (this->channel1_ != ADC1_CHANNEL_MAX) {
 | 
			
		||||
    adc1_config_width(ADC_WIDTH_MAX_SOC_BITS);
 | 
			
		||||
    if (!this->autorange_) {
 | 
			
		||||
      adc1_config_channel_atten(this->channel1_, this->attenuation_);
 | 
			
		||||
    }
 | 
			
		||||
  } else if (this->channel2_ != ADC2_CHANNEL_MAX) {
 | 
			
		||||
    if (!this->autorange_) {
 | 
			
		||||
      adc2_config_channel_atten(this->channel2_, this->attenuation_);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  this->adc_handle_ = ADCSensor::shared_adc_handles[this->adc_unit_];
 | 
			
		||||
 | 
			
		||||
  this->setup_flags_.handle_init_complete = true;
 | 
			
		||||
 | 
			
		||||
  adc_oneshot_chan_cfg_t config = {
 | 
			
		||||
      .atten = this->attenuation_,
 | 
			
		||||
      .bitwidth = ADC_BITWIDTH_DEFAULT,
 | 
			
		||||
  };
 | 
			
		||||
  esp_err_t err = adc_oneshot_config_channel(this->adc_handle_, this->channel_, &config);
 | 
			
		||||
  if (err != ESP_OK) {
 | 
			
		||||
    ESP_LOGE(TAG, "Error configuring channel: %d", err);
 | 
			
		||||
    this->mark_failed();
 | 
			
		||||
    return;
 | 
			
		||||
  for (int32_t i = 0; i <= ADC_ATTEN_DB_12_COMPAT; i++) {
 | 
			
		||||
    auto adc_unit = this->channel1_ != ADC1_CHANNEL_MAX ? ADC_UNIT_1 : ADC_UNIT_2;
 | 
			
		||||
    auto cal_value = esp_adc_cal_characterize(adc_unit, (adc_atten_t) i, ADC_WIDTH_MAX_SOC_BITS,
 | 
			
		||||
                                              1100,  // default vref
 | 
			
		||||
                                              &this->cal_characteristics_[i]);
 | 
			
		||||
    switch (cal_value) {
 | 
			
		||||
      case ESP_ADC_CAL_VAL_EFUSE_VREF:
 | 
			
		||||
        ESP_LOGV(TAG, "Using eFuse Vref for calibration");
 | 
			
		||||
        break;
 | 
			
		||||
      case ESP_ADC_CAL_VAL_EFUSE_TP:
 | 
			
		||||
        ESP_LOGV(TAG, "Using two-point eFuse Vref for calibration");
 | 
			
		||||
        break;
 | 
			
		||||
      case ESP_ADC_CAL_VAL_DEFAULT_VREF:
 | 
			
		||||
      default:
 | 
			
		||||
        break;
 | 
			
		||||
    }
 | 
			
		||||
  this->setup_flags_.config_complete = true;
 | 
			
		||||
 | 
			
		||||
  // Initialize ADC calibration
 | 
			
		||||
  if (this->calibration_handle_ == nullptr) {
 | 
			
		||||
    adc_cali_handle_t handle = nullptr;
 | 
			
		||||
    esp_err_t err;
 | 
			
		||||
 | 
			
		||||
#if USE_ESP32_VARIANT_ESP32C3 || USE_ESP32_VARIANT_ESP32C5 || USE_ESP32_VARIANT_ESP32C6 || \
 | 
			
		||||
    USE_ESP32_VARIANT_ESP32S3 || USE_ESP32_VARIANT_ESP32H2
 | 
			
		||||
    // RISC-V variants and S3 use curve fitting calibration
 | 
			
		||||
    adc_cali_curve_fitting_config_t cali_config = {};  // Zero initialize first
 | 
			
		||||
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 3, 0)
 | 
			
		||||
    cali_config.chan = this->channel_;
 | 
			
		||||
#endif  // ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 3, 0)
 | 
			
		||||
    cali_config.unit_id = this->adc_unit_;
 | 
			
		||||
    cali_config.atten = this->attenuation_;
 | 
			
		||||
    cali_config.bitwidth = ADC_BITWIDTH_DEFAULT;
 | 
			
		||||
 | 
			
		||||
    err = adc_cali_create_scheme_curve_fitting(&cali_config, &handle);
 | 
			
		||||
    if (err == ESP_OK) {
 | 
			
		||||
      this->calibration_handle_ = handle;
 | 
			
		||||
      this->setup_flags_.calibration_complete = true;
 | 
			
		||||
      ESP_LOGV(TAG, "Using curve fitting calibration");
 | 
			
		||||
    } else {
 | 
			
		||||
      ESP_LOGW(TAG, "Curve fitting calibration failed with error %d, will use uncalibrated readings", err);
 | 
			
		||||
      this->setup_flags_.calibration_complete = false;
 | 
			
		||||
  }
 | 
			
		||||
#else  // Other ESP32 variants use line fitting calibration
 | 
			
		||||
    adc_cali_line_fitting_config_t cali_config = {
 | 
			
		||||
      .unit_id = this->adc_unit_,
 | 
			
		||||
      .atten = this->attenuation_,
 | 
			
		||||
      .bitwidth = ADC_BITWIDTH_DEFAULT,
 | 
			
		||||
#if !defined(USE_ESP32_VARIANT_ESP32S2)
 | 
			
		||||
      .default_vref = 1100,  // Default reference voltage in mV
 | 
			
		||||
#endif  // !defined(USE_ESP32_VARIANT_ESP32S2)
 | 
			
		||||
    };
 | 
			
		||||
    err = adc_cali_create_scheme_line_fitting(&cali_config, &handle);
 | 
			
		||||
    if (err == ESP_OK) {
 | 
			
		||||
      this->calibration_handle_ = handle;
 | 
			
		||||
      this->setup_flags_.calibration_complete = true;
 | 
			
		||||
      ESP_LOGV(TAG, "Using line fitting calibration");
 | 
			
		||||
    } else {
 | 
			
		||||
      ESP_LOGW(TAG, "Line fitting calibration failed with error %d, will use uncalibrated readings", err);
 | 
			
		||||
      this->setup_flags_.calibration_complete = false;
 | 
			
		||||
    }
 | 
			
		||||
#endif  // USE_ESP32_VARIANT_ESP32C3 || ESP32C5 || ESP32C6 || ESP32S3 || ESP32H2
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  this->setup_flags_.init_complete = true;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void ADCSensor::dump_config() {
 | 
			
		||||
  LOG_SENSOR("", "ADC Sensor", this);
 | 
			
		||||
  LOG_PIN("  Pin: ", this->pin_);
 | 
			
		||||
  if (this->autorange_) {
 | 
			
		||||
    ESP_LOGCONFIG(TAG, "  Attenuation: auto");
 | 
			
		||||
  } else {
 | 
			
		||||
    switch (this->attenuation_) {
 | 
			
		||||
      case ADC_ATTEN_DB_0:
 | 
			
		||||
        ESP_LOGCONFIG(TAG, "  Attenuation: 0db");
 | 
			
		||||
        break;
 | 
			
		||||
      case ADC_ATTEN_DB_2_5:
 | 
			
		||||
        ESP_LOGCONFIG(TAG, "  Attenuation: 2.5db");
 | 
			
		||||
        break;
 | 
			
		||||
      case ADC_ATTEN_DB_6:
 | 
			
		||||
        ESP_LOGCONFIG(TAG, "  Attenuation: 6db");
 | 
			
		||||
        break;
 | 
			
		||||
      case ADC_ATTEN_DB_12_COMPAT:
 | 
			
		||||
        ESP_LOGCONFIG(TAG, "  Attenuation: 12db");
 | 
			
		||||
        break;
 | 
			
		||||
      default:  // This is to satisfy the unused ADC_ATTEN_MAX
 | 
			
		||||
        break;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  ESP_LOGCONFIG(TAG,
 | 
			
		||||
                "  Channel:       %d\n"
 | 
			
		||||
                "  Unit:          %s\n"
 | 
			
		||||
                "  Attenuation:   %s\n"
 | 
			
		||||
                "  Samples: %i\n"
 | 
			
		||||
                "  Sampling mode: %s",
 | 
			
		||||
                this->channel_, LOG_STR_ARG(adc_unit_to_str(this->adc_unit_)),
 | 
			
		||||
                this->autorange_ ? "Auto" : LOG_STR_ARG(attenuation_to_str(this->attenuation_)), this->sample_count_,
 | 
			
		||||
                LOG_STR_ARG(sampling_mode_to_str(this->sampling_mode_)));
 | 
			
		||||
 | 
			
		||||
  ESP_LOGCONFIG(
 | 
			
		||||
      TAG,
 | 
			
		||||
      "  Setup Status:\n"
 | 
			
		||||
      "    Handle Init:  %s\n"
 | 
			
		||||
      "    Config:       %s\n"
 | 
			
		||||
      "    Calibration:  %s\n"
 | 
			
		||||
      "    Overall Init: %s",
 | 
			
		||||
      this->setup_flags_.handle_init_complete ? "OK" : "FAILED", this->setup_flags_.config_complete ? "OK" : "FAILED",
 | 
			
		||||
      this->setup_flags_.calibration_complete ? "OK" : "FAILED", this->setup_flags_.init_complete ? "OK" : "FAILED");
 | 
			
		||||
 | 
			
		||||
                this->sample_count_, LOG_STR_ARG(sampling_mode_to_str(this->sampling_mode_)));
 | 
			
		||||
  LOG_UPDATE_INTERVAL(this);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
float ADCSensor::sample() {
 | 
			
		||||
  if (this->autorange_) {
 | 
			
		||||
    return this->sample_autorange_();
 | 
			
		||||
  } else {
 | 
			
		||||
    return this->sample_fixed_attenuation_();
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
float ADCSensor::sample_fixed_attenuation_() {
 | 
			
		||||
  if (!this->autorange_) {
 | 
			
		||||
    auto aggr = Aggregator(this->sampling_mode_);
 | 
			
		||||
 | 
			
		||||
    for (uint8_t sample = 0; sample < this->sample_count_; sample++) {
 | 
			
		||||
    int raw;
 | 
			
		||||
    esp_err_t err = adc_oneshot_read(this->adc_handle_, this->channel_, &raw);
 | 
			
		||||
 | 
			
		||||
    if (err != ESP_OK) {
 | 
			
		||||
      ESP_LOGW(TAG, "ADC read failed with error %d", err);
 | 
			
		||||
      continue;
 | 
			
		||||
      int raw = -1;
 | 
			
		||||
      if (this->channel1_ != ADC1_CHANNEL_MAX) {
 | 
			
		||||
        raw = adc1_get_raw(this->channel1_);
 | 
			
		||||
      } else if (this->channel2_ != ADC2_CHANNEL_MAX) {
 | 
			
		||||
        adc2_get_raw(this->channel2_, ADC_WIDTH_MAX_SOC_BITS, &raw);
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      if (raw == -1) {
 | 
			
		||||
      ESP_LOGW(TAG, "Invalid ADC reading");
 | 
			
		||||
      continue;
 | 
			
		||||
        return NAN;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      aggr.add_sample(raw);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
  uint32_t final_value = aggr.aggregate();
 | 
			
		||||
 | 
			
		||||
    if (this->output_raw_) {
 | 
			
		||||
    return final_value;
 | 
			
		||||
      return aggr.aggregate();
 | 
			
		||||
    }
 | 
			
		||||
    uint32_t mv =
 | 
			
		||||
        esp_adc_cal_raw_to_voltage(aggr.aggregate(), &this->cal_characteristics_[(int32_t) this->attenuation_]);
 | 
			
		||||
    return mv / 1000.0f;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  if (this->calibration_handle_ != nullptr) {
 | 
			
		||||
    int voltage_mv;
 | 
			
		||||
    esp_err_t err = adc_cali_raw_to_voltage(this->calibration_handle_, final_value, &voltage_mv);
 | 
			
		||||
    if (err == ESP_OK) {
 | 
			
		||||
      return voltage_mv / 1000.0f;
 | 
			
		||||
    } else {
 | 
			
		||||
      ESP_LOGW(TAG, "ADC calibration conversion failed with error %d, disabling calibration", err);
 | 
			
		||||
      if (this->calibration_handle_ != nullptr) {
 | 
			
		||||
#if USE_ESP32_VARIANT_ESP32C3 || USE_ESP32_VARIANT_ESP32C5 || USE_ESP32_VARIANT_ESP32C6 || \
 | 
			
		||||
    USE_ESP32_VARIANT_ESP32S3 || USE_ESP32_VARIANT_ESP32H2
 | 
			
		||||
        adc_cali_delete_scheme_curve_fitting(this->calibration_handle_);
 | 
			
		||||
#else   // Other ESP32 variants use line fitting calibration
 | 
			
		||||
        adc_cali_delete_scheme_line_fitting(this->calibration_handle_);
 | 
			
		||||
#endif  // USE_ESP32_VARIANT_ESP32C3 || ESP32C5 || ESP32C6 || ESP32S3 || ESP32H2
 | 
			
		||||
        this->calibration_handle_ = nullptr;
 | 
			
		||||
  int raw12 = ADC_MAX, raw6 = ADC_MAX, raw2 = ADC_MAX, raw0 = ADC_MAX;
 | 
			
		||||
 | 
			
		||||
  if (this->channel1_ != ADC1_CHANNEL_MAX) {
 | 
			
		||||
    adc1_config_channel_atten(this->channel1_, ADC_ATTEN_DB_12_COMPAT);
 | 
			
		||||
    raw12 = adc1_get_raw(this->channel1_);
 | 
			
		||||
    if (raw12 < ADC_MAX) {
 | 
			
		||||
      adc1_config_channel_atten(this->channel1_, ADC_ATTEN_DB_6);
 | 
			
		||||
      raw6 = adc1_get_raw(this->channel1_);
 | 
			
		||||
      if (raw6 < ADC_MAX) {
 | 
			
		||||
        adc1_config_channel_atten(this->channel1_, ADC_ATTEN_DB_2_5);
 | 
			
		||||
        raw2 = adc1_get_raw(this->channel1_);
 | 
			
		||||
        if (raw2 < ADC_MAX) {
 | 
			
		||||
          adc1_config_channel_atten(this->channel1_, ADC_ATTEN_DB_0);
 | 
			
		||||
          raw0 = adc1_get_raw(this->channel1_);
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
  return final_value * 3.3f / 4095.0f;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
float ADCSensor::sample_autorange_() {
 | 
			
		||||
  // Auto-range mode
 | 
			
		||||
  auto read_atten = [this](adc_atten_t atten) -> std::pair<int, float> {
 | 
			
		||||
    // First reconfigure the attenuation for this reading
 | 
			
		||||
    adc_oneshot_chan_cfg_t config = {
 | 
			
		||||
        .atten = atten,
 | 
			
		||||
        .bitwidth = ADC_BITWIDTH_DEFAULT,
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    esp_err_t err = adc_oneshot_config_channel(this->adc_handle_, this->channel_, &config);
 | 
			
		||||
 | 
			
		||||
    if (err != ESP_OK) {
 | 
			
		||||
      ESP_LOGW(TAG, "Error configuring ADC channel for autorange: %d", err);
 | 
			
		||||
      return {-1, 0.0f};
 | 
			
		||||
  } else if (this->channel2_ != ADC2_CHANNEL_MAX) {
 | 
			
		||||
    adc2_config_channel_atten(this->channel2_, ADC_ATTEN_DB_12_COMPAT);
 | 
			
		||||
    adc2_get_raw(this->channel2_, ADC_WIDTH_MAX_SOC_BITS, &raw12);
 | 
			
		||||
    if (raw12 < ADC_MAX) {
 | 
			
		||||
      adc2_config_channel_atten(this->channel2_, ADC_ATTEN_DB_6);
 | 
			
		||||
      adc2_get_raw(this->channel2_, ADC_WIDTH_MAX_SOC_BITS, &raw6);
 | 
			
		||||
      if (raw6 < ADC_MAX) {
 | 
			
		||||
        adc2_config_channel_atten(this->channel2_, ADC_ATTEN_DB_2_5);
 | 
			
		||||
        adc2_get_raw(this->channel2_, ADC_WIDTH_MAX_SOC_BITS, &raw2);
 | 
			
		||||
        if (raw2 < ADC_MAX) {
 | 
			
		||||
          adc2_config_channel_atten(this->channel2_, ADC_ATTEN_DB_0);
 | 
			
		||||
          adc2_get_raw(this->channel2_, ADC_WIDTH_MAX_SOC_BITS, &raw0);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
    // Need to recalibrate for the new attenuation
 | 
			
		||||
    if (this->calibration_handle_ != nullptr) {
 | 
			
		||||
      // Delete old calibration handle
 | 
			
		||||
#if USE_ESP32_VARIANT_ESP32C3 || USE_ESP32_VARIANT_ESP32C5 || USE_ESP32_VARIANT_ESP32C6 || \
 | 
			
		||||
    USE_ESP32_VARIANT_ESP32S3 || USE_ESP32_VARIANT_ESP32H2
 | 
			
		||||
      adc_cali_delete_scheme_curve_fitting(this->calibration_handle_);
 | 
			
		||||
#else
 | 
			
		||||
      adc_cali_delete_scheme_line_fitting(this->calibration_handle_);
 | 
			
		||||
#endif
 | 
			
		||||
      this->calibration_handle_ = nullptr;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Create new calibration handle for this attenuation
 | 
			
		||||
    adc_cali_handle_t handle = nullptr;
 | 
			
		||||
 | 
			
		||||
#if USE_ESP32_VARIANT_ESP32C3 || USE_ESP32_VARIANT_ESP32C5 || USE_ESP32_VARIANT_ESP32C6 || \
 | 
			
		||||
    USE_ESP32_VARIANT_ESP32S3 || USE_ESP32_VARIANT_ESP32H2
 | 
			
		||||
    adc_cali_curve_fitting_config_t cali_config = {};
 | 
			
		||||
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 3, 0)
 | 
			
		||||
    cali_config.chan = this->channel_;
 | 
			
		||||
#endif
 | 
			
		||||
    cali_config.unit_id = this->adc_unit_;
 | 
			
		||||
    cali_config.atten = atten;
 | 
			
		||||
    cali_config.bitwidth = ADC_BITWIDTH_DEFAULT;
 | 
			
		||||
 | 
			
		||||
    err = adc_cali_create_scheme_curve_fitting(&cali_config, &handle);
 | 
			
		||||
#else
 | 
			
		||||
    adc_cali_line_fitting_config_t cali_config = {
 | 
			
		||||
      .unit_id = this->adc_unit_,
 | 
			
		||||
      .atten = atten,
 | 
			
		||||
      .bitwidth = ADC_BITWIDTH_DEFAULT,
 | 
			
		||||
#if !defined(USE_ESP32_VARIANT_ESP32S2)
 | 
			
		||||
      .default_vref = 1100,
 | 
			
		||||
#endif
 | 
			
		||||
    };
 | 
			
		||||
    err = adc_cali_create_scheme_line_fitting(&cali_config, &handle);
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
    int raw;
 | 
			
		||||
    err = adc_oneshot_read(this->adc_handle_, this->channel_, &raw);
 | 
			
		||||
 | 
			
		||||
    if (err != ESP_OK) {
 | 
			
		||||
      ESP_LOGW(TAG, "ADC read failed in autorange with error %d", err);
 | 
			
		||||
      if (handle != nullptr) {
 | 
			
		||||
#if USE_ESP32_VARIANT_ESP32C3 || USE_ESP32_VARIANT_ESP32C5 || USE_ESP32_VARIANT_ESP32C6 || \
 | 
			
		||||
    USE_ESP32_VARIANT_ESP32S3 || USE_ESP32_VARIANT_ESP32H2
 | 
			
		||||
        adc_cali_delete_scheme_curve_fitting(handle);
 | 
			
		||||
#else
 | 
			
		||||
        adc_cali_delete_scheme_line_fitting(handle);
 | 
			
		||||
#endif
 | 
			
		||||
      }
 | 
			
		||||
      return {-1, 0.0f};
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    float voltage = 0.0f;
 | 
			
		||||
    if (handle != nullptr) {
 | 
			
		||||
      int voltage_mv;
 | 
			
		||||
      err = adc_cali_raw_to_voltage(handle, raw, &voltage_mv);
 | 
			
		||||
      if (err == ESP_OK) {
 | 
			
		||||
        voltage = voltage_mv / 1000.0f;
 | 
			
		||||
      } else {
 | 
			
		||||
        voltage = raw * 3.3f / 4095.0f;
 | 
			
		||||
      }
 | 
			
		||||
      // Clean up calibration handle
 | 
			
		||||
#if USE_ESP32_VARIANT_ESP32C3 || USE_ESP32_VARIANT_ESP32C5 || USE_ESP32_VARIANT_ESP32C6 || \
 | 
			
		||||
    USE_ESP32_VARIANT_ESP32S3 || USE_ESP32_VARIANT_ESP32H2
 | 
			
		||||
      adc_cali_delete_scheme_curve_fitting(handle);
 | 
			
		||||
#else
 | 
			
		||||
      adc_cali_delete_scheme_line_fitting(handle);
 | 
			
		||||
#endif
 | 
			
		||||
    } else {
 | 
			
		||||
      voltage = raw * 3.3f / 4095.0f;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return {raw, voltage};
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  auto [raw12, mv12] = read_atten(ADC_ATTEN_DB_12);
 | 
			
		||||
  if (raw12 == -1) {
 | 
			
		||||
    ESP_LOGE(TAG, "Failed to read ADC in autorange mode");
 | 
			
		||||
    return NAN;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  int raw6 = 4095, raw2 = 4095, raw0 = 4095;
 | 
			
		||||
  float mv6 = 0, mv2 = 0, mv0 = 0;
 | 
			
		||||
 | 
			
		||||
  if (raw12 < 4095) {
 | 
			
		||||
    auto [raw6_val, mv6_val] = read_atten(ADC_ATTEN_DB_6);
 | 
			
		||||
    raw6 = raw6_val;
 | 
			
		||||
    mv6 = mv6_val;
 | 
			
		||||
 | 
			
		||||
    if (raw6 < 4095 && raw6 != -1) {
 | 
			
		||||
      auto [raw2_val, mv2_val] = read_atten(ADC_ATTEN_DB_2_5);
 | 
			
		||||
      raw2 = raw2_val;
 | 
			
		||||
      mv2 = mv2_val;
 | 
			
		||||
 | 
			
		||||
      if (raw2 < 4095 && raw2 != -1) {
 | 
			
		||||
        auto [raw0_val, mv0_val] = read_atten(ADC_ATTEN_DB_0);
 | 
			
		||||
        raw0 = raw0_val;
 | 
			
		||||
        mv0 = mv0_val;
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
@@ -325,19 +147,19 @@ float ADCSensor::sample_autorange_() {
 | 
			
		||||
    return NAN;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  const int adc_half = 2048;
 | 
			
		||||
  uint32_t c12 = std::min(raw12, adc_half);
 | 
			
		||||
  uint32_t c6 = adc_half - std::abs(raw6 - adc_half);
 | 
			
		||||
  uint32_t c2 = adc_half - std::abs(raw2 - adc_half);
 | 
			
		||||
  uint32_t c0 = std::min(4095 - raw0, adc_half);
 | 
			
		||||
  uint32_t mv12 = esp_adc_cal_raw_to_voltage(raw12, &this->cal_characteristics_[(int32_t) ADC_ATTEN_DB_12_COMPAT]);
 | 
			
		||||
  uint32_t mv6 = esp_adc_cal_raw_to_voltage(raw6, &this->cal_characteristics_[(int32_t) ADC_ATTEN_DB_6]);
 | 
			
		||||
  uint32_t mv2 = esp_adc_cal_raw_to_voltage(raw2, &this->cal_characteristics_[(int32_t) ADC_ATTEN_DB_2_5]);
 | 
			
		||||
  uint32_t mv0 = esp_adc_cal_raw_to_voltage(raw0, &this->cal_characteristics_[(int32_t) ADC_ATTEN_DB_0]);
 | 
			
		||||
 | 
			
		||||
  uint32_t c12 = std::min(raw12, ADC_HALF);
 | 
			
		||||
  uint32_t c6 = ADC_HALF - std::abs(raw6 - ADC_HALF);
 | 
			
		||||
  uint32_t c2 = ADC_HALF - std::abs(raw2 - ADC_HALF);
 | 
			
		||||
  uint32_t c0 = std::min(ADC_MAX - raw0, ADC_HALF);
 | 
			
		||||
  uint32_t csum = c12 + c6 + c2 + c0;
 | 
			
		||||
 | 
			
		||||
  if (csum == 0) {
 | 
			
		||||
    ESP_LOGE(TAG, "Invalid weight sum in autorange calculation");
 | 
			
		||||
    return NAN;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  return (mv12 * c12 + mv6 * c6 + mv2 * c2 + mv0 * c0) / csum;
 | 
			
		||||
  uint32_t mv_scaled = (mv12 * c12) + (mv6 * c6) + (mv2 * c2) + (mv0 * c0);
 | 
			
		||||
  return mv_scaled / (float) (csum * 1000U);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
}  // namespace adc
 | 
			
		||||
 
 | 
			
		||||
@@ -56,6 +56,8 @@ float ADCSensor::sample() {
 | 
			
		||||
  return aggr.aggregate() / 1024.0f;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
std::string ADCSensor::unique_id() { return get_mac_address() + "-adc"; }
 | 
			
		||||
 | 
			
		||||
}  // namespace adc
 | 
			
		||||
}  // namespace esphome
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -10,11 +10,13 @@ from esphome.const import (
 | 
			
		||||
    CONF_NUMBER,
 | 
			
		||||
    CONF_PIN,
 | 
			
		||||
    CONF_RAW,
 | 
			
		||||
    CONF_WIFI,
 | 
			
		||||
    DEVICE_CLASS_VOLTAGE,
 | 
			
		||||
    STATE_CLASS_MEASUREMENT,
 | 
			
		||||
    UNIT_VOLT,
 | 
			
		||||
)
 | 
			
		||||
from esphome.core import CORE
 | 
			
		||||
import esphome.final_validate as fv
 | 
			
		||||
 | 
			
		||||
from . import (
 | 
			
		||||
    ATTENUATION_MODES,
 | 
			
		||||
@@ -22,7 +24,6 @@ from . import (
 | 
			
		||||
    ESP32_VARIANT_ADC2_PIN_TO_CHANNEL,
 | 
			
		||||
    SAMPLING_MODES,
 | 
			
		||||
    adc_ns,
 | 
			
		||||
    adc_unit_t,
 | 
			
		||||
    validate_adc_pin,
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
@@ -56,6 +57,21 @@ def validate_config(config):
 | 
			
		||||
    return config
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def final_validate_config(config):
 | 
			
		||||
    if CORE.is_esp32:
 | 
			
		||||
        variant = get_esp32_variant()
 | 
			
		||||
        if (
 | 
			
		||||
            CONF_WIFI in fv.full_config.get()
 | 
			
		||||
            and config[CONF_PIN][CONF_NUMBER]
 | 
			
		||||
            in ESP32_VARIANT_ADC2_PIN_TO_CHANNEL[variant]
 | 
			
		||||
        ):
 | 
			
		||||
            raise cv.Invalid(
 | 
			
		||||
                f"{variant} doesn't support ADC on this pin when Wi-Fi is configured"
 | 
			
		||||
            )
 | 
			
		||||
 | 
			
		||||
    return config
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
ADCSensor = adc_ns.class_(
 | 
			
		||||
    "ADCSensor", sensor.Sensor, cg.PollingComponent, voltage_sampler.VoltageSampler
 | 
			
		||||
)
 | 
			
		||||
@@ -83,6 +99,8 @@ CONFIG_SCHEMA = cv.All(
 | 
			
		||||
    validate_config,
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
FINAL_VALIDATE_SCHEMA = final_validate_config
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
async def to_code(config):
 | 
			
		||||
    var = cg.new_Pvariable(config[CONF_ID])
 | 
			
		||||
@@ -101,13 +119,13 @@ async def to_code(config):
 | 
			
		||||
    cg.add(var.set_sample_count(config[CONF_SAMPLES]))
 | 
			
		||||
    cg.add(var.set_sampling_mode(config[CONF_SAMPLING_MODE]))
 | 
			
		||||
 | 
			
		||||
    if CORE.is_esp32:
 | 
			
		||||
    if attenuation := config.get(CONF_ATTENUATION):
 | 
			
		||||
        if attenuation == "auto":
 | 
			
		||||
            cg.add(var.set_autorange(cg.global_ns.true))
 | 
			
		||||
        else:
 | 
			
		||||
            cg.add(var.set_attenuation(attenuation))
 | 
			
		||||
 | 
			
		||||
    if CORE.is_esp32:
 | 
			
		||||
        variant = get_esp32_variant()
 | 
			
		||||
        pin_num = config[CONF_PIN][CONF_NUMBER]
 | 
			
		||||
        if (
 | 
			
		||||
@@ -115,10 +133,10 @@ async def to_code(config):
 | 
			
		||||
            and pin_num in ESP32_VARIANT_ADC1_PIN_TO_CHANNEL[variant]
 | 
			
		||||
        ):
 | 
			
		||||
            chan = ESP32_VARIANT_ADC1_PIN_TO_CHANNEL[variant][pin_num]
 | 
			
		||||
            cg.add(var.set_channel(adc_unit_t.ADC_UNIT_1, chan))
 | 
			
		||||
            cg.add(var.set_channel1(chan))
 | 
			
		||||
        elif (
 | 
			
		||||
            variant in ESP32_VARIANT_ADC2_PIN_TO_CHANNEL
 | 
			
		||||
            and pin_num in ESP32_VARIANT_ADC2_PIN_TO_CHANNEL[variant]
 | 
			
		||||
        ):
 | 
			
		||||
            chan = ESP32_VARIANT_ADC2_PIN_TO_CHANNEL[variant][pin_num]
 | 
			
		||||
            cg.add(var.set_channel(adc_unit_t.ADC_UNIT_2, chan))
 | 
			
		||||
            cg.add(var.set_channel2(chan))
 | 
			
		||||
 
 | 
			
		||||
@@ -85,6 +85,8 @@ class ADE7880 : public i2c::I2CDevice, public PollingComponent {
 | 
			
		||||
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  ADE7880Store store_{};
 | 
			
		||||
  InternalGPIOPin *irq0_pin_{nullptr};
 | 
			
		||||
 
 | 
			
		||||
@@ -49,6 +49,7 @@ class ADS1115Component : public Component, public i2c::I2CDevice {
 | 
			
		||||
  void setup() override;
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  /// 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; }
 | 
			
		||||
 | 
			
		||||
  /// Helper method to request a measurement from a sensor.
 | 
			
		||||
 
 | 
			
		||||
@@ -34,6 +34,7 @@ class ADS1118 : public Component,
 | 
			
		||||
  ADS1118() = default;
 | 
			
		||||
  void setup() override;
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
  /// Helper method to request a measurement from a sensor.
 | 
			
		||||
  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;
 | 
			
		||||
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
 | 
			
		||||
  /**
 | 
			
		||||
   * Modifies target address of AGS10.
 | 
			
		||||
   *
 | 
			
		||||
 
 | 
			
		||||
@@ -66,6 +66,7 @@ class AIC3204 : public audio_dac::AudioDac, public Component, public i2c::I2CDev
 | 
			
		||||
 public:
 | 
			
		||||
  void setup() override;
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
 | 
			
		||||
  bool set_mute_off() override;
 | 
			
		||||
  bool set_mute_on() override;
 | 
			
		||||
 
 | 
			
		||||
@@ -1 +1 @@
 | 
			
		||||
CODEOWNERS = ["@jeromelaban", "@precurse"]
 | 
			
		||||
CODEOWNERS = ["@jeromelaban"]
 | 
			
		||||
 
 | 
			
		||||
@@ -73,29 +73,11 @@ void AirthingsWavePlus::dump_config() {
 | 
			
		||||
  LOG_SENSOR("  ", "Illuminance", this->illuminance_sensor_);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void AirthingsWavePlus::setup() {
 | 
			
		||||
  const char *service_uuid;
 | 
			
		||||
  const char *characteristic_uuid;
 | 
			
		||||
  const char *access_control_point_characteristic_uuid;
 | 
			
		||||
 | 
			
		||||
  // Change UUIDs for Wave Radon Gen2
 | 
			
		||||
  switch (this->wave_device_type_) {
 | 
			
		||||
    case WaveDeviceType::WAVE_GEN2:
 | 
			
		||||
      service_uuid = SERVICE_UUID_WAVE_RADON_GEN2;
 | 
			
		||||
      characteristic_uuid = CHARACTERISTIC_UUID_WAVE_RADON_GEN2;
 | 
			
		||||
      access_control_point_characteristic_uuid = ACCESS_CONTROL_POINT_CHARACTERISTIC_UUID_WAVE_RADON_GEN2;
 | 
			
		||||
      break;
 | 
			
		||||
    default:
 | 
			
		||||
      // Wave Plus
 | 
			
		||||
      service_uuid = SERVICE_UUID;
 | 
			
		||||
      characteristic_uuid = CHARACTERISTIC_UUID;
 | 
			
		||||
      access_control_point_characteristic_uuid = ACCESS_CONTROL_POINT_CHARACTERISTIC_UUID;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  this->service_uuid_ = espbt::ESPBTUUID::from_raw(service_uuid);
 | 
			
		||||
  this->sensors_data_characteristic_uuid_ = espbt::ESPBTUUID::from_raw(characteristic_uuid);
 | 
			
		||||
AirthingsWavePlus::AirthingsWavePlus() {
 | 
			
		||||
  this->service_uuid_ = espbt::ESPBTUUID::from_raw(SERVICE_UUID);
 | 
			
		||||
  this->sensors_data_characteristic_uuid_ = espbt::ESPBTUUID::from_raw(CHARACTERISTIC_UUID);
 | 
			
		||||
  this->access_control_point_characteristic_uuid_ =
 | 
			
		||||
      espbt::ESPBTUUID::from_raw(access_control_point_characteristic_uuid);
 | 
			
		||||
      espbt::ESPBTUUID::from_raw(ACCESS_CONTROL_POINT_CHARACTERISTIC_UUID);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
}  // namespace airthings_wave_plus
 | 
			
		||||
 
 | 
			
		||||
@@ -9,20 +9,13 @@ namespace airthings_wave_plus {
 | 
			
		||||
 | 
			
		||||
namespace espbt = esphome::esp32_ble_tracker;
 | 
			
		||||
 | 
			
		||||
enum WaveDeviceType : uint8_t { WAVE_PLUS = 0, WAVE_GEN2 = 1 };
 | 
			
		||||
 | 
			
		||||
static const char *const SERVICE_UUID = "b42e1c08-ade7-11e4-89d3-123b93f75cba";
 | 
			
		||||
static const char *const CHARACTERISTIC_UUID = "b42e2a68-ade7-11e4-89d3-123b93f75cba";
 | 
			
		||||
static const char *const ACCESS_CONTROL_POINT_CHARACTERISTIC_UUID = "b42e2d06-ade7-11e4-89d3-123b93f75cba";
 | 
			
		||||
 | 
			
		||||
static const char *const SERVICE_UUID_WAVE_RADON_GEN2 = "b42e4a8e-ade7-11e4-89d3-123b93f75cba";
 | 
			
		||||
static const char *const CHARACTERISTIC_UUID_WAVE_RADON_GEN2 = "b42e4dcc-ade7-11e4-89d3-123b93f75cba";
 | 
			
		||||
static const char *const ACCESS_CONTROL_POINT_CHARACTERISTIC_UUID_WAVE_RADON_GEN2 =
 | 
			
		||||
    "b42e50d8-ade7-11e4-89d3-123b93f75cba";
 | 
			
		||||
 | 
			
		||||
class AirthingsWavePlus : public airthings_wave_base::AirthingsWaveBase {
 | 
			
		||||
 public:
 | 
			
		||||
  void setup() override;
 | 
			
		||||
  AirthingsWavePlus();
 | 
			
		||||
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
 | 
			
		||||
@@ -30,14 +23,12 @@ class AirthingsWavePlus : public airthings_wave_base::AirthingsWaveBase {
 | 
			
		||||
  void set_radon_long_term(sensor::Sensor *radon_long_term) { radon_long_term_sensor_ = radon_long_term; }
 | 
			
		||||
  void set_co2(sensor::Sensor *co2) { co2_sensor_ = co2; }
 | 
			
		||||
  void set_illuminance(sensor::Sensor *illuminance) { illuminance_sensor_ = illuminance; }
 | 
			
		||||
  void set_device_type(WaveDeviceType wave_device_type) { wave_device_type_ = wave_device_type; }
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  bool is_valid_radon_value_(uint16_t radon);
 | 
			
		||||
  bool is_valid_co2_value_(uint16_t co2);
 | 
			
		||||
 | 
			
		||||
  void read_sensors(uint8_t *raw_value, uint16_t value_len) override;
 | 
			
		||||
  WaveDeviceType wave_device_type_{WaveDeviceType::WAVE_PLUS};
 | 
			
		||||
 | 
			
		||||
  sensor::Sensor *radon_sensor_{nullptr};
 | 
			
		||||
  sensor::Sensor *radon_long_term_sensor_{nullptr};
 | 
			
		||||
 
 | 
			
		||||
@@ -7,7 +7,6 @@ from esphome.const import (
 | 
			
		||||
    CONF_ILLUMINANCE,
 | 
			
		||||
    CONF_RADON,
 | 
			
		||||
    CONF_RADON_LONG_TERM,
 | 
			
		||||
    CONF_TVOC,
 | 
			
		||||
    DEVICE_CLASS_CARBON_DIOXIDE,
 | 
			
		||||
    DEVICE_CLASS_ILLUMINANCE,
 | 
			
		||||
    ICON_RADIOACTIVE,
 | 
			
		||||
@@ -16,7 +15,6 @@ from esphome.const import (
 | 
			
		||||
    UNIT_LUX,
 | 
			
		||||
    UNIT_PARTS_PER_MILLION,
 | 
			
		||||
)
 | 
			
		||||
from esphome.types import ConfigType
 | 
			
		||||
 | 
			
		||||
DEPENDENCIES = airthings_wave_base.DEPENDENCIES
 | 
			
		||||
 | 
			
		||||
@@ -27,27 +25,8 @@ AirthingsWavePlus = airthings_wave_plus_ns.class_(
 | 
			
		||||
    "AirthingsWavePlus", airthings_wave_base.AirthingsWaveBase
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
CONF_DEVICE_TYPE = "device_type"
 | 
			
		||||
WaveDeviceType = airthings_wave_plus_ns.enum("WaveDeviceType")
 | 
			
		||||
DEVICE_TYPES = {
 | 
			
		||||
    "WAVE_PLUS": WaveDeviceType.WAVE_PLUS,
 | 
			
		||||
    "WAVE_GEN2": WaveDeviceType.WAVE_GEN2,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def validate_wave_gen2_config(config: ConfigType) -> ConfigType:
 | 
			
		||||
    """Validate that Wave Gen2 devices don't have CO2 or TVOC sensors."""
 | 
			
		||||
    if config[CONF_DEVICE_TYPE] == "WAVE_GEN2":
 | 
			
		||||
        if CONF_CO2 in config:
 | 
			
		||||
            raise cv.Invalid("Wave Gen2 devices do not support CO2 sensor")
 | 
			
		||||
        # Check for TVOC in the base schema config
 | 
			
		||||
        if CONF_TVOC in config:
 | 
			
		||||
            raise cv.Invalid("Wave Gen2 devices do not support TVOC sensor")
 | 
			
		||||
    return config
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
CONFIG_SCHEMA = cv.All(
 | 
			
		||||
    airthings_wave_base.BASE_SCHEMA.extend(
 | 
			
		||||
CONFIG_SCHEMA = airthings_wave_base.BASE_SCHEMA.extend(
 | 
			
		||||
    {
 | 
			
		||||
        cv.GenerateID(): cv.declare_id(AirthingsWavePlus),
 | 
			
		||||
        cv.Optional(CONF_RADON): sensor.sensor_schema(
 | 
			
		||||
@@ -74,12 +53,7 @@ CONFIG_SCHEMA = cv.All(
 | 
			
		||||
            device_class=DEVICE_CLASS_ILLUMINANCE,
 | 
			
		||||
            state_class=STATE_CLASS_MEASUREMENT,
 | 
			
		||||
        ),
 | 
			
		||||
            cv.Optional(CONF_DEVICE_TYPE, default="WAVE_PLUS"): cv.enum(
 | 
			
		||||
                DEVICE_TYPES, upper=True
 | 
			
		||||
            ),
 | 
			
		||||
    }
 | 
			
		||||
    ),
 | 
			
		||||
    validate_wave_gen2_config,
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@@ -99,4 +73,3 @@ async def to_code(config):
 | 
			
		||||
    if config_illuminance := config.get(CONF_ILLUMINANCE):
 | 
			
		||||
        sens = await sensor.new_sensor(config_illuminance)
 | 
			
		||||
        cg.add(var.set_illuminance(sens))
 | 
			
		||||
    cg.add(var.set_device_type(config[CONF_DEVICE_TYPE]))
 | 
			
		||||
 
 | 
			
		||||
@@ -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,
 | 
			
		||||
                           esp_ble_gattc_cb_param_t *param) 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_head_sensor(sensor::Sensor *sensor) { this->head_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,
 | 
			
		||||
                           esp_ble_gattc_cb_param_t *param) override;
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
  cover::CoverTraits get_traits() override;
 | 
			
		||||
  void set_pin(uint16_t pin) { this->pin_ = pin; }
 | 
			
		||||
  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,
 | 
			
		||||
                           esp_ble_gattc_cb_param_t *param) 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_illuminance(sensor::Sensor *illuminance) { illuminance_ = illuminance; }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -12,6 +12,8 @@ class AnalogThresholdBinarySensor : public Component, public binary_sensor::Bina
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  void setup() override;
 | 
			
		||||
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
 | 
			
		||||
  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_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,
 | 
			
		||||
                           esp_ble_gattc_cb_param_t *param) override;
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
  climate::ClimateTraits traits() override {
 | 
			
		||||
    auto traits = climate::ClimateTraits();
 | 
			
		||||
    traits.set_supports_current_temperature(true);
 | 
			
		||||
 
 | 
			
		||||
@@ -23,7 +23,7 @@ void APDS9960::setup() {
 | 
			
		||||
    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->mark_failed();
 | 
			
		||||
    return;
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,6 @@ import base64
 | 
			
		||||
from esphome import automation
 | 
			
		||||
from esphome.automation import Condition
 | 
			
		||||
import esphome.codegen as cg
 | 
			
		||||
from esphome.config_helpers import get_logger_level
 | 
			
		||||
import esphome.config_validation as cv
 | 
			
		||||
from esphome.const import (
 | 
			
		||||
    CONF_ACTION,
 | 
			
		||||
@@ -24,9 +23,8 @@ from esphome.const import (
 | 
			
		||||
    CONF_TRIGGER_ID,
 | 
			
		||||
    CONF_VARIABLES,
 | 
			
		||||
)
 | 
			
		||||
from esphome.core import CORE, coroutine_with_priority
 | 
			
		||||
from esphome.core import coroutine_with_priority
 | 
			
		||||
 | 
			
		||||
DOMAIN = "api"
 | 
			
		||||
DEPENDENCIES = ["network"]
 | 
			
		||||
AUTO_LOAD = ["socket"]
 | 
			
		||||
CODEOWNERS = ["@OttoWinter"]
 | 
			
		||||
@@ -52,7 +50,6 @@ SERVICE_ARG_NATIVE_TYPES = {
 | 
			
		||||
}
 | 
			
		||||
CONF_ENCRYPTION = "encryption"
 | 
			
		||||
CONF_BATCH_DELAY = "batch_delay"
 | 
			
		||||
CONF_CUSTOM_SERVICES = "custom_services"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def validate_encryption_key(value):
 | 
			
		||||
@@ -113,11 +110,9 @@ CONFIG_SCHEMA = cv.All(
 | 
			
		||||
            ): ACTIONS_SCHEMA,
 | 
			
		||||
            cv.Exclusive(CONF_ACTIONS, group_of_exclusion=CONF_ACTIONS): ACTIONS_SCHEMA,
 | 
			
		||||
            cv.Optional(CONF_ENCRYPTION): _encryption_schema,
 | 
			
		||||
            cv.Optional(CONF_BATCH_DELAY, default="100ms"): cv.All(
 | 
			
		||||
                cv.positive_time_period_milliseconds,
 | 
			
		||||
                cv.Range(max=cv.TimePeriod(milliseconds=65535)),
 | 
			
		||||
            ),
 | 
			
		||||
            cv.Optional(CONF_CUSTOM_SERVICES, default=False): cv.boolean,
 | 
			
		||||
            cv.Optional(
 | 
			
		||||
                CONF_BATCH_DELAY, default="100ms"
 | 
			
		||||
            ): cv.positive_time_period_milliseconds,
 | 
			
		||||
            cv.Optional(CONF_ON_CLIENT_CONNECTED): automation.validate_automation(
 | 
			
		||||
                single=True
 | 
			
		||||
            ),
 | 
			
		||||
@@ -136,18 +131,11 @@ async def to_code(config):
 | 
			
		||||
    await cg.register_component(var, config)
 | 
			
		||||
 | 
			
		||||
    cg.add(var.set_port(config[CONF_PORT]))
 | 
			
		||||
    if 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_batch_delay(config[CONF_BATCH_DELAY]))
 | 
			
		||||
 | 
			
		||||
    # Set USE_API_SERVICES if any services are enabled
 | 
			
		||||
    if config.get(CONF_ACTIONS) or config[CONF_CUSTOM_SERVICES]:
 | 
			
		||||
        cg.add_define("USE_API_SERVICES")
 | 
			
		||||
 | 
			
		||||
    if actions := config.get(CONF_ACTIONS, []):
 | 
			
		||||
        for conf in actions:
 | 
			
		||||
    for conf in config.get(CONF_ACTIONS, []):
 | 
			
		||||
        template_args = []
 | 
			
		||||
        func_args = []
 | 
			
		||||
        service_arg_names = []
 | 
			
		||||
@@ -164,7 +152,6 @@ async def to_code(config):
 | 
			
		||||
        await automation.build_automation(trigger, func_args, conf)
 | 
			
		||||
 | 
			
		||||
    if CONF_ON_CLIENT_CONNECTED in config:
 | 
			
		||||
        cg.add_define("USE_API_CLIENT_CONNECTED_TRIGGER")
 | 
			
		||||
        await automation.build_automation(
 | 
			
		||||
            var.get_client_connected_trigger(),
 | 
			
		||||
            [(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:
 | 
			
		||||
        cg.add_define("USE_API_CLIENT_DISCONNECTED_TRIGGER")
 | 
			
		||||
        await automation.build_automation(
 | 
			
		||||
            var.get_client_disconnected_trigger(),
 | 
			
		||||
            [(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.
 | 
			
		||||
            cg.add_define("USE_API_PLAINTEXT")
 | 
			
		||||
        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:
 | 
			
		||||
        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, {})
 | 
			
		||||
async def api_connected_to_code(config, condition_id, template_arg, args):
 | 
			
		||||
    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
 | 
			
		||||
 
 | 
			
		||||
@@ -222,37 +222,37 @@ message DeviceInfoResponse {
 | 
			
		||||
  // The model of the board. For example NodeMCU
 | 
			
		||||
  string model = 6;
 | 
			
		||||
 | 
			
		||||
  bool has_deep_sleep = 7 [(field_ifdef) = "USE_DEEP_SLEEP"];
 | 
			
		||||
  bool has_deep_sleep = 7;
 | 
			
		||||
 | 
			
		||||
  // The esphome project details if set
 | 
			
		||||
  string project_name = 8 [(field_ifdef) = "ESPHOME_PROJECT_NAME"];
 | 
			
		||||
  string project_version = 9 [(field_ifdef) = "ESPHOME_PROJECT_NAME"];
 | 
			
		||||
  string project_name = 8;
 | 
			
		||||
  string project_version = 9;
 | 
			
		||||
 | 
			
		||||
  uint32 webserver_port = 10 [(field_ifdef) = "USE_WEBSERVER"];
 | 
			
		||||
  uint32 webserver_port = 10;
 | 
			
		||||
 | 
			
		||||
  uint32 legacy_bluetooth_proxy_version = 11 [(field_ifdef) = "USE_BLUETOOTH_PROXY"];
 | 
			
		||||
  uint32 bluetooth_proxy_feature_flags = 15 [(field_ifdef) = "USE_BLUETOOTH_PROXY"];
 | 
			
		||||
  uint32 legacy_bluetooth_proxy_version = 11;
 | 
			
		||||
  uint32 bluetooth_proxy_feature_flags = 15;
 | 
			
		||||
 | 
			
		||||
  string manufacturer = 12;
 | 
			
		||||
 | 
			
		||||
  string friendly_name = 13;
 | 
			
		||||
 | 
			
		||||
  uint32 legacy_voice_assistant_version = 14 [(field_ifdef) = "USE_VOICE_ASSISTANT"];
 | 
			
		||||
  uint32 voice_assistant_feature_flags = 17 [(field_ifdef) = "USE_VOICE_ASSISTANT"];
 | 
			
		||||
  uint32 legacy_voice_assistant_version = 14;
 | 
			
		||||
  uint32 voice_assistant_feature_flags = 17;
 | 
			
		||||
 | 
			
		||||
  string suggested_area = 16 [(field_ifdef) = "USE_AREAS"];
 | 
			
		||||
  string suggested_area = 16;
 | 
			
		||||
 | 
			
		||||
  // The Bluetooth mac address of the device. For example "AC:BC:32:89:0E:AA"
 | 
			
		||||
  string bluetooth_mac_address = 18 [(field_ifdef) = "USE_BLUETOOTH_PROXY"];
 | 
			
		||||
  string bluetooth_mac_address = 18;
 | 
			
		||||
 | 
			
		||||
  // Supports receiving and saving api encryption key
 | 
			
		||||
  bool api_encryption_supported = 19 [(field_ifdef) = "USE_API_NOISE"];
 | 
			
		||||
  bool api_encryption_supported = 19;
 | 
			
		||||
 | 
			
		||||
  repeated DeviceInfo devices = 20 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  repeated AreaInfo areas = 21 [(field_ifdef) = "USE_AREAS"];
 | 
			
		||||
  repeated DeviceInfo devices = 20;
 | 
			
		||||
  repeated AreaInfo areas = 21;
 | 
			
		||||
 | 
			
		||||
  // Top-level area info to phase out suggested_area
 | 
			
		||||
  AreaInfo area = 22 [(field_ifdef) = "USE_AREAS"];
 | 
			
		||||
  AreaInfo area = 22;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
message ListEntitiesRequest {
 | 
			
		||||
@@ -290,14 +290,14 @@ message ListEntitiesBinarySensorResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string device_class = 5;
 | 
			
		||||
  bool is_status_binary_sensor = 6;
 | 
			
		||||
  bool disabled_by_default = 7;
 | 
			
		||||
  string icon = 8 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 8;
 | 
			
		||||
  EntityCategory entity_category = 9;
 | 
			
		||||
  uint32 device_id = 10 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 10;
 | 
			
		||||
}
 | 
			
		||||
message BinarySensorStateResponse {
 | 
			
		||||
  option (id) = 21;
 | 
			
		||||
@@ -311,7 +311,6 @@ message BinarySensorStateResponse {
 | 
			
		||||
  // If the binary sensor does not have a valid state yet.
 | 
			
		||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
			
		||||
  bool missing_state = 3;
 | 
			
		||||
  uint32 device_id = 4 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== COVER ====================
 | 
			
		||||
@@ -324,17 +323,17 @@ message ListEntitiesCoverResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  bool assumed_state = 5;
 | 
			
		||||
  bool supports_position = 6;
 | 
			
		||||
  bool supports_tilt = 7;
 | 
			
		||||
  string device_class = 8;
 | 
			
		||||
  bool disabled_by_default = 9;
 | 
			
		||||
  string icon = 10 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 10;
 | 
			
		||||
  EntityCategory entity_category = 11;
 | 
			
		||||
  bool supports_stop = 12;
 | 
			
		||||
  uint32 device_id = 13 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 13;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
enum LegacyCoverState {
 | 
			
		||||
@@ -361,7 +360,6 @@ message CoverStateResponse {
 | 
			
		||||
  float position = 3;
 | 
			
		||||
  float tilt = 4;
 | 
			
		||||
  CoverOperation current_operation = 5;
 | 
			
		||||
  uint32 device_id = 6 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
enum LegacyCoverCommand {
 | 
			
		||||
@@ -374,7 +372,6 @@ message CoverCommandRequest {
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_COVER";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
 | 
			
		||||
@@ -388,7 +385,6 @@ message CoverCommandRequest {
 | 
			
		||||
  bool has_tilt = 6;
 | 
			
		||||
  float tilt = 7;
 | 
			
		||||
  bool stop = 8;
 | 
			
		||||
  uint32 device_id = 9 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== FAN ====================
 | 
			
		||||
@@ -401,17 +397,17 @@ message ListEntitiesFanResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  bool supports_oscillation = 5;
 | 
			
		||||
  bool supports_speed = 6;
 | 
			
		||||
  bool supports_direction = 7;
 | 
			
		||||
  int32 supported_speed_count = 8;
 | 
			
		||||
  bool disabled_by_default = 9;
 | 
			
		||||
  string icon = 10 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 10;
 | 
			
		||||
  EntityCategory entity_category = 11;
 | 
			
		||||
  repeated string supported_preset_modes = 12;
 | 
			
		||||
  uint32 device_id = 13 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 13;
 | 
			
		||||
}
 | 
			
		||||
enum FanSpeed {
 | 
			
		||||
  FAN_SPEED_LOW = 0;
 | 
			
		||||
@@ -436,14 +432,12 @@ message FanStateResponse {
 | 
			
		||||
  FanDirection direction = 5;
 | 
			
		||||
  int32 speed_level = 6;
 | 
			
		||||
  string preset_mode = 7;
 | 
			
		||||
  uint32 device_id = 8 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message FanCommandRequest {
 | 
			
		||||
  option (id) = 31;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_FAN";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  bool has_state = 2;
 | 
			
		||||
@@ -458,7 +452,6 @@ message FanCommandRequest {
 | 
			
		||||
  int32 speed_level = 11;
 | 
			
		||||
  bool has_preset_mode = 12;
 | 
			
		||||
  string preset_mode = 13;
 | 
			
		||||
  uint32 device_id = 14 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== LIGHT ====================
 | 
			
		||||
@@ -484,7 +477,7 @@ message ListEntitiesLightResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  repeated ColorMode supported_color_modes = 12;
 | 
			
		||||
  // next four supports_* are for legacy clients, newer clients should use color modes
 | 
			
		||||
@@ -496,9 +489,9 @@ message ListEntitiesLightResponse {
 | 
			
		||||
  float max_mireds = 10;
 | 
			
		||||
  repeated string effects = 11;
 | 
			
		||||
  bool disabled_by_default = 13;
 | 
			
		||||
  string icon = 14 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 14;
 | 
			
		||||
  EntityCategory entity_category = 15;
 | 
			
		||||
  uint32 device_id = 16 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 16;
 | 
			
		||||
}
 | 
			
		||||
message LightStateResponse {
 | 
			
		||||
  option (id) = 24;
 | 
			
		||||
@@ -520,14 +513,12 @@ message LightStateResponse {
 | 
			
		||||
  float cold_white = 12;
 | 
			
		||||
  float warm_white = 13;
 | 
			
		||||
  string effect = 9;
 | 
			
		||||
  uint32 device_id = 14 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message LightCommandRequest {
 | 
			
		||||
  option (id) = 32;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_LIGHT";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  bool has_state = 2;
 | 
			
		||||
@@ -556,7 +547,6 @@ message LightCommandRequest {
 | 
			
		||||
  uint32 flash_length = 17;
 | 
			
		||||
  bool has_effect = 18;
 | 
			
		||||
  string effect = 19;
 | 
			
		||||
  uint32 device_id = 28 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== SENSOR ====================
 | 
			
		||||
@@ -582,9 +572,9 @@ message ListEntitiesSensorResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  string unit_of_measurement = 6;
 | 
			
		||||
  int32 accuracy_decimals = 7;
 | 
			
		||||
  bool force_update = 8;
 | 
			
		||||
@@ -594,7 +584,7 @@ message ListEntitiesSensorResponse {
 | 
			
		||||
  SensorLastResetType legacy_last_reset_type = 11;
 | 
			
		||||
  bool disabled_by_default = 12;
 | 
			
		||||
  EntityCategory entity_category = 13;
 | 
			
		||||
  uint32 device_id = 14 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 14;
 | 
			
		||||
}
 | 
			
		||||
message SensorStateResponse {
 | 
			
		||||
  option (id) = 25;
 | 
			
		||||
@@ -608,7 +598,6 @@ message SensorStateResponse {
 | 
			
		||||
  // If the sensor does not have a valid state yet.
 | 
			
		||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
			
		||||
  bool missing_state = 3;
 | 
			
		||||
  uint32 device_id = 4 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== SWITCH ====================
 | 
			
		||||
@@ -621,14 +610,14 @@ message ListEntitiesSwitchResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool assumed_state = 6;
 | 
			
		||||
  bool disabled_by_default = 7;
 | 
			
		||||
  EntityCategory entity_category = 8;
 | 
			
		||||
  string device_class = 9;
 | 
			
		||||
  uint32 device_id = 10 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 10;
 | 
			
		||||
}
 | 
			
		||||
message SwitchStateResponse {
 | 
			
		||||
  option (id) = 26;
 | 
			
		||||
@@ -639,18 +628,15 @@ message SwitchStateResponse {
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  bool state = 2;
 | 
			
		||||
  uint32 device_id = 3 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message SwitchCommandRequest {
 | 
			
		||||
  option (id) = 33;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_SWITCH";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  bool state = 2;
 | 
			
		||||
  uint32 device_id = 3 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== TEXT SENSOR ====================
 | 
			
		||||
@@ -663,13 +649,13 @@ message ListEntitiesTextSensorResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
  string device_class = 8;
 | 
			
		||||
  uint32 device_id = 9 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 9;
 | 
			
		||||
}
 | 
			
		||||
message TextSensorStateResponse {
 | 
			
		||||
  option (id) = 27;
 | 
			
		||||
@@ -683,7 +669,6 @@ message TextSensorStateResponse {
 | 
			
		||||
  // If the text sensor does not have a valid state yet.
 | 
			
		||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
			
		||||
  bool missing_state = 3;
 | 
			
		||||
  uint32 device_id = 4 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== SUBSCRIBE LOGS ====================
 | 
			
		||||
@@ -807,21 +792,18 @@ enum ServiceArgType {
 | 
			
		||||
  SERVICE_ARG_TYPE_STRING_ARRAY = 7;
 | 
			
		||||
}
 | 
			
		||||
message ListEntitiesServicesArgument {
 | 
			
		||||
  option (ifdef) = "USE_API_SERVICES";
 | 
			
		||||
  string name = 1;
 | 
			
		||||
  ServiceArgType type = 2;
 | 
			
		||||
}
 | 
			
		||||
message ListEntitiesServicesResponse {
 | 
			
		||||
  option (id) = 41;
 | 
			
		||||
  option (source) = SOURCE_SERVER;
 | 
			
		||||
  option (ifdef) = "USE_API_SERVICES";
 | 
			
		||||
 | 
			
		||||
  string name = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  repeated ListEntitiesServicesArgument args = 3;
 | 
			
		||||
}
 | 
			
		||||
message ExecuteServiceArgument {
 | 
			
		||||
  option (ifdef) = "USE_API_SERVICES";
 | 
			
		||||
  bool bool_ = 1;
 | 
			
		||||
  int32 legacy_int = 2;
 | 
			
		||||
  float float_ = 3;
 | 
			
		||||
@@ -837,7 +819,6 @@ message ExecuteServiceRequest {
 | 
			
		||||
  option (id) = 42;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (ifdef) = "USE_API_SERVICES";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  repeated ExecuteServiceArgument args = 2;
 | 
			
		||||
@@ -848,33 +829,31 @@ message ListEntitiesCameraResponse {
 | 
			
		||||
  option (id) = 43;
 | 
			
		||||
  option (base_class) = "InfoResponseProtoMessage";
 | 
			
		||||
  option (source) = SOURCE_SERVER;
 | 
			
		||||
  option (ifdef) = "USE_CAMERA";
 | 
			
		||||
  option (ifdef) = "USE_ESP32_CAMERA";
 | 
			
		||||
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
  bool disabled_by_default = 5;
 | 
			
		||||
  string icon = 6 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
  uint32 device_id = 8 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 8;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
message CameraImageResponse {
 | 
			
		||||
  option (id) = 44;
 | 
			
		||||
  option (base_class) = "StateResponseProtoMessage";
 | 
			
		||||
  option (source) = SOURCE_SERVER;
 | 
			
		||||
  option (ifdef) = "USE_CAMERA";
 | 
			
		||||
  option (ifdef) = "USE_ESP32_CAMERA";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  bytes data = 2;
 | 
			
		||||
  bool done = 3;
 | 
			
		||||
  uint32 device_id = 4 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message CameraImageRequest {
 | 
			
		||||
  option (id) = 45;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_CAMERA";
 | 
			
		||||
  option (ifdef) = "USE_ESP32_CAMERA";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
 | 
			
		||||
  bool single = 1;
 | 
			
		||||
@@ -937,7 +916,7 @@ message ListEntitiesClimateResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  bool supports_current_temperature = 5;
 | 
			
		||||
  bool supports_two_point_target_temperature = 6;
 | 
			
		||||
@@ -955,14 +934,14 @@ message ListEntitiesClimateResponse {
 | 
			
		||||
  repeated ClimatePreset supported_presets = 16;
 | 
			
		||||
  repeated string supported_custom_presets = 17;
 | 
			
		||||
  bool disabled_by_default = 18;
 | 
			
		||||
  string icon = 19 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 19;
 | 
			
		||||
  EntityCategory entity_category = 20;
 | 
			
		||||
  float visual_current_temperature_step = 21;
 | 
			
		||||
  bool supports_current_humidity = 22;
 | 
			
		||||
  bool supports_target_humidity = 23;
 | 
			
		||||
  float visual_min_humidity = 24;
 | 
			
		||||
  float visual_max_humidity = 25;
 | 
			
		||||
  uint32 device_id = 26 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 26;
 | 
			
		||||
}
 | 
			
		||||
message ClimateStateResponse {
 | 
			
		||||
  option (id) = 47;
 | 
			
		||||
@@ -987,14 +966,12 @@ message ClimateStateResponse {
 | 
			
		||||
  string custom_preset = 13;
 | 
			
		||||
  float current_humidity = 14;
 | 
			
		||||
  float target_humidity = 15;
 | 
			
		||||
  uint32 device_id = 16 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message ClimateCommandRequest {
 | 
			
		||||
  option (id) = 48;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_CLIMATE";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  bool has_mode = 2;
 | 
			
		||||
@@ -1020,7 +997,6 @@ message ClimateCommandRequest {
 | 
			
		||||
  string custom_preset = 21;
 | 
			
		||||
  bool has_target_humidity = 22;
 | 
			
		||||
  float target_humidity = 23;
 | 
			
		||||
  uint32 device_id = 24 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== NUMBER ====================
 | 
			
		||||
@@ -1038,9 +1014,9 @@ message ListEntitiesNumberResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  float min_value = 6;
 | 
			
		||||
  float max_value = 7;
 | 
			
		||||
  float step = 8;
 | 
			
		||||
@@ -1049,7 +1025,7 @@ message ListEntitiesNumberResponse {
 | 
			
		||||
  string unit_of_measurement = 11;
 | 
			
		||||
  NumberMode mode = 12;
 | 
			
		||||
  string device_class = 13;
 | 
			
		||||
  uint32 device_id = 14 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 14;
 | 
			
		||||
}
 | 
			
		||||
message NumberStateResponse {
 | 
			
		||||
  option (id) = 50;
 | 
			
		||||
@@ -1063,18 +1039,15 @@ message NumberStateResponse {
 | 
			
		||||
  // If the number does not have a valid state yet.
 | 
			
		||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
			
		||||
  bool missing_state = 3;
 | 
			
		||||
  uint32 device_id = 4 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message NumberCommandRequest {
 | 
			
		||||
  option (id) = 51;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_NUMBER";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  float state = 2;
 | 
			
		||||
  uint32 device_id = 3 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== SELECT ====================
 | 
			
		||||
@@ -1087,13 +1060,13 @@ message ListEntitiesSelectResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  repeated string options = 6;
 | 
			
		||||
  bool disabled_by_default = 7;
 | 
			
		||||
  EntityCategory entity_category = 8;
 | 
			
		||||
  uint32 device_id = 9 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 9;
 | 
			
		||||
}
 | 
			
		||||
message SelectStateResponse {
 | 
			
		||||
  option (id) = 53;
 | 
			
		||||
@@ -1107,18 +1080,15 @@ message SelectStateResponse {
 | 
			
		||||
  // If the select does not have a valid state yet.
 | 
			
		||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
			
		||||
  bool missing_state = 3;
 | 
			
		||||
  uint32 device_id = 4 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message SelectCommandRequest {
 | 
			
		||||
  option (id) = 54;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_SELECT";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  string state = 2;
 | 
			
		||||
  uint32 device_id = 3 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== SIREN ====================
 | 
			
		||||
@@ -1131,15 +1101,15 @@ message ListEntitiesSirenResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  repeated string tones = 7;
 | 
			
		||||
  bool supports_duration = 8;
 | 
			
		||||
  bool supports_volume = 9;
 | 
			
		||||
  EntityCategory entity_category = 10;
 | 
			
		||||
  uint32 device_id = 11 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 11;
 | 
			
		||||
}
 | 
			
		||||
message SirenStateResponse {
 | 
			
		||||
  option (id) = 56;
 | 
			
		||||
@@ -1150,14 +1120,12 @@ message SirenStateResponse {
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  bool state = 2;
 | 
			
		||||
  uint32 device_id = 3 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message SirenCommandRequest {
 | 
			
		||||
  option (id) = 57;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_SIREN";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  bool has_state = 2;
 | 
			
		||||
@@ -1168,7 +1136,6 @@ message SirenCommandRequest {
 | 
			
		||||
  uint32 duration = 7;
 | 
			
		||||
  bool has_volume = 8;
 | 
			
		||||
  float volume = 9;
 | 
			
		||||
  uint32 device_id = 10 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== LOCK ====================
 | 
			
		||||
@@ -1194,9 +1161,9 @@ message ListEntitiesLockResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
  bool assumed_state = 8;
 | 
			
		||||
@@ -1206,7 +1173,7 @@ message ListEntitiesLockResponse {
 | 
			
		||||
 | 
			
		||||
  // Not yet implemented:
 | 
			
		||||
  string code_format = 11;
 | 
			
		||||
  uint32 device_id = 12 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 12;
 | 
			
		||||
}
 | 
			
		||||
message LockStateResponse {
 | 
			
		||||
  option (id) = 59;
 | 
			
		||||
@@ -1216,21 +1183,18 @@ message LockStateResponse {
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  LockState state = 2;
 | 
			
		||||
  uint32 device_id = 3 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message LockCommandRequest {
 | 
			
		||||
  option (id) = 60;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_LOCK";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  LockCommand command = 2;
 | 
			
		||||
 | 
			
		||||
  // Not yet implemented:
 | 
			
		||||
  bool has_code = 3;
 | 
			
		||||
  string code = 4;
 | 
			
		||||
  uint32 device_id = 5 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== BUTTON ====================
 | 
			
		||||
@@ -1243,23 +1207,21 @@ message ListEntitiesButtonResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
  string device_class = 8;
 | 
			
		||||
  uint32 device_id = 9 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 9;
 | 
			
		||||
}
 | 
			
		||||
message ButtonCommandRequest {
 | 
			
		||||
  option (id) = 62;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_BUTTON";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  uint32 device_id = 2 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== MEDIA PLAYER ====================
 | 
			
		||||
@@ -1298,9 +1260,9 @@ message ListEntitiesMediaPlayerResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
 | 
			
		||||
@@ -1308,7 +1270,7 @@ message ListEntitiesMediaPlayerResponse {
 | 
			
		||||
 | 
			
		||||
  repeated MediaPlayerSupportedFormat supported_formats = 9;
 | 
			
		||||
 | 
			
		||||
  uint32 device_id = 10 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 10;
 | 
			
		||||
}
 | 
			
		||||
message MediaPlayerStateResponse {
 | 
			
		||||
  option (id) = 64;
 | 
			
		||||
@@ -1320,14 +1282,12 @@ message MediaPlayerStateResponse {
 | 
			
		||||
  MediaPlayerState state = 2;
 | 
			
		||||
  float volume = 3;
 | 
			
		||||
  bool muted = 4;
 | 
			
		||||
  uint32 device_id = 5 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message MediaPlayerCommandRequest {
 | 
			
		||||
  option (id) = 65;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_MEDIA_PLAYER";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
 | 
			
		||||
@@ -1342,7 +1302,6 @@ message MediaPlayerCommandRequest {
 | 
			
		||||
 | 
			
		||||
  bool has_announcement = 8;
 | 
			
		||||
  bool announcement = 9;
 | 
			
		||||
  uint32 device_id = 10 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== BLUETOOTH ====================
 | 
			
		||||
@@ -1381,7 +1340,7 @@ message BluetoothLERawAdvertisement {
 | 
			
		||||
  sint32 rssi = 2;
 | 
			
		||||
  uint32 address_type = 3;
 | 
			
		||||
 | 
			
		||||
  bytes data = 4 [(fixed_array_size) = 62];
 | 
			
		||||
  bytes data = 4;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
message BluetoothLERawAdvertisementsResponse {
 | 
			
		||||
@@ -1845,14 +1804,14 @@ message ListEntitiesAlarmControlPanelResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
  uint32 supported_features = 8;
 | 
			
		||||
  bool requires_code = 9;
 | 
			
		||||
  bool requires_code_to_arm = 10;
 | 
			
		||||
  uint32 device_id = 11 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 11;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
message AlarmControlPanelStateResponse {
 | 
			
		||||
@@ -1863,7 +1822,6 @@ message AlarmControlPanelStateResponse {
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  AlarmControlPanelState state = 2;
 | 
			
		||||
  uint32 device_id = 3 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
message AlarmControlPanelCommandRequest {
 | 
			
		||||
@@ -1871,11 +1829,9 @@ message AlarmControlPanelCommandRequest {
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_ALARM_CONTROL_PANEL";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  AlarmControlPanelStateCommand command = 2;
 | 
			
		||||
  string code = 3;
 | 
			
		||||
  uint32 device_id = 4 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ===================== TEXT =====================
 | 
			
		||||
@@ -1892,8 +1848,8 @@ message ListEntitiesTextResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
 | 
			
		||||
@@ -1901,7 +1857,7 @@ message ListEntitiesTextResponse {
 | 
			
		||||
  uint32 max_length = 9;
 | 
			
		||||
  string pattern = 10;
 | 
			
		||||
  TextMode mode = 11;
 | 
			
		||||
  uint32 device_id = 12 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 12;
 | 
			
		||||
}
 | 
			
		||||
message TextStateResponse {
 | 
			
		||||
  option (id) = 98;
 | 
			
		||||
@@ -1915,18 +1871,15 @@ message TextStateResponse {
 | 
			
		||||
  // If the Text does not have a valid state yet.
 | 
			
		||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
			
		||||
  bool missing_state = 3;
 | 
			
		||||
  uint32 device_id = 4 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message TextCommandRequest {
 | 
			
		||||
  option (id) = 99;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_TEXT";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  string state = 2;
 | 
			
		||||
  uint32 device_id = 3 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@@ -1940,12 +1893,12 @@ message ListEntitiesDateResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
  uint32 device_id = 8 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 8;
 | 
			
		||||
}
 | 
			
		||||
message DateStateResponse {
 | 
			
		||||
  option (id) = 101;
 | 
			
		||||
@@ -1961,20 +1914,17 @@ message DateStateResponse {
 | 
			
		||||
  uint32 year = 3;
 | 
			
		||||
  uint32 month = 4;
 | 
			
		||||
  uint32 day = 5;
 | 
			
		||||
  uint32 device_id = 6 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message DateCommandRequest {
 | 
			
		||||
  option (id) = 102;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_DATETIME_DATE";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  uint32 year = 2;
 | 
			
		||||
  uint32 month = 3;
 | 
			
		||||
  uint32 day = 4;
 | 
			
		||||
  uint32 device_id = 5 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== DATETIME TIME ====================
 | 
			
		||||
@@ -1987,12 +1937,12 @@ message ListEntitiesTimeResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
  uint32 device_id = 8 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 8;
 | 
			
		||||
}
 | 
			
		||||
message TimeStateResponse {
 | 
			
		||||
  option (id) = 104;
 | 
			
		||||
@@ -2008,20 +1958,17 @@ message TimeStateResponse {
 | 
			
		||||
  uint32 hour = 3;
 | 
			
		||||
  uint32 minute = 4;
 | 
			
		||||
  uint32 second = 5;
 | 
			
		||||
  uint32 device_id = 6 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message TimeCommandRequest {
 | 
			
		||||
  option (id) = 105;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_DATETIME_TIME";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  uint32 hour = 2;
 | 
			
		||||
  uint32 minute = 3;
 | 
			
		||||
  uint32 second = 4;
 | 
			
		||||
  uint32 device_id = 5 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== EVENT ====================
 | 
			
		||||
@@ -2034,15 +1981,15 @@ message ListEntitiesEventResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
  string device_class = 8;
 | 
			
		||||
 | 
			
		||||
  repeated string event_types = 9;
 | 
			
		||||
  uint32 device_id = 10 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 10;
 | 
			
		||||
}
 | 
			
		||||
message EventResponse {
 | 
			
		||||
  option (id) = 108;
 | 
			
		||||
@@ -2052,7 +1999,6 @@ message EventResponse {
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  string event_type = 2;
 | 
			
		||||
  uint32 device_id = 3 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== VALVE ====================
 | 
			
		||||
@@ -2065,9 +2011,9 @@ message ListEntitiesValveResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
  string device_class = 8;
 | 
			
		||||
@@ -2075,7 +2021,7 @@ message ListEntitiesValveResponse {
 | 
			
		||||
  bool assumed_state = 9;
 | 
			
		||||
  bool supports_position = 10;
 | 
			
		||||
  bool supports_stop = 11;
 | 
			
		||||
  uint32 device_id = 12 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 12;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
enum ValveOperation {
 | 
			
		||||
@@ -2093,7 +2039,6 @@ message ValveStateResponse {
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  float position = 2;
 | 
			
		||||
  ValveOperation current_operation = 3;
 | 
			
		||||
  uint32 device_id = 4 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
message ValveCommandRequest {
 | 
			
		||||
@@ -2101,13 +2046,11 @@ message ValveCommandRequest {
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_VALVE";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  bool has_position = 2;
 | 
			
		||||
  float position = 3;
 | 
			
		||||
  bool stop = 4;
 | 
			
		||||
  uint32 device_id = 5 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== DATETIME DATETIME ====================
 | 
			
		||||
@@ -2120,12 +2063,12 @@ message ListEntitiesDateTimeResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
  uint32 device_id = 8 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 8;
 | 
			
		||||
}
 | 
			
		||||
message DateTimeStateResponse {
 | 
			
		||||
  option (id) = 113;
 | 
			
		||||
@@ -2139,18 +2082,15 @@ message DateTimeStateResponse {
 | 
			
		||||
  // Equivalent to `!obj->has_state()` - inverse logic to make state packets smaller
 | 
			
		||||
  bool missing_state = 2;
 | 
			
		||||
  fixed32 epoch_seconds = 3;
 | 
			
		||||
  uint32 device_id = 4 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
message DateTimeCommandRequest {
 | 
			
		||||
  option (id) = 114;
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_DATETIME_DATETIME";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  fixed32 epoch_seconds = 2;
 | 
			
		||||
  uint32 device_id = 3 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ==================== UPDATE ====================
 | 
			
		||||
@@ -2163,13 +2103,13 @@ message ListEntitiesUpdateResponse {
 | 
			
		||||
  string object_id = 1;
 | 
			
		||||
  fixed32 key = 2;
 | 
			
		||||
  string name = 3;
 | 
			
		||||
  reserved 4; // Deprecated: was string unique_id
 | 
			
		||||
  string unique_id = 4;
 | 
			
		||||
 | 
			
		||||
  string icon = 5 [(field_ifdef) = "USE_ENTITY_ICON"];
 | 
			
		||||
  string icon = 5;
 | 
			
		||||
  bool disabled_by_default = 6;
 | 
			
		||||
  EntityCategory entity_category = 7;
 | 
			
		||||
  string device_class = 8;
 | 
			
		||||
  uint32 device_id = 9 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
  uint32 device_id = 9;
 | 
			
		||||
}
 | 
			
		||||
message UpdateStateResponse {
 | 
			
		||||
  option (id) = 117;
 | 
			
		||||
@@ -2188,7 +2128,6 @@ message UpdateStateResponse {
 | 
			
		||||
  string title = 8;
 | 
			
		||||
  string release_summary = 9;
 | 
			
		||||
  string release_url = 10;
 | 
			
		||||
  uint32 device_id = 11 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
enum UpdateCommand {
 | 
			
		||||
  UPDATE_COMMAND_NONE = 0;
 | 
			
		||||
@@ -2200,9 +2139,7 @@ message UpdateCommandRequest {
 | 
			
		||||
  option (source) = SOURCE_CLIENT;
 | 
			
		||||
  option (ifdef) = "USE_UPDATE";
 | 
			
		||||
  option (no_delay) = true;
 | 
			
		||||
  option (base_class) = "CommandProtoMessage";
 | 
			
		||||
 | 
			
		||||
  fixed32 key = 1;
 | 
			
		||||
  UpdateCommand command = 2;
 | 
			
		||||
  uint32 device_id = 3 [(field_ifdef) = "USE_DEVICES"];
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -18,13 +18,10 @@ namespace api {
 | 
			
		||||
 | 
			
		||||
// Keepalive timeout in milliseconds
 | 
			
		||||
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 {
 | 
			
		||||
 public:
 | 
			
		||||
  friend class APIServer;
 | 
			
		||||
  friend class ListEntitiesIterator;
 | 
			
		||||
  APIConnection(std::unique_ptr<socket::Socket> socket, APIServer *parent);
 | 
			
		||||
  virtual ~APIConnection();
 | 
			
		||||
 | 
			
		||||
@@ -33,85 +30,104 @@ class APIConnection : public APIServerConnection {
 | 
			
		||||
 | 
			
		||||
  bool 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
 | 
			
		||||
  bool send_binary_sensor_state(binary_sensor::BinarySensor *binary_sensor);
 | 
			
		||||
  void send_binary_sensor_info(binary_sensor::BinarySensor *binary_sensor);
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_COVER
 | 
			
		||||
  bool send_cover_state(cover::Cover *cover);
 | 
			
		||||
  void send_cover_info(cover::Cover *cover);
 | 
			
		||||
  void cover_command(const CoverCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_FAN
 | 
			
		||||
  bool send_fan_state(fan::Fan *fan);
 | 
			
		||||
  void send_fan_info(fan::Fan *fan);
 | 
			
		||||
  void fan_command(const FanCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_LIGHT
 | 
			
		||||
  bool send_light_state(light::LightState *light);
 | 
			
		||||
  void send_light_info(light::LightState *light);
 | 
			
		||||
  void light_command(const LightCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SENSOR
 | 
			
		||||
  bool send_sensor_state(sensor::Sensor *sensor);
 | 
			
		||||
  void send_sensor_info(sensor::Sensor *sensor);
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SWITCH
 | 
			
		||||
  bool send_switch_state(switch_::Switch *a_switch);
 | 
			
		||||
  void send_switch_info(switch_::Switch *a_switch);
 | 
			
		||||
  void switch_command(const SwitchCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_TEXT_SENSOR
 | 
			
		||||
  bool send_text_sensor_state(text_sensor::TextSensor *text_sensor);
 | 
			
		||||
  void send_text_sensor_info(text_sensor::TextSensor *text_sensor);
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CAMERA
 | 
			
		||||
  void set_camera_state(std::shared_ptr<camera::CameraImage> image);
 | 
			
		||||
#ifdef USE_ESP32_CAMERA
 | 
			
		||||
  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;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CLIMATE
 | 
			
		||||
  bool send_climate_state(climate::Climate *climate);
 | 
			
		||||
  void send_climate_info(climate::Climate *climate);
 | 
			
		||||
  void climate_command(const ClimateCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_NUMBER
 | 
			
		||||
  bool send_number_state(number::Number *number);
 | 
			
		||||
  void send_number_info(number::Number *number);
 | 
			
		||||
  void number_command(const NumberCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_DATETIME_DATE
 | 
			
		||||
  bool send_date_state(datetime::DateEntity *date);
 | 
			
		||||
  void send_date_info(datetime::DateEntity *date);
 | 
			
		||||
  void date_command(const DateCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_DATETIME_TIME
 | 
			
		||||
  bool send_time_state(datetime::TimeEntity *time);
 | 
			
		||||
  void send_time_info(datetime::TimeEntity *time);
 | 
			
		||||
  void time_command(const TimeCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_DATETIME_DATETIME
 | 
			
		||||
  bool send_datetime_state(datetime::DateTimeEntity *datetime);
 | 
			
		||||
  void send_datetime_info(datetime::DateTimeEntity *datetime);
 | 
			
		||||
  void datetime_command(const DateTimeCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_TEXT
 | 
			
		||||
  bool send_text_state(text::Text *text);
 | 
			
		||||
  void send_text_info(text::Text *text);
 | 
			
		||||
  void text_command(const TextCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SELECT
 | 
			
		||||
  bool send_select_state(select::Select *select);
 | 
			
		||||
  void send_select_info(select::Select *select);
 | 
			
		||||
  void select_command(const SelectCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BUTTON
 | 
			
		||||
  void send_button_info(button::Button *button);
 | 
			
		||||
  void button_command(const ButtonCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_LOCK
 | 
			
		||||
  bool send_lock_state(lock::Lock *a_lock);
 | 
			
		||||
  void send_lock_info(lock::Lock *a_lock);
 | 
			
		||||
  void lock_command(const LockCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_VALVE
 | 
			
		||||
  bool send_valve_state(valve::Valve *valve);
 | 
			
		||||
  void send_valve_info(valve::Valve *valve);
 | 
			
		||||
  void valve_command(const ValveCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_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;
 | 
			
		||||
#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) {
 | 
			
		||||
    if (!this->flags_.service_call_subscription)
 | 
			
		||||
    if (!this->service_call_subscription_)
 | 
			
		||||
      return;
 | 
			
		||||
    this->send_message(call, HomeassistantServiceResponse::MESSAGE_TYPE);
 | 
			
		||||
    this->send_message(call);
 | 
			
		||||
  }
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
  void subscribe_bluetooth_le_advertisements(const SubscribeBluetoothLEAdvertisementsRequest &msg) override;
 | 
			
		||||
@@ -133,7 +149,7 @@ class APIConnection : public APIServerConnection {
 | 
			
		||||
#ifdef USE_HOMEASSISTANT_TIME
 | 
			
		||||
  void send_time_request() {
 | 
			
		||||
    GetTimeRequest req;
 | 
			
		||||
    this->send_message(req, GetTimeRequest::MESSAGE_TYPE);
 | 
			
		||||
    this->send_message(req);
 | 
			
		||||
  }
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
@@ -151,22 +167,26 @@ class APIConnection : public APIServerConnection {
 | 
			
		||||
 | 
			
		||||
#ifdef USE_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;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifdef USE_EVENT
 | 
			
		||||
  void send_event(event::Event *event, const std::string &event_type);
 | 
			
		||||
  void send_event_info(event::Event *event);
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifdef USE_UPDATE
 | 
			
		||||
  bool send_update_state(update::UpdateEntity *update);
 | 
			
		||||
  void send_update_info(update::UpdateEntity *update);
 | 
			
		||||
  void update_command(const UpdateCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
  void on_disconnect_response(const DisconnectResponse &value) override;
 | 
			
		||||
  void on_ping_response(const PingResponse &value) override {
 | 
			
		||||
    // 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;
 | 
			
		||||
#ifdef USE_HOMEASSISTANT_TIME
 | 
			
		||||
@@ -179,37 +199,31 @@ class APIConnection : public APIServerConnection {
 | 
			
		||||
  DeviceInfoResponse device_info(const DeviceInfoRequest &msg) override;
 | 
			
		||||
  void list_entities(const ListEntitiesRequest &msg) override { this->list_entities_iterator_.begin(); }
 | 
			
		||||
  void subscribe_states(const SubscribeStatesRequest &msg) override {
 | 
			
		||||
    this->flags_.state_subscription = true;
 | 
			
		||||
    this->state_subscription_ = true;
 | 
			
		||||
    this->initial_state_iterator_.begin();
 | 
			
		||||
  }
 | 
			
		||||
  void subscribe_logs(const SubscribeLogsRequest &msg) override {
 | 
			
		||||
    this->flags_.log_subscription = msg.level;
 | 
			
		||||
    this->log_subscription_ = msg.level;
 | 
			
		||||
    if (msg.dump_config)
 | 
			
		||||
      App.schedule_dump_config();
 | 
			
		||||
  }
 | 
			
		||||
  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;
 | 
			
		||||
  GetTimeResponse get_time(const GetTimeRequest &msg) override {
 | 
			
		||||
    // TODO
 | 
			
		||||
    return {};
 | 
			
		||||
  }
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
  void execute_service(const ExecuteServiceRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_API_NOISE
 | 
			
		||||
  NoiseEncryptionSetKeyResponse noise_encryption_set_key(const NoiseEncryptionSetKeyRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
  bool is_authenticated() override {
 | 
			
		||||
    return static_cast<ConnectionState>(this->flags_.connection_state) == ConnectionState::AUTHENTICATED;
 | 
			
		||||
  }
 | 
			
		||||
  bool is_authenticated() override { return this->connection_state_ == ConnectionState::AUTHENTICATED; }
 | 
			
		||||
  bool is_connection_setup() override {
 | 
			
		||||
    return static_cast<ConnectionState>(this->flags_.connection_state) == ConnectionState::CONNECTED ||
 | 
			
		||||
           this->is_authenticated();
 | 
			
		||||
    return this->connection_state_ == ConnectionState ::CONNECTED || this->is_authenticated();
 | 
			
		||||
  }
 | 
			
		||||
  uint8_t get_log_subscription_level() const { return this->flags_.log_subscription; }
 | 
			
		||||
  void on_fatal_error() override;
 | 
			
		||||
  void on_unauthenticated_access() override;
 | 
			
		||||
  void on_no_setup_connection() override;
 | 
			
		||||
@@ -259,7 +273,7 @@ class APIConnection : public APIServerConnection {
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  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 {
 | 
			
		||||
    if (this->client_info_ == this->client_peername_) {
 | 
			
		||||
@@ -274,61 +288,32 @@ class APIConnection : public APIServerConnection {
 | 
			
		||||
  ProtoWriteBuffer allocate_batch_message_buffer(uint16_t size);
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  // Helper function to handle authentication completion
 | 
			
		||||
  void complete_authentication_();
 | 
			
		||||
 | 
			
		||||
  // Non-template helper to encode any ProtoMessage
 | 
			
		||||
  static uint16_t encode_message_to_buffer(ProtoMessage &msg, uint8_t message_type, APIConnection *conn,
 | 
			
		||||
                                           uint32_t remaining_size, bool is_single);
 | 
			
		||||
 | 
			
		||||
  // Helper to fill entity state base and encode message
 | 
			
		||||
  static uint16_t fill_and_encode_entity_state(EntityBase *entity, StateResponseProtoMessage &msg, uint8_t message_type,
 | 
			
		||||
                                               APIConnection *conn, uint32_t remaining_size, bool is_single) {
 | 
			
		||||
    msg.key = entity->get_object_id_hash();
 | 
			
		||||
#ifdef USE_DEVICES
 | 
			
		||||
    msg.device_id = entity->get_device_id();
 | 
			
		||||
#endif
 | 
			
		||||
    return encode_message_to_buffer(msg, message_type, conn, remaining_size, is_single);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // Helper to fill entity info base and encode message
 | 
			
		||||
  static uint16_t fill_and_encode_entity_info(EntityBase *entity, InfoResponseProtoMessage &msg, uint8_t message_type,
 | 
			
		||||
                                              APIConnection *conn, uint32_t remaining_size, bool is_single) {
 | 
			
		||||
  // Helper function to fill common entity info fields
 | 
			
		||||
  static void fill_entity_info_base(esphome::EntityBase *entity, InfoResponseProtoMessage &response) {
 | 
			
		||||
    // Set common fields that are shared by all entity types
 | 
			
		||||
    msg.key = entity->get_object_id_hash();
 | 
			
		||||
    msg.object_id = entity->get_object_id();
 | 
			
		||||
    response.key = entity->get_object_id_hash();
 | 
			
		||||
    response.object_id = entity->get_object_id();
 | 
			
		||||
 | 
			
		||||
    if (entity->has_own_name())
 | 
			
		||||
      msg.name = entity->get_name();
 | 
			
		||||
      response.name = entity->get_name();
 | 
			
		||||
 | 
			
		||||
    // Set common EntityBase properties
 | 
			
		||||
    msg.icon = entity->get_icon();
 | 
			
		||||
    msg.disabled_by_default = entity->is_disabled_by_default();
 | 
			
		||||
    msg.entity_category = static_cast<enums::EntityCategory>(entity->get_entity_category());
 | 
			
		||||
    response.icon = entity->get_icon();
 | 
			
		||||
    response.disabled_by_default = entity->is_disabled_by_default();
 | 
			
		||||
    response.entity_category = static_cast<enums::EntityCategory>(entity->get_entity_category());
 | 
			
		||||
#ifdef USE_DEVICES
 | 
			
		||||
    msg.device_id = entity->get_device_id();
 | 
			
		||||
    response.device_id = entity->get_device_id();
 | 
			
		||||
#endif
 | 
			
		||||
    return encode_message_to_buffer(msg, message_type, conn, remaining_size, 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();
 | 
			
		||||
  // Helper function to fill common entity state fields
 | 
			
		||||
  static void fill_entity_state_base(esphome::EntityBase *entity, StateResponseProtoMessage &response) {
 | 
			
		||||
    response.key = entity->get_object_id_hash();
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
    // 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_();
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  // Non-template helper to encode any ProtoMessage
 | 
			
		||||
  static uint16_t encode_message_to_buffer(ProtoMessage &msg, uint16_t message_type, APIConnection *conn,
 | 
			
		||||
                                           uint32_t remaining_size, bool is_single);
 | 
			
		||||
 | 
			
		||||
#ifdef USE_BINARY_SENSOR
 | 
			
		||||
  static uint16_t try_send_binary_sensor_state(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
			
		||||
@@ -440,7 +425,7 @@ class APIConnection : public APIServerConnection {
 | 
			
		||||
  static uint16_t try_send_update_info(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
			
		||||
                                       bool is_single);
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CAMERA
 | 
			
		||||
#ifdef USE_ESP32_CAMERA
 | 
			
		||||
  static uint16_t try_send_camera_info(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
			
		||||
                                       bool is_single);
 | 
			
		||||
#endif
 | 
			
		||||
@@ -453,82 +438,141 @@ class APIConnection : public APIServerConnection {
 | 
			
		||||
  static uint16_t try_send_disconnect_request(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
			
		||||
                                              bool is_single);
 | 
			
		||||
 | 
			
		||||
  // Batch message method for ping requests
 | 
			
		||||
  static uint16_t try_send_ping_request(EntityBase *entity, APIConnection *conn, uint32_t remaining_size,
 | 
			
		||||
                                        bool is_single);
 | 
			
		||||
  // Helper function to get estimated message size for buffer pre-allocation
 | 
			
		||||
  static uint16_t get_estimated_message_size(uint16_t message_type);
 | 
			
		||||
 | 
			
		||||
  // === Optimal member ordering for 32-bit systems ===
 | 
			
		||||
 | 
			
		||||
  // Group 1: Pointers (4 bytes each on 32-bit)
 | 
			
		||||
  // Pointers first (4 bytes each, naturally aligned)
 | 
			
		||||
  std::unique_ptr<APIFrameHelper> helper_;
 | 
			
		||||
  APIServer *parent_;
 | 
			
		||||
 | 
			
		||||
  // Group 2: Larger objects (must be 4-byte aligned)
 | 
			
		||||
  // These contain vectors/pointers internally, so putting them early ensures good alignment
 | 
			
		||||
  InitialStateIterator initial_state_iterator_;
 | 
			
		||||
  ListEntitiesIterator list_entities_iterator_;
 | 
			
		||||
#ifdef USE_CAMERA
 | 
			
		||||
  std::unique_ptr<camera::CameraImageReader> image_reader_;
 | 
			
		||||
#endif
 | 
			
		||||
  // 4-byte aligned types
 | 
			
		||||
  uint32_t last_traffic_;
 | 
			
		||||
  uint32_t next_ping_retry_{0};
 | 
			
		||||
  int state_subs_at_ = -1;
 | 
			
		||||
 | 
			
		||||
  // 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_peername_;
 | 
			
		||||
 | 
			
		||||
  // Group 4: 4-byte types
 | 
			
		||||
  uint32_t last_traffic_;
 | 
			
		||||
  int state_subs_at_ = -1;
 | 
			
		||||
  // 2-byte aligned types
 | 
			
		||||
  uint16_t client_api_version_major_{0};
 | 
			
		||||
  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
 | 
			
		||||
  using MessageCreatorPtr = uint16_t (*)(EntityBase *, APIConnection *, uint32_t remaining_size, bool is_single);
 | 
			
		||||
 | 
			
		||||
  // Optimized MessageCreator class using tagged pointer
 | 
			
		||||
  class MessageCreator {
 | 
			
		||||
    // Ensure pointer alignment allows LSB tagging
 | 
			
		||||
    static_assert(alignof(std::string *) > 1, "String pointer alignment must be > 1 for LSB tagging");
 | 
			
		||||
 | 
			
		||||
   public:
 | 
			
		||||
    // 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
 | 
			
		||||
    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
 | 
			
		||||
    MessageCreator(const MessageCreator &other) = delete;
 | 
			
		||||
    MessageCreator &operator=(const MessageCreator &other) = delete;
 | 
			
		||||
    // Copy constructor
 | 
			
		||||
    MessageCreator(const MessageCreator &other) {
 | 
			
		||||
      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
 | 
			
		||||
    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
 | 
			
		||||
    MessageCreator &operator=(MessageCreator &&other) noexcept {
 | 
			
		||||
    // Assignment operators (needed for batch deduplication)
 | 
			
		||||
    MessageCreator &operator=(const MessageCreator &other) {
 | 
			
		||||
      if (this != &other) {
 | 
			
		||||
        // IMPORTANT: Caller must ensure cleanup() was called if this contains a string!
 | 
			
		||||
        // In our usage, this happens in add_item() deduplication and vector::erase()
 | 
			
		||||
        // Clean up current string data if needed
 | 
			
		||||
        if (has_tagged_string_ptr_()) {
 | 
			
		||||
          delete get_string_ptr_();
 | 
			
		||||
        }
 | 
			
		||||
        // 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_;
 | 
			
		||||
        other.data_.function_ptr = nullptr;
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
      return *this;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Call operator - uses message_type to determine union type
 | 
			
		||||
    uint16_t operator()(EntityBase *entity, APIConnection *conn, uint32_t remaining_size, bool is_single,
 | 
			
		||||
                        uint8_t message_type) const;
 | 
			
		||||
    MessageCreator &operator=(MessageCreator &&other) noexcept {
 | 
			
		||||
      if (this != &other) {
 | 
			
		||||
        // Clean up current string data if needed
 | 
			
		||||
        if (has_tagged_string_ptr_()) {
 | 
			
		||||
          delete get_string_ptr_();
 | 
			
		||||
        }
 | 
			
		||||
        // Move data
 | 
			
		||||
        data_ = other.data_;
 | 
			
		||||
        // Reset other to safe state
 | 
			
		||||
        other.data_.ptr = nullptr;
 | 
			
		||||
      }
 | 
			
		||||
      return *this;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Manual cleanup method - must be called before destruction for string types
 | 
			
		||||
    void cleanup(uint8_t message_type) {
 | 
			
		||||
#ifdef USE_EVENT
 | 
			
		||||
      if (message_type == EventResponse::MESSAGE_TYPE && data_.string_ptr != nullptr) {
 | 
			
		||||
        delete data_.string_ptr;
 | 
			
		||||
        data_.string_ptr = nullptr;
 | 
			
		||||
      }
 | 
			
		||||
#endif
 | 
			
		||||
    }
 | 
			
		||||
    // 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:
 | 
			
		||||
    union Data {
 | 
			
		||||
      MessageCreatorPtr function_ptr;
 | 
			
		||||
      std::string *string_ptr;
 | 
			
		||||
    } data_;  // 4 bytes on 32-bit, 8 bytes on 64-bit - same as before
 | 
			
		||||
    // Check if this contains a string pointer
 | 
			
		||||
    bool has_tagged_string_ptr_() const { return (data_.tagged & 1) != 0; }
 | 
			
		||||
 | 
			
		||||
    // 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
 | 
			
		||||
@@ -536,96 +580,33 @@ class APIConnection : public APIServerConnection {
 | 
			
		||||
    struct BatchItem {
 | 
			
		||||
      EntityBase *entity;      // Entity pointer
 | 
			
		||||
      MessageCreator creator;  // Function that creates the message when needed
 | 
			
		||||
      uint8_t message_type;    // Message type for overhead calculation (max 255)
 | 
			
		||||
      uint8_t estimated_size;  // Estimated message size (max 255 bytes)
 | 
			
		||||
      uint16_t message_type;   // Message type for overhead calculation
 | 
			
		||||
 | 
			
		||||
      // Constructor for creating BatchItem
 | 
			
		||||
      BatchItem(EntityBase *entity, MessageCreator creator, uint8_t message_type, uint8_t estimated_size)
 | 
			
		||||
          : entity(entity), creator(std::move(creator)), message_type(message_type), estimated_size(estimated_size) {}
 | 
			
		||||
      BatchItem(EntityBase *entity, MessageCreator creator, uint16_t message_type)
 | 
			
		||||
          : entity(entity), creator(std::move(creator)), message_type(message_type) {}
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    std::vector<BatchItem> items;
 | 
			
		||||
    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() {
 | 
			
		||||
      // Pre-allocate capacity for typical batch sizes to avoid reallocation
 | 
			
		||||
      items.reserve(8);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    ~DeferredBatch() {
 | 
			
		||||
      // Ensure cleanup of any remaining items
 | 
			
		||||
      clear();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Add item to the batch
 | 
			
		||||
    void add_item(EntityBase *entity, MessageCreator creator, uint8_t message_type, uint8_t estimated_size);
 | 
			
		||||
    // 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 add_item(EntityBase *entity, MessageCreator creator, uint16_t message_type);
 | 
			
		||||
    void clear() {
 | 
			
		||||
      cleanup_items_(items.size());
 | 
			
		||||
      items.clear();
 | 
			
		||||
      batch_scheduled = false;
 | 
			
		||||
      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(); }
 | 
			
		||||
    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_;
 | 
			
		||||
 | 
			
		||||
  // 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;
 | 
			
		||||
  // Message will use 8 more bytes than the minimum size, and typical
 | 
			
		||||
  // MTU is 1500. Sometimes users will see as low as 1460 MTU.
 | 
			
		||||
@@ -638,72 +619,23 @@ class APIConnection : public APIServerConnection {
 | 
			
		||||
  // to send in one go. This is the maximum size of a single packet
 | 
			
		||||
  // that can be sent over the network.
 | 
			
		||||
  // 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_();
 | 
			
		||||
  void process_batch_();
 | 
			
		||||
  void clear_batch_() {
 | 
			
		||||
    this->deferred_batch_.clear();
 | 
			
		||||
    this->flags_.batch_scheduled = false;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
  // Helper to log a proto message from a MessageCreator object
 | 
			
		||||
  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);
 | 
			
		||||
  }
 | 
			
		||||
  // State for batch buffer allocation
 | 
			
		||||
  bool batch_first_message_{false};
 | 
			
		||||
 | 
			
		||||
  // 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) {
 | 
			
		||||
    this->deferred_batch_.add_item(entity, std::move(creator), message_type, estimated_size);
 | 
			
		||||
  bool schedule_message_(EntityBase *entity, MessageCreator creator, uint16_t message_type) {
 | 
			
		||||
    this->deferred_batch_.add_item(entity, std::move(creator), message_type);
 | 
			
		||||
    return this->schedule_batch_();
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // Overload for function pointers (for info messages and current state reads)
 | 
			
		||||
  bool schedule_message_(EntityBase *entity, MessageCreatorPtr function_ptr, uint8_t message_type,
 | 
			
		||||
                         uint8_t estimated_size) {
 | 
			
		||||
    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_();
 | 
			
		||||
  bool schedule_message_(EntityBase *entity, MessageCreatorPtr function_ptr, uint16_t message_type) {
 | 
			
		||||
    return schedule_message_(entity, MessageCreator(function_ptr), message_type);
 | 
			
		||||
  }
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -5,6 +5,7 @@
 | 
			
		||||
#include "esphome/core/helpers.h"
 | 
			
		||||
#include "esphome/core/log.h"
 | 
			
		||||
#include "proto.h"
 | 
			
		||||
#include "api_pb2_size.h"
 | 
			
		||||
#include <cstring>
 | 
			
		||||
#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__)
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
//#define HELPER_LOG_PACKETS
 | 
			
		||||
 | 
			
		||||
@@ -342,9 +327,17 @@ APIError APINoiseFrameHelper::try_read_frame_(ParsedFrame *frame) {
 | 
			
		||||
    // no header information yet
 | 
			
		||||
    uint8_t to_read = 3 - rx_header_buf_len_;
 | 
			
		||||
    ssize_t received = this->socket_->read(&rx_header_buf_[rx_header_buf_len_], to_read);
 | 
			
		||||
    APIError err = handle_socket_read_result_(received);
 | 
			
		||||
    if (err != APIError::OK) {
 | 
			
		||||
      return err;
 | 
			
		||||
    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;
 | 
			
		||||
    }
 | 
			
		||||
    rx_header_buf_len_ += static_cast<uint8_t>(received);
 | 
			
		||||
    if (static_cast<uint8_t>(received) != to_read) {
 | 
			
		||||
@@ -379,9 +372,17 @@ APIError APINoiseFrameHelper::try_read_frame_(ParsedFrame *frame) {
 | 
			
		||||
    // more data to read
 | 
			
		||||
    uint16_t to_read = msg_size - rx_buf_len_;
 | 
			
		||||
    ssize_t received = this->socket_->read(&rx_buf_[rx_buf_len_], to_read);
 | 
			
		||||
    APIError err = handle_socket_read_result_(received);
 | 
			
		||||
    if (err != APIError::OK) {
 | 
			
		||||
      return err;
 | 
			
		||||
    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;
 | 
			
		||||
    }
 | 
			
		||||
    rx_buf_len_ += static_cast<uint16_t>(received);
 | 
			
		||||
    if (static_cast<uint16_t>(received) != to_read) {
 | 
			
		||||
@@ -612,15 +613,21 @@ APIError APINoiseFrameHelper::read_packet(ReadPacketBuffer *buffer) {
 | 
			
		||||
  buffer->type = type;
 | 
			
		||||
  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)
 | 
			
		||||
  buffer.get_buffer()->resize(buffer.get_buffer()->size() + frame_footer_size_);
 | 
			
		||||
  PacketInfo packet{type, 0,
 | 
			
		||||
                    static_cast<uint16_t>(buffer.get_buffer()->size() - frame_header_padding_ - frame_footer_size_)};
 | 
			
		||||
  return write_protobuf_packets(buffer, std::span<const PacketInfo>(&packet, 1));
 | 
			
		||||
  raw_buffer->resize(raw_buffer->size() + frame_footer_size_);
 | 
			
		||||
 | 
			
		||||
  // 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 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_();
 | 
			
		||||
  if (aerr != APIError::OK) {
 | 
			
		||||
    return aerr;
 | 
			
		||||
@@ -635,15 +642,18 @@ APIError APINoiseFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer, st
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  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_.reserve(packets.size());
 | 
			
		||||
 | 
			
		||||
  // We need to encrypt each packet in place
 | 
			
		||||
  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
 | 
			
		||||
    uint8_t *buf_start = buffer_data + packet.offset;
 | 
			
		||||
    uint8_t *buf_start = raw_buffer->data() + offset;
 | 
			
		||||
 | 
			
		||||
    // Write noise header
 | 
			
		||||
    buf_start[0] = 0x01;  // indicator
 | 
			
		||||
@@ -651,10 +661,10 @@ APIError APINoiseFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer, st
 | 
			
		||||
 | 
			
		||||
    // Write message header (to be encrypted)
 | 
			
		||||
    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 + 1] = static_cast<uint8_t>(packet.message_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 + 3] = static_cast<uint8_t>(packet.payload_size);       // data_len low byte
 | 
			
		||||
    buf_start[msg_offset + 0] = (uint8_t) (type >> 8);         // type high byte
 | 
			
		||||
    buf_start[msg_offset + 1] = (uint8_t) type;                // type low byte
 | 
			
		||||
    buf_start[msg_offset + 2] = (uint8_t) (payload_len >> 8);  // data_len high 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
 | 
			
		||||
 | 
			
		||||
    // Make sure we have space for MAC
 | 
			
		||||
@@ -663,8 +673,7 @@ APIError APINoiseFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer, st
 | 
			
		||||
    // Encrypt the message in place
 | 
			
		||||
    NoiseBuffer mbuf;
 | 
			
		||||
    noise_buffer_init(mbuf);
 | 
			
		||||
    noise_buffer_set_inout(mbuf, buf_start + msg_offset, 4 + packet.payload_size,
 | 
			
		||||
                           4 + packet.payload_size + frame_footer_size_);
 | 
			
		||||
    noise_buffer_set_inout(mbuf, buf_start + msg_offset, msg_len, msg_len + frame_footer_size_);
 | 
			
		||||
 | 
			
		||||
    int err = noise_cipherstate_encrypt(send_cipher_, &mbuf);
 | 
			
		||||
    if (err != 0) {
 | 
			
		||||
@@ -674,12 +683,14 @@ APIError APINoiseFrameHelper::write_protobuf_packets(ProtoWriteBuffer buffer, st
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Fill in the encrypted size
 | 
			
		||||
    buf_start[1] = static_cast<uint8_t>(mbuf.size >> 8);
 | 
			
		||||
    buf_start[2] = static_cast<uint8_t>(mbuf.size);
 | 
			
		||||
    buf_start[1] = (uint8_t) (mbuf.size >> 8);
 | 
			
		||||
    buf_start[2] = (uint8_t) mbuf.size;
 | 
			
		||||
 | 
			
		||||
    // Add iovec for this encrypted packet
 | 
			
		||||
    this->reusable_iovs_.push_back(
 | 
			
		||||
        {buf_start, static_cast<size_t>(3 + mbuf.size)});  // indicator + size + encrypted data
 | 
			
		||||
    struct iovec iov;
 | 
			
		||||
    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
 | 
			
		||||
@@ -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
 | 
			
		||||
    ssize_t received =
 | 
			
		||||
        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 (err != APIError::OK) {
 | 
			
		||||
      return err;
 | 
			
		||||
    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;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // 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
 | 
			
		||||
    uint16_t to_read = rx_header_parsed_len_ - rx_buf_len_;
 | 
			
		||||
    ssize_t received = this->socket_->read(&rx_buf_[rx_buf_len_], to_read);
 | 
			
		||||
    APIError err = handle_socket_read_result_(received);
 | 
			
		||||
    if (err != APIError::OK) {
 | 
			
		||||
      return err;
 | 
			
		||||
    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;
 | 
			
		||||
    }
 | 
			
		||||
    rx_buf_len_ += static_cast<uint16_t>(received);
 | 
			
		||||
    if (static_cast<uint16_t>(received) != to_read) {
 | 
			
		||||
@@ -1001,12 +1028,19 @@ APIError APIPlaintextFrameHelper::read_packet(ReadPacketBuffer *buffer) {
 | 
			
		||||
  buffer->type = rx_header_parsed_type_;
 | 
			
		||||
  return APIError::OK;
 | 
			
		||||
}
 | 
			
		||||
APIError APIPlaintextFrameHelper::write_protobuf_packet(uint8_t type, ProtoWriteBuffer buffer) {
 | 
			
		||||
  PacketInfo packet{type, 0, static_cast<uint16_t>(buffer.get_buffer()->size() - frame_header_padding_)};
 | 
			
		||||
  return write_protobuf_packets(buffer, std::span<const PacketInfo>(&packet, 1));
 | 
			
		||||
APIError APIPlaintextFrameHelper::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_);
 | 
			
		||||
 | 
			
		||||
  // 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) {
 | 
			
		||||
    return APIError::BAD_STATE;
 | 
			
		||||
  }
 | 
			
		||||
@@ -1016,15 +1050,17 @@ APIError APIPlaintextFrameHelper::write_protobuf_packets(ProtoWriteBuffer 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_.reserve(packets.size());
 | 
			
		||||
 | 
			
		||||
  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
 | 
			
		||||
    uint8_t size_varint_len = api::ProtoSize::varint(static_cast<uint32_t>(packet.payload_size));
 | 
			
		||||
    uint8_t type_varint_len = api::ProtoSize::varint(static_cast<uint32_t>(packet.message_type));
 | 
			
		||||
    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>(type));
 | 
			
		||||
    uint8_t total_header_len = 1 + size_varint_len + type_varint_len;
 | 
			
		||||
 | 
			
		||||
    // 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_
 | 
			
		||||
    // 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;
 | 
			
		||||
 | 
			
		||||
    // Write the plaintext header
 | 
			
		||||
    buf_start[header_offset] = 0x00;  // indicator
 | 
			
		||||
 | 
			
		||||
    // Encode varints directly into buffer
 | 
			
		||||
    ProtoVarInt(packet.payload_size).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 size varint directly into buffer
 | 
			
		||||
    ProtoVarInt(payload_len).encode_to_buffer_unchecked(buf_start + header_offset + 1, size_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)
 | 
			
		||||
    this->reusable_iovs_.push_back(
 | 
			
		||||
        {buf_start + header_offset, static_cast<size_t>(total_header_len + packet.payload_size)});
 | 
			
		||||
    struct iovec iov;
 | 
			
		||||
    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
 | 
			
		||||
 
 | 
			
		||||
@@ -2,7 +2,6 @@
 | 
			
		||||
#include <cstdint>
 | 
			
		||||
#include <deque>
 | 
			
		||||
#include <limits>
 | 
			
		||||
#include <span>
 | 
			
		||||
#include <utility>
 | 
			
		||||
#include <vector>
 | 
			
		||||
 | 
			
		||||
@@ -30,11 +29,13 @@ struct ReadPacketBuffer {
 | 
			
		||||
 | 
			
		||||
// Packed packet info structure to minimize memory usage
 | 
			
		||||
struct PacketInfo {
 | 
			
		||||
  uint16_t offset;        // Offset in buffer where message starts
 | 
			
		||||
  uint16_t payload_size;  // Size of the message payload
 | 
			
		||||
  uint8_t message_type;   // Message type (0-255)
 | 
			
		||||
  uint16_t message_type;  // 2 bytes
 | 
			
		||||
  uint16_t offset;        // 2 bytes (sufficient for packet size ~1460 bytes)
 | 
			
		||||
  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 {
 | 
			
		||||
@@ -96,11 +97,11 @@ class APIFrameHelper {
 | 
			
		||||
  }
 | 
			
		||||
  // Give this helper a name for logging
 | 
			
		||||
  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
 | 
			
		||||
  // packets contains (message_type, offset, length) for each message in the buffer
 | 
			
		||||
  // 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
 | 
			
		||||
  virtual uint8_t frame_header_padding() = 0;
 | 
			
		||||
  // Get the frame footer size required by this protocol
 | 
			
		||||
@@ -174,9 +175,6 @@ class APIFrameHelper {
 | 
			
		||||
 | 
			
		||||
  // Common initialization for both plaintext and noise protocols
 | 
			
		||||
  APIError init_common_();
 | 
			
		||||
 | 
			
		||||
  // Helper method to handle socket read results
 | 
			
		||||
  APIError handle_socket_read_result_(ssize_t received);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#ifdef USE_API_NOISE
 | 
			
		||||
@@ -195,8 +193,8 @@ class APINoiseFrameHelper : public APIFrameHelper {
 | 
			
		||||
  APIError init() override;
 | 
			
		||||
  APIError loop() override;
 | 
			
		||||
  APIError read_packet(ReadPacketBuffer *buffer) override;
 | 
			
		||||
  APIError write_protobuf_packet(uint8_t type, ProtoWriteBuffer buffer) override;
 | 
			
		||||
  APIError write_protobuf_packets(ProtoWriteBuffer buffer, std::span<const PacketInfo> packets) override;
 | 
			
		||||
  APIError write_protobuf_packet(uint16_t type, ProtoWriteBuffer buffer) override;
 | 
			
		||||
  APIError write_protobuf_packets(ProtoWriteBuffer buffer, const std::vector<PacketInfo> &packets) override;
 | 
			
		||||
  // Get the frame header padding required by this protocol
 | 
			
		||||
  uint8_t frame_header_padding() override { return frame_header_padding_; }
 | 
			
		||||
  // Get the frame footer size required by this protocol
 | 
			
		||||
@@ -249,8 +247,8 @@ class APIPlaintextFrameHelper : public APIFrameHelper {
 | 
			
		||||
  APIError init() override;
 | 
			
		||||
  APIError loop() override;
 | 
			
		||||
  APIError read_packet(ReadPacketBuffer *buffer) override;
 | 
			
		||||
  APIError write_protobuf_packet(uint8_t type, ProtoWriteBuffer buffer) override;
 | 
			
		||||
  APIError write_protobuf_packets(ProtoWriteBuffer buffer, std::span<const PacketInfo> packets) override;
 | 
			
		||||
  APIError write_protobuf_packet(uint16_t type, ProtoWriteBuffer buffer) override;
 | 
			
		||||
  APIError write_protobuf_packets(ProtoWriteBuffer buffer, const std::vector<PacketInfo> &packets) override;
 | 
			
		||||
  uint8_t frame_header_padding() override { return frame_header_padding_; }
 | 
			
		||||
  // Get the frame footer size required by this protocol
 | 
			
		||||
  uint8_t frame_footer_size() override { return frame_footer_size_; }
 | 
			
		||||
 
 | 
			
		||||
@@ -23,8 +23,3 @@ extend google.protobuf.MessageOptions {
 | 
			
		||||
    optional bool no_delay = 1040 [default=false];
 | 
			
		||||
    optional string base_class = 1041;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
extend google.protobuf.FieldOptions {
 | 
			
		||||
    optional string field_ifdef = 1042;
 | 
			
		||||
    optional uint32 fixed_array_size = 50007;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
										
											
												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
 | 
			
		||||
 | 
			
		||||
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) {
 | 
			
		||||
    case 1: {
 | 
			
		||||
      HelloRequest msg;
 | 
			
		||||
@@ -106,50 +106,50 @@ void APIServerConnectionBase::read_message(uint32_t msg_size, uint32_t msg_type,
 | 
			
		||||
      this->on_subscribe_logs_request(msg);
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#ifdef USE_COVER
 | 
			
		||||
    case 30: {
 | 
			
		||||
#ifdef USE_COVER
 | 
			
		||||
      CoverCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_cover_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_cover_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_FAN
 | 
			
		||||
    case 31: {
 | 
			
		||||
#ifdef USE_FAN
 | 
			
		||||
      FanCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_fan_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_fan_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_LIGHT
 | 
			
		||||
    case 32: {
 | 
			
		||||
#ifdef USE_LIGHT
 | 
			
		||||
      LightCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_light_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_light_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SWITCH
 | 
			
		||||
    case 33: {
 | 
			
		||||
#ifdef USE_SWITCH
 | 
			
		||||
      SwitchCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_switch_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_switch_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
    case 34: {
 | 
			
		||||
      SubscribeHomeassistantServicesRequest msg;
 | 
			
		||||
      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);
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
    case 42: {
 | 
			
		||||
      ExecuteServiceRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
@@ -205,425 +204,425 @@ void APIServerConnectionBase::read_message(uint32_t msg_size, uint32_t msg_type,
 | 
			
		||||
      this->on_execute_service_request(msg);
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CAMERA
 | 
			
		||||
    case 45: {
 | 
			
		||||
#ifdef USE_ESP32_CAMERA
 | 
			
		||||
      CameraImageRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_camera_image_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_camera_image_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CLIMATE
 | 
			
		||||
    case 48: {
 | 
			
		||||
#ifdef USE_CLIMATE
 | 
			
		||||
      ClimateCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_climate_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_climate_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_NUMBER
 | 
			
		||||
    case 51: {
 | 
			
		||||
#ifdef USE_NUMBER
 | 
			
		||||
      NumberCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_number_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_number_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SELECT
 | 
			
		||||
    case 54: {
 | 
			
		||||
#ifdef USE_SELECT
 | 
			
		||||
      SelectCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_select_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_select_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SIREN
 | 
			
		||||
    case 57: {
 | 
			
		||||
#ifdef USE_SIREN
 | 
			
		||||
      SirenCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_siren_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_siren_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_LOCK
 | 
			
		||||
    case 60: {
 | 
			
		||||
#ifdef USE_LOCK
 | 
			
		||||
      LockCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_lock_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_lock_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BUTTON
 | 
			
		||||
    case 62: {
 | 
			
		||||
#ifdef USE_BUTTON
 | 
			
		||||
      ButtonCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_button_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_button_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_MEDIA_PLAYER
 | 
			
		||||
    case 65: {
 | 
			
		||||
#ifdef USE_MEDIA_PLAYER
 | 
			
		||||
      MediaPlayerCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_media_player_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_media_player_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
    case 66: {
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
      SubscribeBluetoothLEAdvertisementsRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_subscribe_bluetooth_le_advertisements_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_subscribe_bluetooth_le_advertisements_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
    case 68: {
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
      BluetoothDeviceRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_bluetooth_device_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_bluetooth_device_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
    case 70: {
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
      BluetoothGATTGetServicesRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_bluetooth_gatt_get_services_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_bluetooth_gatt_get_services_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
    case 73: {
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
      BluetoothGATTReadRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_bluetooth_gatt_read_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_bluetooth_gatt_read_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
    case 75: {
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
      BluetoothGATTWriteRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_bluetooth_gatt_write_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_bluetooth_gatt_write_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
    case 76: {
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
      BluetoothGATTReadDescriptorRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_bluetooth_gatt_read_descriptor_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_bluetooth_gatt_read_descriptor_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
    case 77: {
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
      BluetoothGATTWriteDescriptorRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_bluetooth_gatt_write_descriptor_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_bluetooth_gatt_write_descriptor_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
    case 78: {
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
      BluetoothGATTNotifyRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_bluetooth_gatt_notify_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_bluetooth_gatt_notify_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
    case 80: {
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
      SubscribeBluetoothConnectionsFreeRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_subscribe_bluetooth_connections_free_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_subscribe_bluetooth_connections_free_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
    case 87: {
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
      UnsubscribeBluetoothLEAdvertisementsRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_unsubscribe_bluetooth_le_advertisements_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_unsubscribe_bluetooth_le_advertisements_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
    case 89: {
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
      SubscribeVoiceAssistantRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_subscribe_voice_assistant_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_subscribe_voice_assistant_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
    case 91: {
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
      VoiceAssistantResponse msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_voice_assistant_response: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_voice_assistant_response(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
    case 92: {
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
      VoiceAssistantEventResponse msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_voice_assistant_event_response: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_voice_assistant_event_response(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_ALARM_CONTROL_PANEL
 | 
			
		||||
    case 96: {
 | 
			
		||||
#ifdef USE_ALARM_CONTROL_PANEL
 | 
			
		||||
      AlarmControlPanelCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_alarm_control_panel_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_alarm_control_panel_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_TEXT
 | 
			
		||||
    case 99: {
 | 
			
		||||
#ifdef USE_TEXT
 | 
			
		||||
      TextCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_text_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_text_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_DATETIME_DATE
 | 
			
		||||
    case 102: {
 | 
			
		||||
#ifdef USE_DATETIME_DATE
 | 
			
		||||
      DateCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_date_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_date_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_DATETIME_TIME
 | 
			
		||||
    case 105: {
 | 
			
		||||
#ifdef USE_DATETIME_TIME
 | 
			
		||||
      TimeCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_time_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_time_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
    case 106: {
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
      VoiceAssistantAudio msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_voice_assistant_audio: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_voice_assistant_audio(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_VALVE
 | 
			
		||||
    case 111: {
 | 
			
		||||
#ifdef USE_VALVE
 | 
			
		||||
      ValveCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_valve_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_valve_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_DATETIME_DATETIME
 | 
			
		||||
    case 114: {
 | 
			
		||||
#ifdef USE_DATETIME_DATETIME
 | 
			
		||||
      DateTimeCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_date_time_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_date_time_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
    case 115: {
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
      VoiceAssistantTimerEventResponse msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_voice_assistant_timer_event_response: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_voice_assistant_timer_event_response(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_UPDATE
 | 
			
		||||
    case 118: {
 | 
			
		||||
#ifdef USE_UPDATE
 | 
			
		||||
      UpdateCommandRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_update_command_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_update_command_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
    case 119: {
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
      VoiceAssistantAnnounceRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_voice_assistant_announce_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_voice_assistant_announce_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
    case 121: {
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
      VoiceAssistantConfigurationRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_voice_assistant_configuration_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_voice_assistant_configuration_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
    case 123: {
 | 
			
		||||
#ifdef USE_VOICE_ASSISTANT
 | 
			
		||||
      VoiceAssistantSetConfiguration msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_voice_assistant_set_configuration: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_voice_assistant_set_configuration(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_API_NOISE
 | 
			
		||||
    case 124: {
 | 
			
		||||
#ifdef USE_API_NOISE
 | 
			
		||||
      NoiseEncryptionSetKeyRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_noise_encryption_set_key_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_noise_encryption_set_key_request(msg);
 | 
			
		||||
#endif
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
    case 127: {
 | 
			
		||||
#ifdef USE_BLUETOOTH_PROXY
 | 
			
		||||
      BluetoothScannerSetModeRequest msg;
 | 
			
		||||
      msg.decode(msg_data, msg_size);
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
      ESP_LOGVV(TAG, "on_bluetooth_scanner_set_mode_request: %s", msg.dump().c_str());
 | 
			
		||||
#endif
 | 
			
		||||
      this->on_bluetooth_scanner_set_mode_request(msg);
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
    default:
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
    default:
 | 
			
		||||
      return false;
 | 
			
		||||
  }
 | 
			
		||||
  return true;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void APIServerConnection::on_hello_request(const HelloRequest &msg) {
 | 
			
		||||
  HelloResponse ret = this->hello(msg);
 | 
			
		||||
  if (!this->send_message(ret, HelloResponse::MESSAGE_TYPE)) {
 | 
			
		||||
  if (!this->send_message(ret)) {
 | 
			
		||||
    this->on_fatal_error();
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
void APIServerConnection::on_connect_request(const ConnectRequest &msg) {
 | 
			
		||||
  ConnectResponse ret = this->connect(msg);
 | 
			
		||||
  if (!this->send_message(ret, ConnectResponse::MESSAGE_TYPE)) {
 | 
			
		||||
  if (!this->send_message(ret)) {
 | 
			
		||||
    this->on_fatal_error();
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
void APIServerConnection::on_disconnect_request(const DisconnectRequest &msg) {
 | 
			
		||||
  DisconnectResponse ret = this->disconnect(msg);
 | 
			
		||||
  if (!this->send_message(ret, DisconnectResponse::MESSAGE_TYPE)) {
 | 
			
		||||
  if (!this->send_message(ret)) {
 | 
			
		||||
    this->on_fatal_error();
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
void APIServerConnection::on_ping_request(const PingRequest &msg) {
 | 
			
		||||
  PingResponse ret = this->ping(msg);
 | 
			
		||||
  if (!this->send_message(ret, PingResponse::MESSAGE_TYPE)) {
 | 
			
		||||
  if (!this->send_message(ret)) {
 | 
			
		||||
    this->on_fatal_error();
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
void APIServerConnection::on_device_info_request(const DeviceInfoRequest &msg) {
 | 
			
		||||
  if (this->check_connection_setup_()) {
 | 
			
		||||
    DeviceInfoResponse ret = this->device_info(msg);
 | 
			
		||||
    if (!this->send_message(ret, DeviceInfoResponse::MESSAGE_TYPE)) {
 | 
			
		||||
    if (!this->send_message(ret)) {
 | 
			
		||||
      this->on_fatal_error();
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
@@ -657,23 +656,21 @@ void APIServerConnection::on_subscribe_home_assistant_states_request(const Subsc
 | 
			
		||||
void APIServerConnection::on_get_time_request(const GetTimeRequest &msg) {
 | 
			
		||||
  if (this->check_connection_setup_()) {
 | 
			
		||||
    GetTimeResponse ret = this->get_time(msg);
 | 
			
		||||
    if (!this->send_message(ret, GetTimeResponse::MESSAGE_TYPE)) {
 | 
			
		||||
    if (!this->send_message(ret)) {
 | 
			
		||||
      this->on_fatal_error();
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
void APIServerConnection::on_execute_service_request(const ExecuteServiceRequest &msg) {
 | 
			
		||||
  if (this->check_authenticated_()) {
 | 
			
		||||
    this->execute_service(msg);
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_API_NOISE
 | 
			
		||||
void APIServerConnection::on_noise_encryption_set_key_request(const NoiseEncryptionSetKeyRequest &msg) {
 | 
			
		||||
  if (this->check_authenticated_()) {
 | 
			
		||||
    NoiseEncryptionSetKeyResponse ret = this->noise_encryption_set_key(msg);
 | 
			
		||||
    if (!this->send_message(ret, NoiseEncryptionSetKeyResponse::MESSAGE_TYPE)) {
 | 
			
		||||
    if (!this->send_message(ret)) {
 | 
			
		||||
      this->on_fatal_error();
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
@@ -686,7 +683,7 @@ void APIServerConnection::on_button_command_request(const ButtonCommandRequest &
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CAMERA
 | 
			
		||||
#ifdef USE_ESP32_CAMERA
 | 
			
		||||
void APIServerConnection::on_camera_image_request(const CameraImageRequest &msg) {
 | 
			
		||||
  if (this->check_authenticated_()) {
 | 
			
		||||
    this->camera_image(msg);
 | 
			
		||||
@@ -867,7 +864,7 @@ void APIServerConnection::on_subscribe_bluetooth_connections_free_request(
 | 
			
		||||
    const SubscribeBluetoothConnectionsFreeRequest &msg) {
 | 
			
		||||
  if (this->check_authenticated_()) {
 | 
			
		||||
    BluetoothConnectionsFreeResponse ret = this->subscribe_bluetooth_connections_free(msg);
 | 
			
		||||
    if (!this->send_message(ret, BluetoothConnectionsFreeResponse::MESSAGE_TYPE)) {
 | 
			
		||||
    if (!this->send_message(ret)) {
 | 
			
		||||
      this->on_fatal_error();
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
@@ -899,7 +896,7 @@ void APIServerConnection::on_subscribe_voice_assistant_request(const SubscribeVo
 | 
			
		||||
void APIServerConnection::on_voice_assistant_configuration_request(const VoiceAssistantConfigurationRequest &msg) {
 | 
			
		||||
  if (this->check_authenticated_()) {
 | 
			
		||||
    VoiceAssistantConfigurationResponse ret = this->voice_assistant_get_configuration(msg);
 | 
			
		||||
    if (!this->send_message(ret, VoiceAssistantConfigurationResponse::MESSAGE_TYPE)) {
 | 
			
		||||
    if (!this->send_message(ret)) {
 | 
			
		||||
      this->on_fatal_error();
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 
 | 
			
		||||
@@ -2,9 +2,8 @@
 | 
			
		||||
// See script/api_protobuf/api_protobuf.py
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include "esphome/core/defines.h"
 | 
			
		||||
 | 
			
		||||
#include "api_pb2.h"
 | 
			
		||||
#include "esphome/core/defines.h"
 | 
			
		||||
 | 
			
		||||
namespace esphome {
 | 
			
		||||
namespace api {
 | 
			
		||||
@@ -18,11 +17,11 @@ class APIServerConnectionBase : public ProtoService {
 | 
			
		||||
 public:
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
  bool send_message(const ProtoMessage &msg, uint8_t message_type) {
 | 
			
		||||
  template<typename T> bool send_message(const T &msg) {
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
    this->log_send_message_(msg.message_name(), msg.dump());
 | 
			
		||||
#endif
 | 
			
		||||
    return this->send_message_(msg, message_type);
 | 
			
		||||
    return this->send_message_(msg, T::MESSAGE_TYPE);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  virtual void on_hello_request(const HelloRequest &value){};
 | 
			
		||||
@@ -69,11 +68,9 @@ class APIServerConnectionBase : public ProtoService {
 | 
			
		||||
  virtual void on_get_time_request(const GetTimeRequest &value){};
 | 
			
		||||
  virtual void on_get_time_response(const GetTimeResponse &value){};
 | 
			
		||||
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
  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){};
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
@@ -202,7 +199,7 @@ class APIServerConnectionBase : public ProtoService {
 | 
			
		||||
  virtual void on_update_command_request(const UpdateCommandRequest &value){};
 | 
			
		||||
#endif
 | 
			
		||||
 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 {
 | 
			
		||||
@@ -218,16 +215,14 @@ class APIServerConnection : public APIServerConnectionBase {
 | 
			
		||||
  virtual void subscribe_homeassistant_services(const SubscribeHomeassistantServicesRequest &msg) = 0;
 | 
			
		||||
  virtual void subscribe_home_assistant_states(const SubscribeHomeAssistantStatesRequest &msg) = 0;
 | 
			
		||||
  virtual GetTimeResponse get_time(const GetTimeRequest &msg) = 0;
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
  virtual void execute_service(const ExecuteServiceRequest &msg) = 0;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_API_NOISE
 | 
			
		||||
  virtual NoiseEncryptionSetKeyResponse noise_encryption_set_key(const NoiseEncryptionSetKeyRequest &msg) = 0;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BUTTON
 | 
			
		||||
  virtual void button_command(const ButtonCommandRequest &msg) = 0;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CAMERA
 | 
			
		||||
#ifdef USE_ESP32_CAMERA
 | 
			
		||||
  virtual void camera_image(const CameraImageRequest &msg) = 0;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CLIMATE
 | 
			
		||||
@@ -337,16 +332,14 @@ class APIServerConnection : public APIServerConnectionBase {
 | 
			
		||||
  void on_subscribe_homeassistant_services_request(const SubscribeHomeassistantServicesRequest &msg) override;
 | 
			
		||||
  void on_subscribe_home_assistant_states_request(const SubscribeHomeAssistantStatesRequest &msg) override;
 | 
			
		||||
  void on_get_time_request(const GetTimeRequest &msg) override;
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
  void on_execute_service_request(const ExecuteServiceRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_API_NOISE
 | 
			
		||||
  void on_noise_encryption_set_key_request(const NoiseEncryptionSetKeyRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BUTTON
 | 
			
		||||
  void on_button_command_request(const ButtonCommandRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CAMERA
 | 
			
		||||
#ifdef USE_ESP32_CAMERA
 | 
			
		||||
  void on_camera_image_request(const CameraImageRequest &msg) override;
 | 
			
		||||
#endif
 | 
			
		||||
#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
 | 
			
		||||
@@ -31,6 +31,7 @@ APIServer::APIServer() {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void APIServer::setup() {
 | 
			
		||||
  ESP_LOGCONFIG(TAG, "Running setup");
 | 
			
		||||
  this->setup_controller();
 | 
			
		||||
 | 
			
		||||
#ifdef USE_API_NOISE
 | 
			
		||||
@@ -95,8 +96,7 @@ void APIServer::setup() {
 | 
			
		||||
 | 
			
		||||
#ifdef USE_LOGGER
 | 
			
		||||
  if (logger::global_logger != nullptr) {
 | 
			
		||||
    logger::global_logger->add_on_log_callback(
 | 
			
		||||
        [this](int level, const char *tag, const char *message, size_t message_len) {
 | 
			
		||||
    logger::global_logger->add_on_log_callback([this](int level, const char *tag, const char *message) {
 | 
			
		||||
      if (this->shutting_down_) {
 | 
			
		||||
        // Don't try to send logs during shutdown
 | 
			
		||||
        // as it could result in a recursion and
 | 
			
		||||
@@ -104,18 +104,19 @@ void APIServer::setup() {
 | 
			
		||||
        return;
 | 
			
		||||
      }
 | 
			
		||||
      for (auto &c : this->clients_) {
 | 
			
		||||
            if (!c->flags_.remove && c->get_log_subscription_level() >= level)
 | 
			
		||||
              c->try_send_log_message(level, tag, message, message_len);
 | 
			
		||||
        if (!c->remove_)
 | 
			
		||||
          c->try_send_log_message(level, tag, message);
 | 
			
		||||
      }
 | 
			
		||||
    });
 | 
			
		||||
  }
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifdef USE_CAMERA
 | 
			
		||||
  if (camera::Camera::instance() != nullptr && !camera::Camera::instance()->is_internal()) {
 | 
			
		||||
    camera::Camera::instance()->add_image_callback([this](const std::shared_ptr<camera::CameraImage> &image) {
 | 
			
		||||
#ifdef USE_ESP32_CAMERA
 | 
			
		||||
  if (esp32_camera::global_esp32_camera != nullptr && !esp32_camera::global_esp32_camera->is_internal()) {
 | 
			
		||||
    esp32_camera::global_esp32_camera->add_image_callback(
 | 
			
		||||
        [this](const std::shared_ptr<esp32_camera::CameraImage> &image) {
 | 
			
		||||
          for (auto &c : this->clients_) {
 | 
			
		||||
        if (!c->flags_.remove)
 | 
			
		||||
            if (!c->remove_)
 | 
			
		||||
              c->set_camera_state(image);
 | 
			
		||||
          }
 | 
			
		||||
        });
 | 
			
		||||
@@ -175,7 +176,7 @@ void APIServer::loop() {
 | 
			
		||||
  while (client_index < this->clients_.size()) {
 | 
			
		||||
    auto &client = this->clients_[client_index];
 | 
			
		||||
 | 
			
		||||
    if (!client->flags_.remove) {
 | 
			
		||||
    if (!client->remove_) {
 | 
			
		||||
      // Common case: process active client
 | 
			
		||||
      client->loop();
 | 
			
		||||
      client_index++;
 | 
			
		||||
@@ -183,9 +184,7 @@ void APIServer::loop() {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Rare case: handle disconnection
 | 
			
		||||
#ifdef USE_API_CLIENT_DISCONNECTED_TRIGGER
 | 
			
		||||
    this->client_disconnected_trigger_->trigger(client->client_info_, client->client_peername_);
 | 
			
		||||
#endif
 | 
			
		||||
    ESP_LOGV(TAG, "Remove connection %s", client->client_info_.c_str());
 | 
			
		||||
 | 
			
		||||
    // Swap with the last element and pop (avoids expensive vector shifts)
 | 
			
		||||
@@ -204,20 +203,21 @@ void APIServer::loop() {
 | 
			
		||||
 | 
			
		||||
void APIServer::dump_config() {
 | 
			
		||||
  ESP_LOGCONFIG(TAG,
 | 
			
		||||
                "Server:\n"
 | 
			
		||||
                "API Server:\n"
 | 
			
		||||
                "  Address: %s:%u",
 | 
			
		||||
                network::get_use_address().c_str(), this->port_);
 | 
			
		||||
#ifdef USE_API_NOISE
 | 
			
		||||
  ESP_LOGCONFIG(TAG, "  Noise encryption: %s", YESNO(this->noise_ctx_->has_psk()));
 | 
			
		||||
  ESP_LOGCONFIG(TAG, "  Using noise encryption: %s", YESNO(this->noise_ctx_->has_psk()));
 | 
			
		||||
  if (!this->noise_ctx_->has_psk()) {
 | 
			
		||||
    ESP_LOGCONFIG(TAG, "  Supports encryption: YES");
 | 
			
		||||
    ESP_LOGCONFIG(TAG, "  Supports noise encryption: YES");
 | 
			
		||||
  }
 | 
			
		||||
#else
 | 
			
		||||
  ESP_LOGCONFIG(TAG, "  Noise encryption: NO");
 | 
			
		||||
  ESP_LOGCONFIG(TAG, "  Using noise encryption: NO");
 | 
			
		||||
#endif
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#ifdef USE_API_PASSWORD
 | 
			
		||||
bool APIServer::uses_password() const { return !this->password_.empty(); }
 | 
			
		||||
 | 
			
		||||
bool APIServer::check_password(const std::string &password) const {
 | 
			
		||||
  // depend only on input password length
 | 
			
		||||
  const char *a = this->password_.c_str();
 | 
			
		||||
@@ -246,129 +246,192 @@ bool APIServer::check_password(const std::string &password) const {
 | 
			
		||||
 | 
			
		||||
  return result == 0;
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
#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) {
 | 
			
		||||
  if (obj->is_internal())
 | 
			
		||||
    return;
 | 
			
		||||
  for (auto &c : this->clients_)
 | 
			
		||||
    c->send_event(obj, event_type);
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#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) {
 | 
			
		||||
  if (obj->is_internal())
 | 
			
		||||
    return;
 | 
			
		||||
  for (auto &c : this->clients_)
 | 
			
		||||
    c->send_update_state(obj);
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#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
 | 
			
		||||
 | 
			
		||||
float APIServer::get_setup_priority() const { return setup_priority::AFTER_WIFI; }
 | 
			
		||||
 | 
			
		||||
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; }
 | 
			
		||||
#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) {
 | 
			
		||||
  for (auto &client : this->clients_) {
 | 
			
		||||
@@ -425,11 +488,10 @@ bool APIServer::save_noise_psk(psk_t psk, bool make_active) {
 | 
			
		||||
  ESP_LOGD(TAG, "Noise PSK saved");
 | 
			
		||||
  if (make_active) {
 | 
			
		||||
    this->set_timeout(100, [this, psk]() {
 | 
			
		||||
      ESP_LOGW(TAG, "Disconnecting all clients to reset PSK");
 | 
			
		||||
      ESP_LOGW(TAG, "Disconnecting all clients to reset connections");
 | 
			
		||||
      this->set_noise_psk(psk);
 | 
			
		||||
      for (auto &c : this->clients_) {
 | 
			
		||||
        DisconnectRequest req;
 | 
			
		||||
        c->send_message(req, DisconnectRequest::MESSAGE_TYPE);
 | 
			
		||||
        c->send_message(DisconnectRequest());
 | 
			
		||||
      }
 | 
			
		||||
    });
 | 
			
		||||
  }
 | 
			
		||||
@@ -440,7 +502,7 @@ bool APIServer::save_noise_psk(psk_t psk, bool make_active) {
 | 
			
		||||
#ifdef USE_HOMEASSISTANT_TIME
 | 
			
		||||
void APIServer::request_time() {
 | 
			
		||||
  for (auto &client : this->clients_) {
 | 
			
		||||
    if (!client->flags_.remove && client->is_authenticated())
 | 
			
		||||
    if (!client->remove_ && client->is_authenticated())
 | 
			
		||||
      client->send_time_request();
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@@ -462,12 +524,10 @@ void APIServer::on_shutdown() {
 | 
			
		||||
 | 
			
		||||
  // Send disconnect requests to all connected clients
 | 
			
		||||
  for (auto &c : this->clients_) {
 | 
			
		||||
    DisconnectRequest req;
 | 
			
		||||
    if (!c->send_message(req, DisconnectRequest::MESSAGE_TYPE)) {
 | 
			
		||||
    if (!c->send_message(DisconnectRequest())) {
 | 
			
		||||
      // 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
 | 
			
		||||
      c->schedule_message_front_(nullptr, &APIConnection::try_send_disconnect_request, DisconnectRequest::MESSAGE_TYPE,
 | 
			
		||||
                                 DisconnectRequest::ESTIMATED_SIZE);
 | 
			
		||||
      // schedule it in the batch so it will be sent with the 5ms timer
 | 
			
		||||
      c->schedule_message_(nullptr, &APIConnection::try_send_disconnect_request, DisconnectRequest::MESSAGE_TYPE);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -12,9 +12,7 @@
 | 
			
		||||
#include "esphome/core/log.h"
 | 
			
		||||
#include "list_entities.h"
 | 
			
		||||
#include "subscribe_state.h"
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
#include "user_services.h"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#include <vector>
 | 
			
		||||
 | 
			
		||||
@@ -37,14 +35,13 @@ class APIServer : public Component, public Controller {
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  void on_shutdown() override;
 | 
			
		||||
  bool teardown() override;
 | 
			
		||||
#ifdef USE_API_PASSWORD
 | 
			
		||||
  bool check_password(const std::string &password) const;
 | 
			
		||||
  void set_password(const std::string &password);
 | 
			
		||||
#endif
 | 
			
		||||
  bool uses_password() const;
 | 
			
		||||
  void set_port(uint16_t port);
 | 
			
		||||
  void set_password(const std::string &password);
 | 
			
		||||
  void set_reboot_timeout(uint32_t reboot_timeout);
 | 
			
		||||
  void set_batch_delay(uint16_t batch_delay);
 | 
			
		||||
  uint16_t get_batch_delay() const { return batch_delay_; }
 | 
			
		||||
  void set_batch_delay(uint32_t batch_delay);
 | 
			
		||||
  uint32_t get_batch_delay() const { return batch_delay_; }
 | 
			
		||||
 | 
			
		||||
  // Get reference to shared buffer for API connections
 | 
			
		||||
  std::vector<uint8_t> &get_shared_buffer_ref() { return shared_write_buffer_; }
 | 
			
		||||
@@ -108,9 +105,7 @@ class APIServer : public Component, public Controller {
 | 
			
		||||
  void on_media_player_update(media_player::MediaPlayer *obj) override;
 | 
			
		||||
#endif
 | 
			
		||||
  void send_homeassistant_service_call(const HomeassistantServiceResponse &call);
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
  void register_user_service(UserServiceDescriptor *descriptor) { this->user_services_.push_back(descriptor); }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_HOMEASSISTANT_TIME
 | 
			
		||||
  void request_time();
 | 
			
		||||
#endif
 | 
			
		||||
@@ -139,49 +134,35 @@ class APIServer : public Component, public Controller {
 | 
			
		||||
  void get_home_assistant_state(std::string entity_id, optional<std::string> attribute,
 | 
			
		||||
                                std::function<void(std::string)> f);
 | 
			
		||||
  const std::vector<HomeAssistantStateSubscription> &get_state_subs() const;
 | 
			
		||||
#ifdef USE_API_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_; }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_API_CLIENT_DISCONNECTED_TRIGGER
 | 
			
		||||
  Trigger<std::string, std::string> *get_client_disconnected_trigger() const {
 | 
			
		||||
    return this->client_disconnected_trigger_;
 | 
			
		||||
  }
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  void schedule_reboot_timeout_();
 | 
			
		||||
  // Pointers and pointer-like types first (4 bytes each)
 | 
			
		||||
  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>();
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_API_CLIENT_DISCONNECTED_TRIGGER
 | 
			
		||||
  Trigger<std::string, std::string> *client_disconnected_trigger_ = new Trigger<std::string, std::string>();
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
  // 4-byte aligned types
 | 
			
		||||
  uint32_t reboot_timeout_{300000};
 | 
			
		||||
  uint32_t batch_delay_{100};
 | 
			
		||||
 | 
			
		||||
  // Vectors and strings (12 bytes each on 32-bit)
 | 
			
		||||
  std::vector<std::unique_ptr<APIConnection>> clients_;
 | 
			
		||||
#ifdef USE_API_PASSWORD
 | 
			
		||||
  std::string password_;
 | 
			
		||||
#endif
 | 
			
		||||
  std::vector<uint8_t> shared_write_buffer_;  // Shared proto write buffer for all connections
 | 
			
		||||
  std::vector<HomeAssistantStateSubscription> state_subs_;
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
  std::vector<UserServiceDescriptor *> user_services_;
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
  // Group smaller types together
 | 
			
		||||
  uint16_t port_{6053};
 | 
			
		||||
  uint16_t batch_delay_{100};
 | 
			
		||||
  bool shutting_down_ = false;
 | 
			
		||||
  // 5 bytes used, 3 bytes padding
 | 
			
		||||
  // 3 bytes used, 1 byte padding
 | 
			
		||||
 | 
			
		||||
#ifdef USE_API_NOISE
 | 
			
		||||
  std::shared_ptr<APINoiseContext> noise_ctx_ = std::make_shared<APINoiseContext>();
 | 
			
		||||
 
 | 
			
		||||
@@ -4,15 +4,9 @@ import asyncio
 | 
			
		||||
from datetime import datetime
 | 
			
		||||
import logging
 | 
			
		||||
from typing import TYPE_CHECKING, Any
 | 
			
		||||
import warnings
 | 
			
		||||
 | 
			
		||||
# Suppress protobuf version warnings
 | 
			
		||||
with warnings.catch_warnings():
 | 
			
		||||
    warnings.filterwarnings(
 | 
			
		||||
        "ignore", category=UserWarning, message=".*Protobuf gencode version.*"
 | 
			
		||||
    )
 | 
			
		||||
    from aioesphomeapi import APIClient, parse_log_message
 | 
			
		||||
    from aioesphomeapi.log_runner import async_run
 | 
			
		||||
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.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])
 | 
			
		||||
    password: str = conf[CONF_PASSWORD]
 | 
			
		||||
    noise_psk: str | None = None
 | 
			
		||||
    if (encryption := conf.get(CONF_ENCRYPTION)) and (key := encryption.get(CONF_KEY)):
 | 
			
		||||
        noise_psk = key
 | 
			
		||||
    if CONF_ENCRYPTION in conf:
 | 
			
		||||
        noise_psk = conf[CONF_ENCRYPTION][CONF_KEY]
 | 
			
		||||
    _LOGGER.info("Starting log output from %s using esphome API", address)
 | 
			
		||||
    cli = APIClient(
 | 
			
		||||
        address,
 | 
			
		||||
 
 | 
			
		||||
@@ -3,13 +3,10 @@
 | 
			
		||||
#include <map>
 | 
			
		||||
#include "api_server.h"
 | 
			
		||||
#ifdef USE_API
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
#include "user_services.h"
 | 
			
		||||
#endif
 | 
			
		||||
namespace esphome {
 | 
			
		||||
namespace api {
 | 
			
		||||
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
template<typename T, typename... Ts> class CustomAPIDeviceService : public UserServiceBase<Ts...> {
 | 
			
		||||
 public:
 | 
			
		||||
  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_;
 | 
			
		||||
  void (T::*callback_)(Ts...);
 | 
			
		||||
};
 | 
			
		||||
#endif  // USE_API_SERVICES
 | 
			
		||||
 | 
			
		||||
class CustomAPIDevice {
 | 
			
		||||
 public:
 | 
			
		||||
@@ -50,14 +46,12 @@ class CustomAPIDevice {
 | 
			
		||||
   * @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.
 | 
			
		||||
   */
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
  template<typename T, typename... Ts>
 | 
			
		||||
  void register_service(void (T::*callback)(Ts...), const std::string &name,
 | 
			
		||||
                        const std::array<std::string, sizeof...(Ts)> &arg_names) {
 | 
			
		||||
    auto *service = new CustomAPIDeviceService<T, Ts...>(name, arg_names, (T *) this, callback);  // NOLINT
 | 
			
		||||
    global_api_server->register_user_service(service);
 | 
			
		||||
  }
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
  /** 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 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) {
 | 
			
		||||
    auto *service = new CustomAPIDeviceService<T>(name, {}, (T *) this, callback);  // NOLINT
 | 
			
		||||
    global_api_server->register_user_service(service);
 | 
			
		||||
  }
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
  /** Subscribe to the state (or attribute state) of an entity from Home Assistant.
 | 
			
		||||
   *
 | 
			
		||||
 
 | 
			
		||||
@@ -11,18 +11,6 @@ namespace esphome {
 | 
			
		||||
namespace api {
 | 
			
		||||
 | 
			
		||||
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:
 | 
			
		||||
  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>
 | 
			
		||||
  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 {
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,6 @@
 | 
			
		||||
#include "list_entities.h"
 | 
			
		||||
#ifdef USE_API
 | 
			
		||||
#include "api_connection.h"
 | 
			
		||||
#include "api_pb2.h"
 | 
			
		||||
#include "esphome/core/application.h"
 | 
			
		||||
#include "esphome/core/log.h"
 | 
			
		||||
#include "esphome/core/util.h"
 | 
			
		||||
@@ -9,84 +8,152 @@
 | 
			
		||||
namespace esphome {
 | 
			
		||||
namespace api {
 | 
			
		||||
 | 
			
		||||
// Generate entity handler implementations using macros
 | 
			
		||||
#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
 | 
			
		||||
#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
 | 
			
		||||
#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
 | 
			
		||||
#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
 | 
			
		||||
#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
 | 
			
		||||
#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
 | 
			
		||||
#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
 | 
			
		||||
#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
 | 
			
		||||
#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
 | 
			
		||||
#ifdef USE_VALVE
 | 
			
		||||
LIST_ENTITIES_HANDLER(valve, valve::Valve, ListEntitiesValveResponse)
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CAMERA
 | 
			
		||||
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)
 | 
			
		||||
bool ListEntitiesIterator::on_valve(valve::Valve *valve) {
 | 
			
		||||
  this->client_->send_valve_info(valve);
 | 
			
		||||
  return true;
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Special cases that don't follow the pattern
 | 
			
		||||
bool ListEntitiesIterator::on_end() { return this->client_->send_list_info_done(); }
 | 
			
		||||
 | 
			
		||||
ListEntitiesIterator::ListEntitiesIterator(APIConnection *client) : client_(client) {}
 | 
			
		||||
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
bool ListEntitiesIterator::on_service(UserServiceDescriptor *service) {
 | 
			
		||||
  auto resp = service->encode_list_service_response();
 | 
			
		||||
  return this->client_->send_message(resp, ListEntitiesServicesResponse::MESSAGE_TYPE);
 | 
			
		||||
  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
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -9,85 +9,75 @@ namespace api {
 | 
			
		||||
 | 
			
		||||
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 {
 | 
			
		||||
 public:
 | 
			
		||||
  ListEntitiesIterator(APIConnection *client);
 | 
			
		||||
#ifdef USE_BINARY_SENSOR
 | 
			
		||||
  bool on_binary_sensor(binary_sensor::BinarySensor *entity) override;
 | 
			
		||||
  bool on_binary_sensor(binary_sensor::BinarySensor *binary_sensor) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_COVER
 | 
			
		||||
  bool on_cover(cover::Cover *entity) override;
 | 
			
		||||
  bool on_cover(cover::Cover *cover) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_FAN
 | 
			
		||||
  bool on_fan(fan::Fan *entity) override;
 | 
			
		||||
  bool on_fan(fan::Fan *fan) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_LIGHT
 | 
			
		||||
  bool on_light(light::LightState *entity) override;
 | 
			
		||||
  bool on_light(light::LightState *light) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SENSOR
 | 
			
		||||
  bool on_sensor(sensor::Sensor *entity) override;
 | 
			
		||||
  bool on_sensor(sensor::Sensor *sensor) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SWITCH
 | 
			
		||||
  bool on_switch(switch_::Switch *entity) override;
 | 
			
		||||
  bool on_switch(switch_::Switch *a_switch) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BUTTON
 | 
			
		||||
  bool on_button(button::Button *entity) override;
 | 
			
		||||
  bool on_button(button::Button *button) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_TEXT_SENSOR
 | 
			
		||||
  bool on_text_sensor(text_sensor::TextSensor *entity) override;
 | 
			
		||||
  bool on_text_sensor(text_sensor::TextSensor *text_sensor) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
  bool on_service(UserServiceDescriptor *service) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CAMERA
 | 
			
		||||
  bool on_camera(camera::Camera *entity) override;
 | 
			
		||||
#ifdef USE_ESP32_CAMERA
 | 
			
		||||
  bool on_camera(esp32_camera::ESP32Camera *camera) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CLIMATE
 | 
			
		||||
  bool on_climate(climate::Climate *entity) override;
 | 
			
		||||
  bool on_climate(climate::Climate *climate) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_NUMBER
 | 
			
		||||
  bool on_number(number::Number *entity) override;
 | 
			
		||||
  bool on_number(number::Number *number) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_DATETIME_DATE
 | 
			
		||||
  bool on_date(datetime::DateEntity *entity) override;
 | 
			
		||||
  bool on_date(datetime::DateEntity *date) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_DATETIME_TIME
 | 
			
		||||
  bool on_time(datetime::TimeEntity *entity) override;
 | 
			
		||||
  bool on_time(datetime::TimeEntity *time) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_DATETIME_DATETIME
 | 
			
		||||
  bool on_datetime(datetime::DateTimeEntity *entity) override;
 | 
			
		||||
  bool on_datetime(datetime::DateTimeEntity *datetime) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_TEXT
 | 
			
		||||
  bool on_text(text::Text *entity) override;
 | 
			
		||||
  bool on_text(text::Text *text) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SELECT
 | 
			
		||||
  bool on_select(select::Select *entity) override;
 | 
			
		||||
  bool on_select(select::Select *select) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_LOCK
 | 
			
		||||
  bool on_lock(lock::Lock *entity) override;
 | 
			
		||||
  bool on_lock(lock::Lock *a_lock) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_VALVE
 | 
			
		||||
  bool on_valve(valve::Valve *entity) override;
 | 
			
		||||
  bool on_valve(valve::Valve *valve) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_MEDIA_PLAYER
 | 
			
		||||
  bool on_media_player(media_player::MediaPlayer *entity) override;
 | 
			
		||||
  bool on_media_player(media_player::MediaPlayer *media_player) override;
 | 
			
		||||
#endif
 | 
			
		||||
#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
 | 
			
		||||
#ifdef USE_EVENT
 | 
			
		||||
  bool on_event(event::Event *entity) override;
 | 
			
		||||
  bool on_event(event::Event *event) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_UPDATE
 | 
			
		||||
  bool on_update(update::UpdateEntity *entity) override;
 | 
			
		||||
  bool on_update(update::UpdateEntity *update) override;
 | 
			
		||||
#endif
 | 
			
		||||
  bool on_end() override;
 | 
			
		||||
  bool completed() { return this->state_ == IteratorState::NONE; }
 | 
			
		||||
 
 | 
			
		||||
@@ -8,7 +8,7 @@ namespace api {
 | 
			
		||||
 | 
			
		||||
static const char *const TAG = "api.proto";
 | 
			
		||||
 | 
			
		||||
void ProtoDecodableMessage::decode(const uint8_t *buffer, size_t length) {
 | 
			
		||||
void ProtoMessage::decode(const uint8_t *buffer, size_t length) {
 | 
			
		||||
  uint32_t i = 0;
 | 
			
		||||
  bool error = false;
 | 
			
		||||
  while (i < length) {
 | 
			
		||||
 
 | 
			
		||||
@@ -4,7 +4,6 @@
 | 
			
		||||
#include "esphome/core/helpers.h"
 | 
			
		||||
#include "esphome/core/log.h"
 | 
			
		||||
 | 
			
		||||
#include <cassert>
 | 
			
		||||
#include <vector>
 | 
			
		||||
 | 
			
		||||
#ifdef ESPHOME_LOG_HAS_VERY_VERBOSE
 | 
			
		||||
@@ -60,6 +59,7 @@ class ProtoVarInt {
 | 
			
		||||
  uint32_t as_uint32() const { return this->value_; }
 | 
			
		||||
  uint64_t as_uint64() 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 {
 | 
			
		||||
    // Not ZigZag encoded
 | 
			
		||||
    return static_cast<int32_t>(this->as_int64());
 | 
			
		||||
@@ -133,25 +133,15 @@ class ProtoVarInt {
 | 
			
		||||
  uint64_t value_;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// Forward declaration for decode_to_message and encode_to_writer
 | 
			
		||||
class ProtoMessage;
 | 
			
		||||
class ProtoDecodableMessage;
 | 
			
		||||
 | 
			
		||||
class ProtoLengthDelimited {
 | 
			
		||||
 public:
 | 
			
		||||
  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_); }
 | 
			
		||||
 | 
			
		||||
  /**
 | 
			
		||||
   * Decode the length-delimited data into an existing ProtoDecodableMessage instance.
 | 
			
		||||
   *
 | 
			
		||||
   * This method allows decoding without templates, enabling use in contexts
 | 
			
		||||
   * where the message type is not known at compile time. The ProtoDecodableMessage's
 | 
			
		||||
   * decode() method will be called with the raw data and length.
 | 
			
		||||
   *
 | 
			
		||||
   * @param msg The ProtoDecodableMessage instance to decode into
 | 
			
		||||
   */
 | 
			
		||||
  void decode_to_message(ProtoDecodableMessage &msg) const;
 | 
			
		||||
  template<class C> C as_message() const {
 | 
			
		||||
    auto msg = C();
 | 
			
		||||
    msg.decode(this->value_, this->length_);
 | 
			
		||||
    return msg;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  const uint8_t *const value_;
 | 
			
		||||
@@ -176,7 +166,23 @@ class Proto32Bit {
 | 
			
		||||
  const uint32_t value_;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// NOTE: Proto64Bit class removed - wire type 1 (64-bit fixed) not supported
 | 
			
		||||
class Proto64Bit {
 | 
			
		||||
 public:
 | 
			
		||||
  explicit Proto64Bit(uint64_t value) : value_(value) {}
 | 
			
		||||
  uint64_t as_fixed64() const { return this->value_; }
 | 
			
		||||
  int64_t as_sfixed64() const { return static_cast<int64_t>(this->value_); }
 | 
			
		||||
  double as_double() const {
 | 
			
		||||
    union {
 | 
			
		||||
      uint64_t raw;
 | 
			
		||||
      double value;
 | 
			
		||||
    } s{};
 | 
			
		||||
    s.raw = this->value_;
 | 
			
		||||
    return s.value;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  const uint64_t value_;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
class ProtoWriteBuffer {
 | 
			
		||||
 public:
 | 
			
		||||
@@ -190,9 +196,9 @@ class ProtoWriteBuffer {
 | 
			
		||||
   * @param field_id Field number (tag) in the protobuf message
 | 
			
		||||
   * @param type Wire type value:
 | 
			
		||||
   *   - 0: Varint (int32, int64, uint32, uint64, sint32, sint64, bool, enum)
 | 
			
		||||
   *   - 1: 64-bit (fixed64, sfixed64, double)
 | 
			
		||||
   *   - 2: Length-delimited (string, bytes, embedded messages, packed repeated fields)
 | 
			
		||||
   *   - 5: 32-bit (fixed32, sfixed32, float)
 | 
			
		||||
   *   - Note: Wire type 1 (64-bit fixed) is not supported
 | 
			
		||||
   *
 | 
			
		||||
   * Following https://protobuf.dev/programming-guides/encoding/#structure
 | 
			
		||||
   */
 | 
			
		||||
@@ -243,10 +249,23 @@ class ProtoWriteBuffer {
 | 
			
		||||
    this->write((value >> 16) & 0xFF);
 | 
			
		||||
    this->write((value >> 24) & 0xFF);
 | 
			
		||||
  }
 | 
			
		||||
  // NOTE: Wire type 1 (64-bit fixed: double, fixed64, sfixed64) is intentionally
 | 
			
		||||
  // not supported to reduce overhead on embedded systems. All ESPHome devices are
 | 
			
		||||
  // 32-bit microcontrollers where 64-bit operations are expensive. If 64-bit support
 | 
			
		||||
  // is needed in the future, the necessary encoding/decoding functions must be added.
 | 
			
		||||
  void encode_fixed64(uint32_t field_id, uint64_t value, bool force = false) {
 | 
			
		||||
    if (value == 0 && !force)
 | 
			
		||||
      return;
 | 
			
		||||
 | 
			
		||||
    this->encode_field_raw(field_id, 1);  // type 1: 64-bit fixed64
 | 
			
		||||
    this->write((value >> 0) & 0xFF);
 | 
			
		||||
    this->write((value >> 8) & 0xFF);
 | 
			
		||||
    this->write((value >> 16) & 0xFF);
 | 
			
		||||
    this->write((value >> 24) & 0xFF);
 | 
			
		||||
    this->write((value >> 32) & 0xFF);
 | 
			
		||||
    this->write((value >> 40) & 0xFF);
 | 
			
		||||
    this->write((value >> 48) & 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) {
 | 
			
		||||
    if (value == 0.0f && !force)
 | 
			
		||||
      return;
 | 
			
		||||
@@ -287,7 +306,18 @@ class ProtoWriteBuffer {
 | 
			
		||||
    }
 | 
			
		||||
    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_; }
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
@@ -299,6 +329,7 @@ class ProtoMessage {
 | 
			
		||||
  virtual ~ProtoMessage() = default;
 | 
			
		||||
  // Default implementation for messages with no fields
 | 
			
		||||
  virtual void encode(ProtoWriteBuffer buffer) const {}
 | 
			
		||||
  void decode(const uint8_t *buffer, size_t length);
 | 
			
		||||
  // Default implementation for messages with no fields
 | 
			
		||||
  virtual void calculate_size(uint32_t &total_size) const {}
 | 
			
		||||
#ifdef HAS_PROTO_MESSAGE_DUMP
 | 
			
		||||
@@ -306,519 +337,14 @@ class ProtoMessage {
 | 
			
		||||
  virtual void dump_to(std::string &out) const = 0;
 | 
			
		||||
  virtual const char *message_name() const { return "unknown"; }
 | 
			
		||||
#endif
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// Base class for messages that support decoding
 | 
			
		||||
class ProtoDecodableMessage : public ProtoMessage {
 | 
			
		||||
 public:
 | 
			
		||||
  void decode(const uint8_t *buffer, size_t length);
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  virtual bool decode_varint(uint32_t field_id, ProtoVarInt value) { return false; }
 | 
			
		||||
  virtual bool decode_length(uint32_t field_id, ProtoLengthDelimited value) { return false; }
 | 
			
		||||
  virtual bool decode_32bit(uint32_t field_id, Proto32Bit value) { return false; }
 | 
			
		||||
  // NOTE: decode_64bit removed - wire type 1 not supported
 | 
			
		||||
  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 a float field to the total message size
 | 
			
		||||
   */
 | 
			
		||||
  static inline void add_float_field(uint32_t &total_size, uint32_t field_id_size, float value) {
 | 
			
		||||
    if (value != 0.0f) {
 | 
			
		||||
      total_size += field_id_size + 4;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // NOTE: add_double_field removed - wire type 1 (64-bit: double) not supported
 | 
			
		||||
  // to reduce overhead on embedded systems
 | 
			
		||||
 | 
			
		||||
  /**
 | 
			
		||||
   * @brief Calculates and adds the size of a fixed32 field to the total message size
 | 
			
		||||
   */
 | 
			
		||||
  static inline void add_fixed32_field(uint32_t &total_size, uint32_t field_id_size, uint32_t value) {
 | 
			
		||||
    if (value != 0) {
 | 
			
		||||
      total_size += field_id_size + 4;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // NOTE: add_fixed64_field removed - wire type 1 (64-bit: fixed64) not supported
 | 
			
		||||
  // to reduce overhead on embedded systems
 | 
			
		||||
 | 
			
		||||
  /**
 | 
			
		||||
   * @brief Calculates and adds the size of a sfixed32 field to the total message size
 | 
			
		||||
   */
 | 
			
		||||
  static inline void add_sfixed32_field(uint32_t &total_size, uint32_t field_id_size, int32_t value) {
 | 
			
		||||
    if (value != 0) {
 | 
			
		||||
      total_size += field_id_size + 4;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // NOTE: add_sfixed64_field removed - wire type 1 (64-bit: sfixed64) not supported
 | 
			
		||||
  // to reduce overhead on embedded systems
 | 
			
		||||
 | 
			
		||||
  /**
 | 
			
		||||
   * @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);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // NOTE: sint64 support functions (add_sint64_field, add_sint64_field_repeated) removed
 | 
			
		||||
  // sint64 type is not supported by ESPHome API to reduce overhead on embedded systems
 | 
			
		||||
 | 
			
		||||
  /**
 | 
			
		||||
   * @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 ProtoDecodableMessage is defined
 | 
			
		||||
inline void ProtoLengthDelimited::decode_to_message(ProtoDecodableMessage &msg) const {
 | 
			
		||||
  msg.decode(this->value_, this->length_);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
template<typename T> const char *proto_enum_to_string(T value);
 | 
			
		||||
 | 
			
		||||
class ProtoService {
 | 
			
		||||
@@ -837,11 +363,11 @@ class ProtoService {
 | 
			
		||||
   * @return A ProtoWriteBuffer object with the reserved size.
 | 
			
		||||
   */
 | 
			
		||||
  virtual ProtoWriteBuffer create_buffer(uint32_t reserve_size) = 0;
 | 
			
		||||
  virtual bool send_buffer(ProtoWriteBuffer buffer, uint8_t message_type) = 0;
 | 
			
		||||
  virtual void read_message(uint32_t msg_size, uint32_t msg_type, uint8_t *msg_data) = 0;
 | 
			
		||||
  virtual bool send_buffer(ProtoWriteBuffer buffer, uint16_t message_type) = 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
 | 
			
		||||
  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;
 | 
			
		||||
    msg.calculate_size(msg_size);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -6,67 +6,73 @@
 | 
			
		||||
namespace esphome {
 | 
			
		||||
namespace api {
 | 
			
		||||
 | 
			
		||||
// Generate entity handler implementations using macros
 | 
			
		||||
#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
 | 
			
		||||
#ifdef USE_COVER
 | 
			
		||||
INITIAL_STATE_HANDLER(cover, cover::Cover)
 | 
			
		||||
bool InitialStateIterator::on_cover(cover::Cover *cover) { return this->client_->send_cover_state(cover); }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_FAN
 | 
			
		||||
INITIAL_STATE_HANDLER(fan, fan::Fan)
 | 
			
		||||
bool InitialStateIterator::on_fan(fan::Fan *fan) { return this->client_->send_fan_state(fan); }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_LIGHT
 | 
			
		||||
INITIAL_STATE_HANDLER(light, light::LightState)
 | 
			
		||||
bool InitialStateIterator::on_light(light::LightState *light) { return this->client_->send_light_state(light); }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SENSOR
 | 
			
		||||
INITIAL_STATE_HANDLER(sensor, sensor::Sensor)
 | 
			
		||||
bool InitialStateIterator::on_sensor(sensor::Sensor *sensor) { return this->client_->send_sensor_state(sensor); }
 | 
			
		||||
#endif
 | 
			
		||||
#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
 | 
			
		||||
#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
 | 
			
		||||
#ifdef USE_CLIMATE
 | 
			
		||||
INITIAL_STATE_HANDLER(climate, climate::Climate)
 | 
			
		||||
bool InitialStateIterator::on_climate(climate::Climate *climate) { return this->client_->send_climate_state(climate); }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_NUMBER
 | 
			
		||||
INITIAL_STATE_HANDLER(number, number::Number)
 | 
			
		||||
bool InitialStateIterator::on_number(number::Number *number) { return this->client_->send_number_state(number); }
 | 
			
		||||
#endif
 | 
			
		||||
#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
 | 
			
		||||
#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
 | 
			
		||||
#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
 | 
			
		||||
#ifdef USE_TEXT
 | 
			
		||||
INITIAL_STATE_HANDLER(text, text::Text)
 | 
			
		||||
bool InitialStateIterator::on_text(text::Text *text) { return this->client_->send_text_state(text); }
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SELECT
 | 
			
		||||
INITIAL_STATE_HANDLER(select, select::Select)
 | 
			
		||||
bool InitialStateIterator::on_select(select::Select *select) { return this->client_->send_select_state(select); }
 | 
			
		||||
#endif
 | 
			
		||||
#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
 | 
			
		||||
#ifdef USE_VALVE
 | 
			
		||||
INITIAL_STATE_HANDLER(valve, valve::Valve)
 | 
			
		||||
bool InitialStateIterator::on_valve(valve::Valve *valve) { return this->client_->send_valve_state(valve); }
 | 
			
		||||
#endif
 | 
			
		||||
#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
 | 
			
		||||
#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
 | 
			
		||||
#ifdef USE_UPDATE
 | 
			
		||||
INITIAL_STATE_HANDLER(update, update::UpdateEntity)
 | 
			
		||||
bool InitialStateIterator::on_update(update::UpdateEntity *update) { return this->client_->send_update_state(update); }
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Special cases (button and event) are already defined inline in subscribe_state.h
 | 
			
		||||
 | 
			
		||||
InitialStateIterator::InitialStateIterator(APIConnection *client) : client_(client) {}
 | 
			
		||||
 | 
			
		||||
}  // namespace api
 | 
			
		||||
 
 | 
			
		||||
@@ -10,78 +10,71 @@ namespace api {
 | 
			
		||||
 | 
			
		||||
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 {
 | 
			
		||||
 public:
 | 
			
		||||
  InitialStateIterator(APIConnection *client);
 | 
			
		||||
#ifdef USE_BINARY_SENSOR
 | 
			
		||||
  bool on_binary_sensor(binary_sensor::BinarySensor *entity) override;
 | 
			
		||||
  bool on_binary_sensor(binary_sensor::BinarySensor *binary_sensor) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_COVER
 | 
			
		||||
  bool on_cover(cover::Cover *entity) override;
 | 
			
		||||
  bool on_cover(cover::Cover *cover) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_FAN
 | 
			
		||||
  bool on_fan(fan::Fan *entity) override;
 | 
			
		||||
  bool on_fan(fan::Fan *fan) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_LIGHT
 | 
			
		||||
  bool on_light(light::LightState *entity) override;
 | 
			
		||||
  bool on_light(light::LightState *light) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SENSOR
 | 
			
		||||
  bool on_sensor(sensor::Sensor *entity) override;
 | 
			
		||||
  bool on_sensor(sensor::Sensor *sensor) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SWITCH
 | 
			
		||||
  bool on_switch(switch_::Switch *entity) override;
 | 
			
		||||
  bool on_switch(switch_::Switch *a_switch) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_BUTTON
 | 
			
		||||
  bool on_button(button::Button *button) override { return true; };
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_TEXT_SENSOR
 | 
			
		||||
  bool on_text_sensor(text_sensor::TextSensor *entity) override;
 | 
			
		||||
  bool on_text_sensor(text_sensor::TextSensor *text_sensor) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_CLIMATE
 | 
			
		||||
  bool on_climate(climate::Climate *entity) override;
 | 
			
		||||
  bool on_climate(climate::Climate *climate) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_NUMBER
 | 
			
		||||
  bool on_number(number::Number *entity) override;
 | 
			
		||||
  bool on_number(number::Number *number) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_DATETIME_DATE
 | 
			
		||||
  bool on_date(datetime::DateEntity *entity) override;
 | 
			
		||||
  bool on_date(datetime::DateEntity *date) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_DATETIME_TIME
 | 
			
		||||
  bool on_time(datetime::TimeEntity *entity) override;
 | 
			
		||||
  bool on_time(datetime::TimeEntity *time) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_DATETIME_DATETIME
 | 
			
		||||
  bool on_datetime(datetime::DateTimeEntity *entity) override;
 | 
			
		||||
  bool on_datetime(datetime::DateTimeEntity *datetime) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_TEXT
 | 
			
		||||
  bool on_text(text::Text *entity) override;
 | 
			
		||||
  bool on_text(text::Text *text) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_SELECT
 | 
			
		||||
  bool on_select(select::Select *entity) override;
 | 
			
		||||
  bool on_select(select::Select *select) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_LOCK
 | 
			
		||||
  bool on_lock(lock::Lock *entity) override;
 | 
			
		||||
  bool on_lock(lock::Lock *a_lock) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_VALVE
 | 
			
		||||
  bool on_valve(valve::Valve *entity) override;
 | 
			
		||||
  bool on_valve(valve::Valve *valve) override;
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_MEDIA_PLAYER
 | 
			
		||||
  bool on_media_player(media_player::MediaPlayer *entity) override;
 | 
			
		||||
  bool on_media_player(media_player::MediaPlayer *media_player) override;
 | 
			
		||||
#endif
 | 
			
		||||
#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
 | 
			
		||||
#ifdef USE_EVENT
 | 
			
		||||
  bool on_event(event::Event *event) override { return true; };
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef USE_UPDATE
 | 
			
		||||
  bool on_update(update::UpdateEntity *entity) override;
 | 
			
		||||
  bool on_update(update::UpdateEntity *update) override;
 | 
			
		||||
#endif
 | 
			
		||||
  bool completed() { return this->state_ == IteratorState::NONE; }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -7,7 +7,6 @@
 | 
			
		||||
#include "esphome/core/automation.h"
 | 
			
		||||
#include "api_pb2.h"
 | 
			
		||||
 | 
			
		||||
#ifdef USE_API_SERVICES
 | 
			
		||||
namespace esphome {
 | 
			
		||||
namespace api {
 | 
			
		||||
 | 
			
		||||
@@ -16,8 +15,6 @@ class UserServiceDescriptor {
 | 
			
		||||
  virtual ListEntitiesServicesResponse encode_list_service_response() = 0;
 | 
			
		||||
 | 
			
		||||
  virtual bool execute_service(const ExecuteServiceRequest &req) = 0;
 | 
			
		||||
 | 
			
		||||
  bool is_internal() { return false; }
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
template<typename T> T get_execute_arg_value(const ExecuteServiceArgument &arg);
 | 
			
		||||
@@ -76,4 +73,3 @@ template<typename... Ts> class UserServiceTrigger : public UserServiceBase<Ts...
 | 
			
		||||
 | 
			
		||||
}  // namespace api
 | 
			
		||||
}  // namespace esphome
 | 
			
		||||
#endif  // USE_API_SERVICES
 | 
			
		||||
 
 | 
			
		||||
@@ -3,6 +3,8 @@
 | 
			
		||||
#include "esphome/core/component.h"
 | 
			
		||||
#include "esphome/components/as3935/as3935.h"
 | 
			
		||||
#include "esphome/components/spi/spi.h"
 | 
			
		||||
#include "esphome/components/sensor/sensor.h"
 | 
			
		||||
#include "esphome/components/binary_sensor/binary_sensor.h"
 | 
			
		||||
 | 
			
		||||
namespace esphome {
 | 
			
		||||
namespace as3935_spi {
 | 
			
		||||
 
 | 
			
		||||
@@ -50,6 +50,7 @@ class AS5600Component : public Component, public i2c::I2CDevice {
 | 
			
		||||
  void setup() override;
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  /// HARDWARE_LATE setup priority
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
 | 
			
		||||
  // configuration setters
 | 
			
		||||
  void set_dir_pin(InternalGPIOPin *pin) { this->dir_pin_ = pin; }
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,6 @@ from esphome.const import (
 | 
			
		||||
    PLATFORM_BK72XX,
 | 
			
		||||
    PLATFORM_ESP32,
 | 
			
		||||
    PLATFORM_ESP8266,
 | 
			
		||||
    PLATFORM_LN882X,
 | 
			
		||||
    PLATFORM_RTL87XX,
 | 
			
		||||
)
 | 
			
		||||
from esphome.core import CORE, coroutine_with_priority
 | 
			
		||||
@@ -15,15 +14,7 @@ CODEOWNERS = ["@OttoWinter"]
 | 
			
		||||
CONFIG_SCHEMA = cv.All(
 | 
			
		||||
    cv.Schema({}),
 | 
			
		||||
    cv.only_with_arduino,
 | 
			
		||||
    cv.only_on(
 | 
			
		||||
        [
 | 
			
		||||
            PLATFORM_ESP32,
 | 
			
		||||
            PLATFORM_ESP8266,
 | 
			
		||||
            PLATFORM_BK72XX,
 | 
			
		||||
            PLATFORM_LN882X,
 | 
			
		||||
            PLATFORM_RTL87XX,
 | 
			
		||||
        ]
 | 
			
		||||
    ),
 | 
			
		||||
    cv.only_on([PLATFORM_ESP32, PLATFORM_ESP8266, PLATFORM_BK72XX, PLATFORM_RTL87XX]),
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@@ -31,7 +22,7 @@ CONFIG_SCHEMA = cv.All(
 | 
			
		||||
async def to_code(config):
 | 
			
		||||
    if CORE.is_esp32 or CORE.is_libretiny:
 | 
			
		||||
        # 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:
 | 
			
		||||
        # https://github.com/ESP32Async/ESPAsyncTCP
 | 
			
		||||
        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;
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
  void set_temperature(sensor::Sensor *temperature) { temperature_ = temperature; }
 | 
			
		||||
  void set_humidity(sensor::Sensor *humidity) { humidity_ = humidity; }
 | 
			
		||||
  void set_battery_level(sensor::Sensor *battery_level) { battery_level_ = battery_level; }
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,6 @@
 | 
			
		||||
#include "atm90e32.h"
 | 
			
		||||
#include <cinttypes>
 | 
			
		||||
#include <cmath>
 | 
			
		||||
#include <numbers>
 | 
			
		||||
#include "esphome/core/log.h"
 | 
			
		||||
 | 
			
		||||
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 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 threshold = peak_01v / divider;
 | 
			
		||||
 
 | 
			
		||||
@@ -312,7 +312,7 @@ FileDecoderState AudioDecoder::decode_mp3_() {
 | 
			
		||||
  if (err) {
 | 
			
		||||
    switch (err) {
 | 
			
		||||
      case esp_audio_libs::helix_decoder::ERR_MP3_OUT_OF_MEMORY:
 | 
			
		||||
        [[fallthrough]];
 | 
			
		||||
        // Intentional fallthrough
 | 
			
		||||
      case esp_audio_libs::helix_decoder::ERR_MP3_NULL_POINTER:
 | 
			
		||||
        return FileDecoderState::FAILED;
 | 
			
		||||
        break;
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,6 @@
 | 
			
		||||
#include "esphome/core/defines.h"
 | 
			
		||||
#include "esphome/core/hal.h"
 | 
			
		||||
#include "esphome/core/helpers.h"
 | 
			
		||||
#include "esphome/core/log.h"
 | 
			
		||||
 | 
			
		||||
#if CONFIG_MBEDTLS_CERTIFICATE_BUNDLE
 | 
			
		||||
#include "esp_crt_bundle.h"
 | 
			
		||||
@@ -17,13 +16,13 @@ namespace audio {
 | 
			
		||||
static const uint32_t READ_WRITE_TIMEOUT_MS = 20;
 | 
			
		||||
 | 
			
		||||
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 uint8_t MAX_REDIRECTIONS = 5;
 | 
			
		||||
 | 
			
		||||
static const char *const TAG = "audio_reader";
 | 
			
		||||
static const uint8_t MAX_REDIRECTION = 5;
 | 
			
		||||
 | 
			
		||||
// Some common HTTP status codes - borrowed from http_request component accessed 20241224
 | 
			
		||||
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.cert_pem = nullptr;
 | 
			
		||||
  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.user_data = this;
 | 
			
		||||
  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);
 | 
			
		||||
 | 
			
		||||
  if (err != ESP_OK) {
 | 
			
		||||
    ESP_LOGE(TAG, "Failed to open URL");
 | 
			
		||||
    this->cleanup_connection_();
 | 
			
		||||
    return err;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  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) {
 | 
			
		||||
    ESP_LOGE(TAG, "Failed to fetch headers");
 | 
			
		||||
    this->cleanup_connection_();
 | 
			
		||||
    return ESP_FAIL;
 | 
			
		||||
  }
 | 
			
		||||
@@ -153,7 +135,7 @@ esp_err_t AudioReader::start(const std::string &uri, AudioFileType &file_type) {
 | 
			
		||||
 | 
			
		||||
  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);
 | 
			
		||||
    if (err != ESP_OK) {
 | 
			
		||||
      this->cleanup_connection_();
 | 
			
		||||
@@ -285,24 +267,21 @@ AudioReaderState AudioReader::http_read_() {
 | 
			
		||||
      return AudioReaderState::FINISHED;
 | 
			
		||||
    }
 | 
			
		||||
  } 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(),
 | 
			
		||||
                                            this->output_transfer_buffer_->free());
 | 
			
		||||
    size_t bytes_to_read = 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) {
 | 
			
		||||
      this->output_transfer_buffer_->increase_buffer_length(received_len);
 | 
			
		||||
      this->last_data_read_ms_ = millis();
 | 
			
		||||
      return AudioReaderState::READING;
 | 
			
		||||
    } else if (received_len <= 0) {
 | 
			
		||||
    } else if (received_len < 0) {
 | 
			
		||||
      // HTTP read error
 | 
			
		||||
      if (received_len == -1) {
 | 
			
		||||
        // A true connection error occured, no chance at recovery
 | 
			
		||||
      this->cleanup_connection_();
 | 
			
		||||
      return AudioReaderState::FAILED;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      // Read timed out, manually verify if it has been too long since the last successful read
 | 
			
		||||
      if ((millis() - this->last_data_read_ms_) > MAX_FETCHING_HEADER_ATTEMPTS * CONNECTION_TIMEOUT_MS) {
 | 
			
		||||
        ESP_LOGE(TAG, "Timed out");
 | 
			
		||||
    } else {
 | 
			
		||||
      if (bytes_to_read > 0) {
 | 
			
		||||
        // Read timed out
 | 
			
		||||
        if ((millis() - this->last_data_read_ms_) > CONNECTION_TIMEOUT_MS) {
 | 
			
		||||
          this->cleanup_connection_();
 | 
			
		||||
          return AudioReaderState::FAILED;
 | 
			
		||||
        }
 | 
			
		||||
@@ -310,6 +289,7 @@ AudioReaderState AudioReader::http_read_() {
 | 
			
		||||
        delay(READ_WRITE_TIMEOUT_MS);
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  return AudioReaderState::READING;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -16,6 +16,7 @@ class BParasite : public Component, public esp32_ble_tracker::ESPBTDeviceListene
 | 
			
		||||
 | 
			
		||||
  bool parse_device(const esp32_ble_tracker::ESPBTDevice &device) 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_temperature(sensor::Sensor *temperature) { temperature_ = temperature; }
 | 
			
		||||
 
 | 
			
		||||
@@ -16,6 +16,7 @@ class BLEBinaryOutput : public output::BinaryOutput, public BLEClientNode, publi
 | 
			
		||||
 public:
 | 
			
		||||
  void dump_config() 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_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); }
 | 
			
		||||
 
 | 
			
		||||
@@ -18,6 +18,7 @@ class BLEClientRSSISensor : public sensor::Sensor, public PollingComponent, publ
 | 
			
		||||
  void loop() override;
 | 
			
		||||
  void update() 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;
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -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,
 | 
			
		||||
                           esp_ble_gattc_cb_param_t *param) 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_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); }
 | 
			
		||||
 
 | 
			
		||||
@@ -19,6 +19,7 @@ class BLEClientSwitch : public switch_::Switch, public Component, public BLEClie
 | 
			
		||||
  void loop() override {}
 | 
			
		||||
  void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
 | 
			
		||||
                           esp_ble_gattc_cb_param_t *param) override;
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  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,
 | 
			
		||||
                           esp_ble_gattc_cb_param_t *param) 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_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); }
 | 
			
		||||
 
 | 
			
		||||
@@ -105,6 +105,7 @@ class BLEPresenceDevice : public binary_sensor::BinarySensorInitiallyOff,
 | 
			
		||||
      this->set_found_(false);
 | 
			
		||||
  }
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  void set_found_(bool state) {
 | 
			
		||||
 
 | 
			
		||||
@@ -99,6 +99,7 @@ class BLERSSISensor : public sensor::Sensor, public esp32_ble_tracker::ESPBTDevi
 | 
			
		||||
    return false;
 | 
			
		||||
  }
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  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;
 | 
			
		||||
  }
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
}  // namespace ble_scanner
 | 
			
		||||
 
 | 
			
		||||
@@ -85,13 +85,13 @@ async def to_code(config):
 | 
			
		||||
    await cg.register_component(var, config)
 | 
			
		||||
 | 
			
		||||
    cg.add(var.set_active(config[CONF_ACTIVE]))
 | 
			
		||||
    await esp32_ble_tracker.register_raw_ble_device(var, config)
 | 
			
		||||
    await esp32_ble_tracker.register_ble_device(var, config)
 | 
			
		||||
 | 
			
		||||
    for connection_conf in config.get(CONF_CONNECTIONS, []):
 | 
			
		||||
        connection_var = cg.new_Pvariable(connection_conf[CONF_ID])
 | 
			
		||||
        await cg.register_component(connection_var, connection_conf)
 | 
			
		||||
        cg.add(var.register_connection(connection_var))
 | 
			
		||||
        await esp32_ble_tracker.register_raw_client(connection_var, connection_conf)
 | 
			
		||||
        await esp32_ble_tracker.register_client(connection_var, connection_conf)
 | 
			
		||||
 | 
			
		||||
    if config.get(CONF_CACHE_SERVICES):
 | 
			
		||||
        add_idf_sdkconfig_option("CONFIG_BT_GATTC_CACHE_NVS_FLASH", True)
 | 
			
		||||
 
 | 
			
		||||
@@ -75,7 +75,7 @@ bool BluetoothConnection::gattc_event_handler(esp_gattc_cb_event_t event, esp_ga
 | 
			
		||||
      resp.data.reserve(param->read.value_len);
 | 
			
		||||
      // Use bulk insert instead of individual push_backs
 | 
			
		||||
      resp.data.insert(resp.data.end(), param->read.value, param->read.value + param->read.value_len);
 | 
			
		||||
      this->proxy_->get_api_connection()->send_message(resp, api::BluetoothGATTReadResponse::MESSAGE_TYPE);
 | 
			
		||||
      this->proxy_->get_api_connection()->send_message(resp);
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
    case ESP_GATTC_WRITE_CHAR_EVT:
 | 
			
		||||
@@ -89,7 +89,7 @@ bool BluetoothConnection::gattc_event_handler(esp_gattc_cb_event_t event, esp_ga
 | 
			
		||||
      api::BluetoothGATTWriteResponse resp;
 | 
			
		||||
      resp.address = this->address_;
 | 
			
		||||
      resp.handle = param->write.handle;
 | 
			
		||||
      this->proxy_->get_api_connection()->send_message(resp, api::BluetoothGATTWriteResponse::MESSAGE_TYPE);
 | 
			
		||||
      this->proxy_->get_api_connection()->send_message(resp);
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
    case ESP_GATTC_UNREG_FOR_NOTIFY_EVT: {
 | 
			
		||||
@@ -103,7 +103,7 @@ bool BluetoothConnection::gattc_event_handler(esp_gattc_cb_event_t event, esp_ga
 | 
			
		||||
      api::BluetoothGATTNotifyResponse resp;
 | 
			
		||||
      resp.address = this->address_;
 | 
			
		||||
      resp.handle = param->unreg_for_notify.handle;
 | 
			
		||||
      this->proxy_->get_api_connection()->send_message(resp, api::BluetoothGATTNotifyResponse::MESSAGE_TYPE);
 | 
			
		||||
      this->proxy_->get_api_connection()->send_message(resp);
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
    case ESP_GATTC_REG_FOR_NOTIFY_EVT: {
 | 
			
		||||
@@ -116,7 +116,7 @@ bool BluetoothConnection::gattc_event_handler(esp_gattc_cb_event_t event, esp_ga
 | 
			
		||||
      api::BluetoothGATTNotifyResponse resp;
 | 
			
		||||
      resp.address = this->address_;
 | 
			
		||||
      resp.handle = param->reg_for_notify.handle;
 | 
			
		||||
      this->proxy_->get_api_connection()->send_message(resp, api::BluetoothGATTNotifyResponse::MESSAGE_TYPE);
 | 
			
		||||
      this->proxy_->get_api_connection()->send_message(resp);
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
    case ESP_GATTC_NOTIFY_EVT: {
 | 
			
		||||
@@ -128,7 +128,7 @@ bool BluetoothConnection::gattc_event_handler(esp_gattc_cb_event_t event, esp_ga
 | 
			
		||||
      resp.data.reserve(param->notify.value_len);
 | 
			
		||||
      // Use bulk insert instead of individual push_backs
 | 
			
		||||
      resp.data.insert(resp.data.end(), param->notify.value, param->notify.value + param->notify.value_len);
 | 
			
		||||
      this->proxy_->get_api_connection()->send_message(resp, api::BluetoothGATTNotifyDataResponse::MESSAGE_TYPE);
 | 
			
		||||
      this->proxy_->get_api_connection()->send_message(resp);
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
    default:
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,6 @@
 | 
			
		||||
#include "esphome/core/log.h"
 | 
			
		||||
#include "esphome/core/macros.h"
 | 
			
		||||
#include "esphome/core/application.h"
 | 
			
		||||
#include <cstring>
 | 
			
		||||
 | 
			
		||||
#ifdef USE_ESP32
 | 
			
		||||
 | 
			
		||||
@@ -25,30 +24,9 @@ std::vector<uint64_t> get_128bit_uuid_vec(esp_bt_uuid_t uuid_source) {
 | 
			
		||||
                                   ((uint64_t) uuid.uuid.uuid128[1] << 8) | ((uint64_t) uuid.uuid.uuid128[0])};
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Batch size for BLE advertisements to maximize WiFi efficiency
 | 
			
		||||
// Each advertisement is up to 80 bytes when packaged (including protocol overhead)
 | 
			
		||||
// Most advertisements are 20-30 bytes, allowing even more to fit per packet
 | 
			
		||||
// 16 advertisements × 80 bytes (worst case) = 1280 bytes out of ~1320 bytes usable payload
 | 
			
		||||
// This achieves ~97% WiFi MTU utilization while staying under the limit
 | 
			
		||||
static constexpr size_t FLUSH_BATCH_SIZE = 16;
 | 
			
		||||
 | 
			
		||||
// Verify BLE advertisement data array size matches the BLE specification (31 bytes adv + 31 bytes scan response)
 | 
			
		||||
static_assert(sizeof(((api::BluetoothLERawAdvertisement *) nullptr)->data) == 62,
 | 
			
		||||
              "BLE advertisement data array size mismatch");
 | 
			
		||||
 | 
			
		||||
BluetoothProxy::BluetoothProxy() { global_bluetooth_proxy = this; }
 | 
			
		||||
 | 
			
		||||
void BluetoothProxy::setup() {
 | 
			
		||||
  // Pre-allocate response object
 | 
			
		||||
  this->response_ = std::make_unique<api::BluetoothLERawAdvertisementsResponse>();
 | 
			
		||||
 | 
			
		||||
  // Reserve capacity but start with size 0
 | 
			
		||||
  // Reserve 50% since we'll grow naturally and flush at FLUSH_BATCH_SIZE
 | 
			
		||||
  this->response_->advertisements.reserve(FLUSH_BATCH_SIZE / 2);
 | 
			
		||||
 | 
			
		||||
  // Don't pre-allocate pool - let it grow only if needed in busy environments
 | 
			
		||||
  // Many devices in quiet areas will never need the overflow pool
 | 
			
		||||
 | 
			
		||||
  this->parent_->add_scanner_state_callback([this](esp32_ble_tracker::ScannerState state) {
 | 
			
		||||
    if (this->api_connection_ != nullptr) {
 | 
			
		||||
      this->send_bluetooth_scanner_state_(state);
 | 
			
		||||
@@ -61,86 +39,73 @@ void BluetoothProxy::send_bluetooth_scanner_state_(esp32_ble_tracker::ScannerSta
 | 
			
		||||
  resp.state = static_cast<api::enums::BluetoothScannerState>(state);
 | 
			
		||||
  resp.mode = this->parent_->get_scan_active() ? api::enums::BluetoothScannerMode::BLUETOOTH_SCANNER_MODE_ACTIVE
 | 
			
		||||
                                               : api::enums::BluetoothScannerMode::BLUETOOTH_SCANNER_MODE_PASSIVE;
 | 
			
		||||
  this->api_connection_->send_message(resp, api::BluetoothScannerStateResponse::MESSAGE_TYPE);
 | 
			
		||||
  this->api_connection_->send_message(resp);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#ifdef USE_ESP32_BLE_DEVICE
 | 
			
		||||
bool BluetoothProxy::parse_device(const esp32_ble_tracker::ESPBTDevice &device) {
 | 
			
		||||
  // This method should never be called since bluetooth_proxy always uses raw advertisements
 | 
			
		||||
  // but we need to provide an implementation to satisfy the virtual method requirement
 | 
			
		||||
  if (!api::global_api_server->is_connected() || this->api_connection_ == nullptr || this->raw_advertisements_)
 | 
			
		||||
    return false;
 | 
			
		||||
 | 
			
		||||
  ESP_LOGV(TAG, "Proxying packet from %s - %s. RSSI: %d dB", device.get_name().c_str(), device.address_str().c_str(),
 | 
			
		||||
           device.get_rssi());
 | 
			
		||||
  this->send_api_packet_(device);
 | 
			
		||||
  return true;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static constexpr size_t FLUSH_BATCH_SIZE = 8;
 | 
			
		||||
static std::vector<api::BluetoothLERawAdvertisement> &get_batch_buffer() {
 | 
			
		||||
  static std::vector<api::BluetoothLERawAdvertisement> batch_buffer;
 | 
			
		||||
  return batch_buffer;
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
bool BluetoothProxy::parse_devices(const esp32_ble::BLEScanResult *scan_results, size_t count) {
 | 
			
		||||
  if (!api::global_api_server->is_connected() || this->api_connection_ == nullptr)
 | 
			
		||||
  if (!api::global_api_server->is_connected() || this->api_connection_ == nullptr || !this->raw_advertisements_)
 | 
			
		||||
    return false;
 | 
			
		||||
 | 
			
		||||
  auto &advertisements = this->response_->advertisements;
 | 
			
		||||
  // Get the batch buffer reference
 | 
			
		||||
  auto &batch_buffer = get_batch_buffer();
 | 
			
		||||
 | 
			
		||||
  // Reserve additional capacity if needed
 | 
			
		||||
  size_t new_size = batch_buffer.size() + count;
 | 
			
		||||
  if (batch_buffer.capacity() < new_size) {
 | 
			
		||||
    batch_buffer.reserve(new_size);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // Add new advertisements to the batch buffer
 | 
			
		||||
  for (size_t i = 0; i < count; i++) {
 | 
			
		||||
    auto &result = scan_results[i];
 | 
			
		||||
    uint8_t length = result.adv_data_len + result.scan_rsp_len;
 | 
			
		||||
 | 
			
		||||
    // Check if we need to expand the vector
 | 
			
		||||
    if (this->advertisement_count_ >= advertisements.size()) {
 | 
			
		||||
      if (this->advertisement_pool_.empty()) {
 | 
			
		||||
        // No room in pool, need to allocate
 | 
			
		||||
        advertisements.emplace_back();
 | 
			
		||||
      } else {
 | 
			
		||||
        // Pull from pool
 | 
			
		||||
        advertisements.push_back(std::move(this->advertisement_pool_.back()));
 | 
			
		||||
        this->advertisement_pool_.pop_back();
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Fill in the data directly at current position
 | 
			
		||||
    auto &adv = advertisements[this->advertisement_count_];
 | 
			
		||||
    batch_buffer.emplace_back();
 | 
			
		||||
    auto &adv = batch_buffer.back();
 | 
			
		||||
    adv.address = esp32_ble::ble_addr_to_uint64(result.bda);
 | 
			
		||||
    adv.rssi = result.rssi;
 | 
			
		||||
    adv.address_type = result.ble_addr_type;
 | 
			
		||||
    adv.data_len = length;
 | 
			
		||||
    std::memcpy(adv.data, result.ble_adv, length);
 | 
			
		||||
 | 
			
		||||
    this->advertisement_count_++;
 | 
			
		||||
    adv.data.assign(&result.ble_adv[0], &result.ble_adv[length]);
 | 
			
		||||
 | 
			
		||||
    ESP_LOGV(TAG, "Queuing raw packet from %02X:%02X:%02X:%02X:%02X:%02X, length %d. RSSI: %d dB", result.bda[0],
 | 
			
		||||
             result.bda[1], result.bda[2], result.bda[3], result.bda[4], result.bda[5], length, result.rssi);
 | 
			
		||||
 | 
			
		||||
    // Flush if we have reached FLUSH_BATCH_SIZE
 | 
			
		||||
    if (this->advertisement_count_ >= FLUSH_BATCH_SIZE) {
 | 
			
		||||
      this->flush_pending_advertisements();
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // Only send if we've accumulated a good batch size to maximize batching efficiency
 | 
			
		||||
  // https://github.com/esphome/backlog/issues/21
 | 
			
		||||
  if (batch_buffer.size() >= FLUSH_BATCH_SIZE) {
 | 
			
		||||
    this->flush_pending_advertisements();
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  return true;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void BluetoothProxy::flush_pending_advertisements() {
 | 
			
		||||
  if (this->advertisement_count_ == 0 || !api::global_api_server->is_connected() || this->api_connection_ == nullptr)
 | 
			
		||||
  auto &batch_buffer = get_batch_buffer();
 | 
			
		||||
  if (batch_buffer.empty() || !api::global_api_server->is_connected() || this->api_connection_ == nullptr)
 | 
			
		||||
    return;
 | 
			
		||||
 | 
			
		||||
  auto &advertisements = this->response_->advertisements;
 | 
			
		||||
 | 
			
		||||
  // Return any items beyond advertisement_count_ to the pool
 | 
			
		||||
  if (advertisements.size() > this->advertisement_count_) {
 | 
			
		||||
    // Move unused items back to pool
 | 
			
		||||
    this->advertisement_pool_.insert(this->advertisement_pool_.end(),
 | 
			
		||||
                                     std::make_move_iterator(advertisements.begin() + this->advertisement_count_),
 | 
			
		||||
                                     std::make_move_iterator(advertisements.end()));
 | 
			
		||||
 | 
			
		||||
    // Resize to actual count
 | 
			
		||||
    advertisements.resize(this->advertisement_count_);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // Send the message
 | 
			
		||||
  this->api_connection_->send_message(*this->response_, api::BluetoothLERawAdvertisementsResponse::MESSAGE_TYPE);
 | 
			
		||||
 | 
			
		||||
  // Reset count - existing items will be overwritten in next batch
 | 
			
		||||
  this->advertisement_count_ = 0;
 | 
			
		||||
  api::BluetoothLERawAdvertisementsResponse resp;
 | 
			
		||||
  resp.advertisements.swap(batch_buffer);
 | 
			
		||||
  this->api_connection_->send_message(resp);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#ifdef USE_ESP32_BLE_DEVICE
 | 
			
		||||
void BluetoothProxy::send_api_packet_(const esp32_ble_tracker::ESPBTDevice &device) {
 | 
			
		||||
  api::BluetoothLEAdvertisementResponse resp;
 | 
			
		||||
  resp.address = device.address_uint64();
 | 
			
		||||
@@ -176,16 +141,16 @@ void BluetoothProxy::send_api_packet_(const esp32_ble_tracker::ESPBTDevice &devi
 | 
			
		||||
    manufacturer_data.data.assign(data.data.begin(), data.data.end());
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  this->api_connection_->send_message(resp, api::BluetoothLEAdvertisementResponse::MESSAGE_TYPE);
 | 
			
		||||
  this->api_connection_->send_message(resp);
 | 
			
		||||
}
 | 
			
		||||
#endif  // USE_ESP32_BLE_DEVICE
 | 
			
		||||
 | 
			
		||||
void BluetoothProxy::dump_config() {
 | 
			
		||||
  ESP_LOGCONFIG(TAG, "Bluetooth Proxy:");
 | 
			
		||||
  ESP_LOGCONFIG(TAG,
 | 
			
		||||
                "  Active: %s\n"
 | 
			
		||||
                "  Connections: %d",
 | 
			
		||||
                YESNO(this->active_), this->connections_.size());
 | 
			
		||||
                "  Connections: %d\n"
 | 
			
		||||
                "  Raw advertisements: %s",
 | 
			
		||||
                YESNO(this->active_), this->connections_.size(), YESNO(this->raw_advertisements_));
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int BluetoothProxy::get_bluetooth_connections_free() {
 | 
			
		||||
@@ -205,7 +170,7 @@ int BluetoothProxy::get_bluetooth_connections_free() {
 | 
			
		||||
void BluetoothProxy::loop() {
 | 
			
		||||
  if (!api::global_api_server->is_connected() || this->api_connection_ == nullptr) {
 | 
			
		||||
    for (auto *connection : this->connections_) {
 | 
			
		||||
      if (connection->get_address() != 0 && !connection->disconnect_pending()) {
 | 
			
		||||
      if (connection->get_address() != 0) {
 | 
			
		||||
        connection->disconnect();
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
@@ -213,6 +178,7 @@ void BluetoothProxy::loop() {
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // Flush any pending BLE advertisements that have been accumulated but not yet sent
 | 
			
		||||
  if (this->raw_advertisements_) {
 | 
			
		||||
    static uint32_t last_flush_time = 0;
 | 
			
		||||
    uint32_t now = App.get_loop_component_start_time();
 | 
			
		||||
 | 
			
		||||
@@ -221,6 +187,7 @@ void BluetoothProxy::loop() {
 | 
			
		||||
      this->flush_pending_advertisements();
 | 
			
		||||
      last_flush_time = now;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  for (auto *connection : this->connections_) {
 | 
			
		||||
    if (connection->send_service_ == connection->service_count_) {
 | 
			
		||||
      connection->send_service_ = DONE_SENDING_SERVICES;
 | 
			
		||||
@@ -335,13 +302,15 @@ void BluetoothProxy::loop() {
 | 
			
		||||
        service_resp.characteristics.push_back(std::move(characteristic_resp));
 | 
			
		||||
      }
 | 
			
		||||
      resp.services.push_back(std::move(service_resp));
 | 
			
		||||
      this->api_connection_->send_message(resp, api::BluetoothGATTGetServicesResponse::MESSAGE_TYPE);
 | 
			
		||||
      this->api_connection_->send_message(resp);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
esp32_ble_tracker::AdvertisementParserType BluetoothProxy::get_advertisement_parser_type() {
 | 
			
		||||
  if (this->raw_advertisements_)
 | 
			
		||||
    return esp32_ble_tracker::AdvertisementParserType::RAW_ADVERTISEMENTS;
 | 
			
		||||
  return esp32_ble_tracker::AdvertisementParserType::PARSED_ADVERTISEMENTS;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
BluetoothConnection *BluetoothProxy::get_connection_(uint64_t address, bool reserve) {
 | 
			
		||||
@@ -486,7 +455,7 @@ void BluetoothProxy::bluetooth_device_request(const api::BluetoothDeviceRequest
 | 
			
		||||
      call.success = ret == ESP_OK;
 | 
			
		||||
      call.error = ret;
 | 
			
		||||
 | 
			
		||||
      this->api_connection_->send_message(call, api::BluetoothDeviceClearCacheResponse::MESSAGE_TYPE);
 | 
			
		||||
      this->api_connection_->send_message(call);
 | 
			
		||||
 | 
			
		||||
      break;
 | 
			
		||||
    }
 | 
			
		||||
@@ -586,6 +555,7 @@ void BluetoothProxy::subscribe_api_connection(api::APIConnection *api_connection
 | 
			
		||||
    return;
 | 
			
		||||
  }
 | 
			
		||||
  this->api_connection_ = api_connection;
 | 
			
		||||
  this->raw_advertisements_ = flags & BluetoothProxySubscriptionFlag::SUBSCRIPTION_RAW_ADVERTISEMENTS;
 | 
			
		||||
  this->parent_->recalculate_advertisement_parser_types();
 | 
			
		||||
 | 
			
		||||
  this->send_bluetooth_scanner_state_(this->parent_->get_scanner_state());
 | 
			
		||||
@@ -597,6 +567,7 @@ void BluetoothProxy::unsubscribe_api_connection(api::APIConnection *api_connecti
 | 
			
		||||
    return;
 | 
			
		||||
  }
 | 
			
		||||
  this->api_connection_ = nullptr;
 | 
			
		||||
  this->raw_advertisements_ = false;
 | 
			
		||||
  this->parent_->recalculate_advertisement_parser_types();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -608,7 +579,7 @@ void BluetoothProxy::send_device_connection(uint64_t address, bool connected, ui
 | 
			
		||||
  call.connected = connected;
 | 
			
		||||
  call.mtu = mtu;
 | 
			
		||||
  call.error = error;
 | 
			
		||||
  this->api_connection_->send_message(call, api::BluetoothDeviceConnectionResponse::MESSAGE_TYPE);
 | 
			
		||||
  this->api_connection_->send_message(call);
 | 
			
		||||
}
 | 
			
		||||
void BluetoothProxy::send_connections_free() {
 | 
			
		||||
  if (this->api_connection_ == nullptr)
 | 
			
		||||
@@ -621,7 +592,7 @@ void BluetoothProxy::send_connections_free() {
 | 
			
		||||
      call.allocated.push_back(connection->address_);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  this->api_connection_->send_message(call, api::BluetoothConnectionsFreeResponse::MESSAGE_TYPE);
 | 
			
		||||
  this->api_connection_->send_message(call);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void BluetoothProxy::send_gatt_services_done(uint64_t address) {
 | 
			
		||||
@@ -629,7 +600,7 @@ void BluetoothProxy::send_gatt_services_done(uint64_t address) {
 | 
			
		||||
    return;
 | 
			
		||||
  api::BluetoothGATTGetServicesDoneResponse call;
 | 
			
		||||
  call.address = address;
 | 
			
		||||
  this->api_connection_->send_message(call, api::BluetoothGATTGetServicesDoneResponse::MESSAGE_TYPE);
 | 
			
		||||
  this->api_connection_->send_message(call);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void BluetoothProxy::send_gatt_error(uint64_t address, uint16_t handle, esp_err_t error) {
 | 
			
		||||
@@ -639,7 +610,7 @@ void BluetoothProxy::send_gatt_error(uint64_t address, uint16_t handle, esp_err_
 | 
			
		||||
  call.address = address;
 | 
			
		||||
  call.handle = handle;
 | 
			
		||||
  call.error = error;
 | 
			
		||||
  this->api_connection_->send_message(call, api::BluetoothGATTWriteResponse::MESSAGE_TYPE);
 | 
			
		||||
  this->api_connection_->send_message(call);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void BluetoothProxy::send_device_pairing(uint64_t address, bool paired, esp_err_t error) {
 | 
			
		||||
@@ -648,7 +619,7 @@ void BluetoothProxy::send_device_pairing(uint64_t address, bool paired, esp_err_
 | 
			
		||||
  call.paired = paired;
 | 
			
		||||
  call.error = error;
 | 
			
		||||
 | 
			
		||||
  this->api_connection_->send_message(call, api::BluetoothDevicePairingResponse::MESSAGE_TYPE);
 | 
			
		||||
  this->api_connection_->send_message(call);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void BluetoothProxy::send_device_unpairing(uint64_t address, bool success, esp_err_t error) {
 | 
			
		||||
@@ -657,7 +628,7 @@ void BluetoothProxy::send_device_unpairing(uint64_t address, bool success, esp_e
 | 
			
		||||
  call.success = success;
 | 
			
		||||
  call.error = error;
 | 
			
		||||
 | 
			
		||||
  this->api_connection_->send_message(call, api::BluetoothDeviceUnpairingResponse::MESSAGE_TYPE);
 | 
			
		||||
  this->api_connection_->send_message(call);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void BluetoothProxy::bluetooth_scanner_set_mode(bool active) {
 | 
			
		||||
 
 | 
			
		||||
@@ -51,9 +51,7 @@ enum BluetoothProxySubscriptionFlag : uint32_t {
 | 
			
		||||
class BluetoothProxy : public esp32_ble_tracker::ESPBTDeviceListener, public Component {
 | 
			
		||||
 public:
 | 
			
		||||
  BluetoothProxy();
 | 
			
		||||
#ifdef USE_ESP32_BLE_DEVICE
 | 
			
		||||
  bool parse_device(const esp32_ble_tracker::ESPBTDevice &device) override;
 | 
			
		||||
#endif
 | 
			
		||||
  bool parse_devices(const esp32_ble::BLEScanResult *scan_results, size_t count) override;
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  void setup() override;
 | 
			
		||||
@@ -131,9 +129,7 @@ class BluetoothProxy : public esp32_ble_tracker::ESPBTDeviceListener, public Com
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
#ifdef USE_ESP32_BLE_DEVICE
 | 
			
		||||
  void send_api_packet_(const esp32_ble_tracker::ESPBTDevice &device);
 | 
			
		||||
#endif
 | 
			
		||||
  void send_bluetooth_scanner_state_(esp32_ble_tracker::ScannerState state);
 | 
			
		||||
 | 
			
		||||
  BluetoothConnection *get_connection_(uint64_t address, bool reserve);
 | 
			
		||||
@@ -145,13 +141,9 @@ class BluetoothProxy : public esp32_ble_tracker::ESPBTDeviceListener, public Com
 | 
			
		||||
  // Group 2: Container types (typically 12 bytes on 32-bit)
 | 
			
		||||
  std::vector<BluetoothConnection *> connections_{};
 | 
			
		||||
 | 
			
		||||
  // BLE advertisement batching
 | 
			
		||||
  std::vector<api::BluetoothLERawAdvertisement> advertisement_pool_;
 | 
			
		||||
  std::unique_ptr<api::BluetoothLERawAdvertisementsResponse> response_;
 | 
			
		||||
 | 
			
		||||
  // Group 3: 1-byte types grouped together
 | 
			
		||||
  bool active_;
 | 
			
		||||
  uint8_t advertisement_count_{0};
 | 
			
		||||
  bool raw_advertisements_{false};
 | 
			
		||||
  // 2 bytes used, 2 bytes padding
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -61,6 +61,8 @@ enum IIRFilter {
 | 
			
		||||
 | 
			
		||||
class BMP581Component : public PollingComponent, public i2c::I2CDevice {
 | 
			
		||||
 public:
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
 | 
			
		||||
  void dump_config() 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 setup() override;
 | 
			
		||||
  void dump_config() override;
 | 
			
		||||
  float get_setup_priority() const override { return setup_priority::DATA; }
 | 
			
		||||
  void loop() override;
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
 
 | 
			
		||||
@@ -7,12 +7,11 @@ from esphome.const import (
 | 
			
		||||
    PLATFORM_BK72XX,
 | 
			
		||||
    PLATFORM_ESP32,
 | 
			
		||||
    PLATFORM_ESP8266,
 | 
			
		||||
    PLATFORM_LN882X,
 | 
			
		||||
    PLATFORM_RTL87XX,
 | 
			
		||||
)
 | 
			
		||||
from esphome.core import CORE, coroutine_with_priority
 | 
			
		||||
 | 
			
		||||
AUTO_LOAD = ["web_server_base", "ota.web_server"]
 | 
			
		||||
AUTO_LOAD = ["web_server_base"]
 | 
			
		||||
DEPENDENCIES = ["wifi"]
 | 
			
		||||
CODEOWNERS = ["@OttoWinter"]
 | 
			
		||||
 | 
			
		||||
@@ -28,15 +27,7 @@ CONFIG_SCHEMA = cv.All(
 | 
			
		||||
            ),
 | 
			
		||||
        }
 | 
			
		||||
    ).extend(cv.COMPONENT_SCHEMA),
 | 
			
		||||
    cv.only_on(
 | 
			
		||||
        [
 | 
			
		||||
            PLATFORM_ESP32,
 | 
			
		||||
            PLATFORM_ESP8266,
 | 
			
		||||
            PLATFORM_BK72XX,
 | 
			
		||||
            PLATFORM_LN882X,
 | 
			
		||||
            PLATFORM_RTL87XX,
 | 
			
		||||
        ]
 | 
			
		||||
    ),
 | 
			
		||||
    cv.only_on([PLATFORM_ESP32, PLATFORM_ESP8266, PLATFORM_BK72XX, PLATFORM_RTL87XX]),
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -47,6 +47,7 @@ void CaptivePortal::start() {
 | 
			
		||||
  this->base_->init();
 | 
			
		||||
  if (!this->initialized_) {
 | 
			
		||||
    this->base_->add_handler(this);
 | 
			
		||||
    this->base_->add_ota_handler();
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
#ifdef USE_ARDUINO
 | 
			
		||||
 
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user