mirror of
https://github.com/esphome/esphome.git
synced 2026-09-09 14:28:46 +00:00
Compare commits
49
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3ff9f3f2af | ||
|
|
fbabe13dc8 | ||
|
|
bc3ffe19e8 | ||
|
|
f91486305f | ||
|
|
f191d5e0c3 | ||
|
|
227ca90aad | ||
|
|
1700a40b7c | ||
|
|
28588310e7 | ||
|
|
10a9baff74 | ||
|
|
a23f7bb569 | ||
|
|
53075e4139 | ||
|
|
5722ccba37 | ||
|
|
94e5c3839d | ||
|
|
574762f078 | ||
|
|
d34ffaf392 | ||
|
|
e6aa575f2e | ||
|
|
639ce609bf | ||
|
|
62eafc477d | ||
|
|
56c3361b9a | ||
|
|
50ca381198 | ||
|
|
89a56298c2 | ||
|
|
390742cf9b | ||
|
|
5e37872da2 | ||
|
|
d34d3994e1 | ||
|
|
d58b37faa1 | ||
|
|
8966567be0 | ||
|
|
20c7dcb1dd | ||
|
|
688af60cbf | ||
|
|
9c00f13606 | ||
|
|
833dd0e812 | ||
|
|
8e1044e8ea | ||
|
|
e5200db6fd | ||
|
|
e3dd2f44a4 | ||
|
|
3ef7460fca | ||
|
|
ae187f81f2 | ||
|
|
84f78831f9 | ||
|
|
13dbbcaa32 | ||
|
|
b66822d9bd | ||
|
|
d1829c495d | ||
|
|
ce87bf9b17 | ||
|
|
51ea97deff | ||
|
|
ab800dc09d | ||
|
|
f65ab5629e | ||
|
|
b84532d254 | ||
|
|
6b11636491 | ||
|
|
2bb98f2d64 | ||
|
|
f3c786c784 | ||
|
|
2250430999 | ||
|
|
d1068d582f |
@@ -244,11 +244,20 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Check out code from GitHub
|
- name: Check out code from GitHub
|
||||||
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||||
|
- name: Read prek version from requirements_test.txt
|
||||||
|
id: prek
|
||||||
|
# requirements_test.txt is the only place the version is pinned, so a
|
||||||
|
# Dependabot bump there is picked up here without a second edit.
|
||||||
|
run: |
|
||||||
|
if ! version=$(sed -nE 's/^prek==([^[:space:]#]+).*/\1/p' requirements_test.txt) || [ -z "$version" ]; then
|
||||||
|
echo "::error::No prek== pin found in requirements_test.txt."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "version=$version" >> "$GITHUB_OUTPUT"
|
||||||
- name: Run prek
|
- name: Run prek
|
||||||
uses: j178/prek-action@4e14d07f9231acabce116ccfca13b13dd9755ece # v3.0.0
|
uses: j178/prek-action@4e14d07f9231acabce116ccfca13b13dd9755ece # v3.0.0
|
||||||
with:
|
with:
|
||||||
# Keep in sync with requirements_test.txt.
|
prek-version: ${{ steps.prek.outputs.version }}
|
||||||
prek-version: "0.4.11"
|
|
||||||
# This job only runs on pull requests, so nothing ever populates
|
# This job only runs on pull requests, so nothing ever populates
|
||||||
# the cache on dev. Every run would miss and then write a per-pull
|
# the cache on dev. Every run would miss and then write a per-pull
|
||||||
# request copy, which is what the old seed-cache job existed to
|
# request copy, which is what the old seed-cache job existed to
|
||||||
|
|||||||
@@ -0,0 +1,94 @@
|
|||||||
|
# Keeps pre-commit hook revs in sync with the requirements files.
|
||||||
|
#
|
||||||
|
# Dependabot only bumps the pins in requirements*.txt. Some of those tools
|
||||||
|
# are pinned again as hook revs in .pre-commit-config.yaml. This workflow
|
||||||
|
# runs script/sync_dependency_versions.py against the pull request branch
|
||||||
|
# and pushes a commit with the revs updated.
|
||||||
|
|
||||||
|
name: Sync dependency versions
|
||||||
|
|
||||||
|
on:
|
||||||
|
# pull_request_target rather than pull_request so the App secret is
|
||||||
|
# available on Dependabot pull requests (pull_request runs opened by
|
||||||
|
# Dependabot only see Dependabot secrets). The job below only touches
|
||||||
|
# branches in this repository and only ever executes the script from the
|
||||||
|
# base branch checkout, so fork code never runs with the token.
|
||||||
|
pull_request_target:
|
||||||
|
types: [opened, synchronize, reopened]
|
||||||
|
paths:
|
||||||
|
- requirements_dev.txt
|
||||||
|
- requirements_test.txt
|
||||||
|
- .pre-commit-config.yaml
|
||||||
|
- script/sync_dependency_versions.py
|
||||||
|
|
||||||
|
# The push to the pull request branch uses the App token minted below, so
|
||||||
|
# the workflow's GITHUB_TOKEN does not need any scopes.
|
||||||
|
permissions: {}
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
sync:
|
||||||
|
name: Sync pinned versions
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
# Same-repository branches only: a push to a fork is not possible with
|
||||||
|
# this token, and it keeps untrusted heads out of a privileged job.
|
||||||
|
if: >-
|
||||||
|
github.repository == 'esphome/esphome'
|
||||||
|
&& github.event.pull_request.head.repo.full_name == github.repository
|
||||||
|
steps:
|
||||||
|
- name: Generate a token
|
||||||
|
id: generate-token
|
||||||
|
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
|
||||||
|
with:
|
||||||
|
client-id: ${{ vars.ESPHOME_GITHUB_APP_CLIENT_ID }}
|
||||||
|
private-key: ${{ secrets.ESPHOME_GITHUB_APP_PRIVATE_KEY }}
|
||||||
|
# A push made with the workflow's own GITHUB_TOKEN would not start
|
||||||
|
# CI on the new commit; a push with the App token does.
|
||||||
|
permission-contents: write # git push of the sync commit to the pull request branch
|
||||||
|
|
||||||
|
- name: Check out base branch
|
||||||
|
# Provides the script that runs below. Deliberately the base branch
|
||||||
|
# so the pull request cannot change what executes here.
|
||||||
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.pull_request.base.sha }}
|
||||||
|
persist-credentials: false
|
||||||
|
|
||||||
|
- name: Check out pull request branch
|
||||||
|
# No allow-unsafe-pr-checkout here on purpose: checkout v7 only
|
||||||
|
# refuses heads that live in a different repository, and the job
|
||||||
|
# condition above already limits runs to same-repository branches.
|
||||||
|
# Leaving it off keeps that refusal as a backstop for fork heads.
|
||||||
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.pull_request.head.ref }}
|
||||||
|
path: pull-request
|
||||||
|
token: ${{ steps.generate-token.outputs.token }}
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
|
||||||
|
with:
|
||||||
|
python-version: "3.12"
|
||||||
|
|
||||||
|
- name: Install yamlrocks
|
||||||
|
# The script edits YAML through yamlrocks. Take the pin from the
|
||||||
|
# base branch requirements so this workflow has no copy of its own.
|
||||||
|
run: pip install "$(grep -E '^yamlrocks==' requirements_test.txt | cut -d'#' -f1)"
|
||||||
|
|
||||||
|
- name: Sync pinned versions
|
||||||
|
run: python script/sync_dependency_versions.py --root pull-request
|
||||||
|
|
||||||
|
- name: Push changes
|
||||||
|
working-directory: pull-request
|
||||||
|
run: |
|
||||||
|
if git diff --quiet; then
|
||||||
|
echo "All pinned versions already match the requirements files."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
git config user.name "esphome[bot]"
|
||||||
|
git config user.email "115708604+esphome[bot]@users.noreply.github.com"
|
||||||
|
git commit -am "Sync pinned tool versions with requirements files"
|
||||||
|
git push
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
---
|
---
|
||||||
# See https://pre-commit.com for more information
|
# See https://pre-commit.com for more information
|
||||||
# See https://pre-commit.com/hooks.html for more hooks
|
# See https://pre-commit.com/hooks.html for more hooks
|
||||||
|
|
||||||
ci:
|
ci:
|
||||||
autoupdate_commit_msg: 'pre-commit: autoupdate'
|
autoupdate_commit_msg: 'pre-commit: autoupdate'
|
||||||
autoupdate_schedule: off # Disabled until ruff versions are synced between deps and pre-commit
|
autoupdate_schedule: off # Disabled until ruff versions are synced between deps and pre-commit
|
||||||
@@ -11,7 +10,7 @@ ci:
|
|||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||||
# Ruff version.
|
# Ruff version.
|
||||||
rev: v0.16.3
|
rev: v0.16.6
|
||||||
hooks:
|
hooks:
|
||||||
# Run the linter.
|
# Run the linter.
|
||||||
- id: ruff
|
- id: ruff
|
||||||
@@ -42,7 +41,7 @@ repos:
|
|||||||
- id: pyupgrade
|
- id: pyupgrade
|
||||||
args: [--py312-plus]
|
args: [--py312-plus]
|
||||||
- repo: https://github.com/adrienverge/yamllint.git
|
- repo: https://github.com/adrienverge/yamllint.git
|
||||||
rev: v1.37.1
|
rev: v1.38.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: yamllint
|
- id: yamllint
|
||||||
exclude: ^(\.clang-format|\.clang-tidy)$
|
exclude: ^(\.clang-format|\.clang-tidy)$
|
||||||
|
|||||||
@@ -553,6 +553,7 @@ file does, and it is the authority when they disagree. The most useful starting
|
|||||||
4. **Lint:** Run `prek` to ensure code is compliant.
|
4. **Lint:** Run `prek` to ensure code is compliant.
|
||||||
5. **Commit:** Commit your changes. There is no strict format for commit messages.
|
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 must start with a `[tag]` prefix. For component work, use the component name (e.g., `[display] Fix bug`, `[abc123] Add new component`); for changes to shared/core code that isn't tied to a single component, use `[core]` (e.g., `[core] Add validator`). Update documentation, examples, and add `CODEOWNERS` entries as needed. Pull requests should always be made using the `.github/PULL_REQUEST_TEMPLATE.md` template - fill out all sections completely without removing any parts of the template.
|
6. **Pull Request:** Submit a PR against the `dev` branch. The Pull Request title must start with a `[tag]` prefix. For component work, use the component name (e.g., `[display] Fix bug`, `[abc123] Add new component`); for changes to shared/core code that isn't tied to a single component, use `[core]` (e.g., `[core] Add validator`). Update documentation, examples, and add `CODEOWNERS` entries as needed. Pull requests should always be made using the `.github/PULL_REQUEST_TEMPLATE.md` template - fill out all sections completely without removing any parts of the template.
|
||||||
|
7. **Comments:** When commenting on GitHub PRs or issues, don't tag contributors, especially bots. Avoid referring to list items (e.g. from reviews) with the form #nn - this will be interpreted by GitHub as a reference to issue or PR nn. Keep comments short and exclude irrelevant details, backstories, restatement of previous comments and anything that is already obvious to the reader.
|
||||||
|
|
||||||
* **Documentation Contributions:**
|
* **Documentation Contributions:**
|
||||||
* Documentation is hosted in the separate `esphome/esphome.io` repository.
|
* Documentation is hosted in the separate `esphome/esphome.io` repository.
|
||||||
@@ -839,7 +840,7 @@ file does, and it is the authority when they disagree. The most useful starting
|
|||||||
cv.rename_key(
|
cv.rename_key(
|
||||||
CONF_OLD_KEY, CONF_NEW_KEY, removed_in="2026.6.0", component="my_component"
|
CONF_OLD_KEY, CONF_NEW_KEY, removed_in="2026.6.0", component="my_component"
|
||||||
),
|
),
|
||||||
cv.Schema({ ... }),
|
cv.Schema({...}),
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
For other deprecations, warn manually during validation:
|
For other deprecations, warn manually during validation:
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ PROJECT_NAME = ESPHome
|
|||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 2026.9.0b2
|
PROJECT_NUMBER = 2026.10.0-dev
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
|||||||
+1
-1
@@ -22,7 +22,7 @@ RUN \
|
|||||||
-r /requirements.txt
|
-r /requirements.txt
|
||||||
|
|
||||||
# Install the ESPHome Device Builder dashboard.
|
# Install the ESPHome Device Builder dashboard.
|
||||||
RUN uv pip install --no-cache-dir esphome-device-builder==1.14.4
|
RUN uv pip install --no-cache-dir esphome-device-builder==1.14.5
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
platformio settings set enable_telemetry No \
|
platformio settings set enable_telemetry No \
|
||||||
|
|||||||
@@ -23,9 +23,7 @@ from esphome.util import safe_print
|
|||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from collections.abc import Callable
|
from collections.abc import Callable
|
||||||
|
|
||||||
from aioesphomeapi.api_pb2 import (
|
from aioesphomeapi.api_pb2 import SubscribeLogsResponse # pylint: disable=no-name-in-module
|
||||||
SubscribeLogsResponse, # pylint: disable=no-name-in-module
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ void Anova::dump_config() { LOG_CLIMATE("", "Anova BLE Cooker", this); }
|
|||||||
|
|
||||||
void Anova::setup() {
|
void Anova::setup() {
|
||||||
this->codec_ = make_unique<AnovaCodec>();
|
this->codec_ = make_unique<AnovaCodec>();
|
||||||
this->current_request_ = 0;
|
this->poll_step_ = PollStep::IDLE;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Anova::loop() {
|
void Anova::loop() {
|
||||||
@@ -22,6 +22,15 @@ void Anova::loop() {
|
|||||||
this->disable_loop();
|
this->disable_loop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Anova::write_request_(AnovaPacket *pkt) {
|
||||||
|
auto status =
|
||||||
|
esp_ble_gattc_write_char(this->parent_->get_gattc_if(), this->parent_->get_conn_id(), this->char_handle_,
|
||||||
|
pkt->length, pkt->data, ESP_GATT_WRITE_TYPE_NO_RSP, ESP_GATT_AUTH_REQ_NONE);
|
||||||
|
if (status) {
|
||||||
|
ESP_LOGW(TAG, "[%s] esp_ble_gattc_write_char failed, status=%d", this->parent_->address_str(), status);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void Anova::control(const ClimateCall &call) {
|
void Anova::control(const ClimateCall &call) {
|
||||||
auto mode_val = call.get_mode();
|
auto mode_val = call.get_mode();
|
||||||
if (mode_val.has_value()) {
|
if (mode_val.has_value()) {
|
||||||
@@ -38,22 +47,11 @@ void Anova::control(const ClimateCall &call) {
|
|||||||
ESP_LOGW(TAG, "Unsupported mode: %d", mode);
|
ESP_LOGW(TAG, "Unsupported mode: %d", mode);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
auto status =
|
this->write_request_(pkt);
|
||||||
esp_ble_gattc_write_char(this->parent_->get_gattc_if(), this->parent_->get_conn_id(), this->char_handle_,
|
|
||||||
pkt->length, pkt->data, ESP_GATT_WRITE_TYPE_NO_RSP, ESP_GATT_AUTH_REQ_NONE);
|
|
||||||
if (status) {
|
|
||||||
ESP_LOGW(TAG, "[%s] esp_ble_gattc_write_char failed, status=%d", this->parent_->address_str(), status);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
auto target_temp = call.get_target_temperature();
|
auto target_temp = call.get_target_temperature();
|
||||||
if (target_temp.has_value()) {
|
if (target_temp.has_value()) {
|
||||||
auto *pkt = this->codec_->get_set_target_temp_request(*target_temp);
|
this->write_request_(this->codec_->get_set_target_temp_request(*target_temp));
|
||||||
auto status =
|
|
||||||
esp_ble_gattc_write_char(this->parent_->get_gattc_if(), this->parent_->get_conn_id(), this->char_handle_,
|
|
||||||
pkt->length, pkt->data, ESP_GATT_WRITE_TYPE_NO_RSP, ESP_GATT_AUTH_REQ_NONE);
|
|
||||||
if (status) {
|
|
||||||
ESP_LOGW(TAG, "[%s] esp_ble_gattc_write_char failed, status=%d", this->parent_->address_str(), status);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,6 +60,7 @@ void Anova::gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_
|
|||||||
case ESP_GATTC_DISCONNECT_EVT: {
|
case ESP_GATTC_DISCONNECT_EVT: {
|
||||||
this->current_temperature = NAN;
|
this->current_temperature = NAN;
|
||||||
this->target_temperature = NAN;
|
this->target_temperature = NAN;
|
||||||
|
this->poll_step_ = PollStep::IDLE;
|
||||||
this->publish_state();
|
this->publish_state();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -83,8 +82,8 @@ void Anova::gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_
|
|||||||
}
|
}
|
||||||
case ESP_GATTC_REG_FOR_NOTIFY_EVT: {
|
case ESP_GATTC_REG_FOR_NOTIFY_EVT: {
|
||||||
this->node_state = espbt::ClientState::ESTABLISHED;
|
this->node_state = espbt::ClientState::ESTABLISHED;
|
||||||
this->current_request_ = 0;
|
this->poll_step_ = PollStep::IDLE;
|
||||||
this->update();
|
this->update(); // begin the first poll cycle immediately
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case ESP_GATTC_NOTIFY_EVT: {
|
case ESP_GATTC_NOTIFY_EVT: {
|
||||||
@@ -101,33 +100,30 @@ void Anova::gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_
|
|||||||
this->mode = this->codec_->running_ ? climate::CLIMATE_MODE_HEAT : climate::CLIMATE_MODE_OFF;
|
this->mode = this->codec_->running_ ? climate::CLIMATE_MODE_HEAT : climate::CLIMATE_MODE_OFF;
|
||||||
}
|
}
|
||||||
if (this->codec_->has_unit()) {
|
if (this->codec_->has_unit()) {
|
||||||
this->fahrenheit_ = (this->codec_->unit_ == 'f');
|
ESP_LOGD(TAG, "Anova units is %s", (this->codec_->unit_ == 'f') ? "fahrenheit" : "celsius");
|
||||||
ESP_LOGD(TAG, "Anova units is %s", this->fahrenheit_ ? "fahrenheit" : "celsius");
|
|
||||||
this->current_request_++;
|
|
||||||
}
|
}
|
||||||
this->publish_state();
|
this->publish_state();
|
||||||
|
|
||||||
if (this->current_request_ > 1) {
|
// Advance the poll cycle to its next request based on the reply we got.
|
||||||
AnovaPacket *pkt = nullptr;
|
switch (this->poll_step_) {
|
||||||
switch (this->current_request_++) {
|
case PollStep::SET_UNIT:
|
||||||
case 2:
|
this->poll_step_ = PollStep::STATUS;
|
||||||
pkt = this->codec_->get_read_target_temp_request();
|
this->write_request_(this->codec_->get_read_device_status_request());
|
||||||
break;
|
break;
|
||||||
case 3:
|
case PollStep::STATUS:
|
||||||
pkt = this->codec_->get_read_current_temp_request();
|
this->poll_step_ = PollStep::TARGET;
|
||||||
break;
|
this->write_request_(this->codec_->get_read_target_temp_request());
|
||||||
default:
|
break;
|
||||||
this->current_request_ = 1;
|
case PollStep::TARGET:
|
||||||
break;
|
this->poll_step_ = PollStep::CURRENT;
|
||||||
}
|
this->write_request_(this->codec_->get_read_current_temp_request());
|
||||||
if (pkt != nullptr) {
|
break;
|
||||||
auto status =
|
case PollStep::CURRENT:
|
||||||
esp_ble_gattc_write_char(this->parent_->get_gattc_if(), this->parent_->get_conn_id(), this->char_handle_,
|
this->poll_step_ = PollStep::IDLE; // full cycle complete
|
||||||
pkt->length, pkt->data, ESP_GATT_WRITE_TYPE_NO_RSP, ESP_GATT_AUTH_REQ_NONE);
|
break;
|
||||||
if (status) {
|
default:
|
||||||
ESP_LOGW(TAG, "[%s] esp_ble_gattc_write_char failed, status=%d", this->parent_->address_str(), status);
|
// A reply to an ad-hoc control() write, outside a managed cycle.
|
||||||
}
|
break;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -136,27 +132,26 @@ void Anova::gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Anova::set_unit_of_measurement(const char *unit) { this->fahrenheit_ = !strncmp(unit, "f", 1); }
|
void Anova::set_unit_of_measurement(const char *unit) { this->want_fahrenheit_ = !strncmp(unit, "f", 1); }
|
||||||
|
|
||||||
void Anova::update() {
|
void Anova::update() {
|
||||||
if (this->node_state != espbt::ClientState::ESTABLISHED)
|
if (this->node_state != espbt::ClientState::ESTABLISHED)
|
||||||
return;
|
return;
|
||||||
|
if (this->poll_step_ != PollStep::IDLE) {
|
||||||
if (this->current_request_ < 2) {
|
// The previous cycle never finished within a full polling interval -- a
|
||||||
AnovaPacket *pkt;
|
// reply was missed or a write failed. Restart the cycle rather than stall;
|
||||||
if (this->current_request_ == 0) {
|
// the polling interval itself acts as the timeout. A late reply from the
|
||||||
pkt = this->codec_->get_set_unit_request(this->fahrenheit_ ? 'f' : 'c');
|
// abandoned cycle is harmless: state decoding happens on every notify
|
||||||
} else {
|
// regardless of step, and each notify sends at most one follow-up request.
|
||||||
pkt = this->codec_->get_read_device_status_request();
|
ESP_LOGW(TAG, "[%s] Poll cycle incomplete (step %u); restarting cycle", this->parent_->address_str(),
|
||||||
}
|
static_cast<uint8_t>(this->poll_step_));
|
||||||
auto status =
|
|
||||||
esp_ble_gattc_write_char(this->parent_->get_gattc_if(), this->parent_->get_conn_id(), this->char_handle_,
|
|
||||||
pkt->length, pkt->data, ESP_GATT_WRITE_TYPE_NO_RSP, ESP_GATT_AUTH_REQ_NONE);
|
|
||||||
if (status) {
|
|
||||||
ESP_LOGW(TAG, "[%s] esp_ble_gattc_write_char failed, status=%d", this->parent_->address_str(), status);
|
|
||||||
}
|
|
||||||
this->current_request_++;
|
|
||||||
}
|
}
|
||||||
|
// Re-assert the configured unit at the start of every poll cycle, then fall
|
||||||
|
// through the status/temperature reads via the notification handler. Always
|
||||||
|
// command the configured unit (want_fahrenheit_) -- never the last value the
|
||||||
|
// device reported, or a drift to 'c' would lock itself in.
|
||||||
|
this->poll_step_ = PollStep::SET_UNIT;
|
||||||
|
this->write_request_(this->codec_->get_set_unit_request(this->want_fahrenheit_ ? 'f' : 'c'));
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace esphome::anova
|
} // namespace esphome::anova
|
||||||
|
|||||||
@@ -37,11 +37,20 @@ class Anova final : public climate::Climate, public esphome::ble_client::BLEClie
|
|||||||
void set_unit_of_measurement(const char *unit);
|
void set_unit_of_measurement(const char *unit);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
// A poll cycle re-asserts the configured unit, then reads device state.
|
||||||
|
// Re-asserting every cycle prevents the cooker from silently reverting to
|
||||||
|
// its default (Celsius); previously the unit was only set once on
|
||||||
|
// connection, so a drift persisted (and corrupted the F/C interpretation of
|
||||||
|
// subsequent readings) until the BLE link was re-established.
|
||||||
|
enum class PollStep : uint8_t { SET_UNIT, STATUS, TARGET, CURRENT, IDLE };
|
||||||
|
|
||||||
|
void write_request_(AnovaPacket *pkt);
|
||||||
|
|
||||||
std::unique_ptr<AnovaCodec> codec_;
|
std::unique_ptr<AnovaCodec> codec_;
|
||||||
void control(const climate::ClimateCall &call) override;
|
void control(const climate::ClimateCall &call) override;
|
||||||
uint16_t char_handle_;
|
uint16_t char_handle_;
|
||||||
uint8_t current_request_;
|
bool want_fahrenheit_{true}; // configured target unit; never overwritten by device replies
|
||||||
bool fahrenheit_;
|
PollStep poll_step_{PollStep::IDLE};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace esphome::anova
|
} // namespace esphome::anova
|
||||||
|
|||||||
@@ -9,6 +9,10 @@ namespace esphome::atm90e32 {
|
|||||||
|
|
||||||
static const char *const TAG = "atm90e32";
|
static const char *const TAG = "atm90e32";
|
||||||
|
|
||||||
|
static const LogString *offset_calibration_name(bool power_offsets) {
|
||||||
|
return power_offsets ? LOG_STR("Power offset") : LOG_STR("Offset");
|
||||||
|
}
|
||||||
|
|
||||||
static uint32_t pref_hash(const char *prefix, const char *name_space) {
|
static uint32_t pref_hash(const char *prefix, const char *name_space) {
|
||||||
auto hash = fnv1_hash(prefix);
|
auto hash = fnv1_hash(prefix);
|
||||||
return fnv1_hash_extend(hash, name_space);
|
return fnv1_hash_extend(hash, name_space);
|
||||||
@@ -203,13 +207,12 @@ void ATM90E32Component::setup() {
|
|||||||
|
|
||||||
// Initialize flash storage for power offset calibrations
|
// Initialize flash storage for power offset calibrations
|
||||||
uint32_t po_hash = pref_hash("_power_offset_calibration_", cs);
|
uint32_t po_hash = pref_hash("_power_offset_calibration_", cs);
|
||||||
this->power_offset_pref_ = global_preferences->make_preference<PowerOffsetCalibration[3]>(po_hash, true);
|
this->power_offset_pref_ = global_preferences->make_preference<OffsetCalibration[3]>(po_hash, true);
|
||||||
bool migrated_power_offset = false;
|
bool migrated_power_offset = false;
|
||||||
if (has_distinct_legacy_namespace) {
|
if (has_distinct_legacy_namespace) {
|
||||||
uint32_t legacy_po_hash = pref_hash("_power_offset_calibration_", legacy_cs);
|
uint32_t legacy_po_hash = pref_hash("_power_offset_calibration_", legacy_cs);
|
||||||
auto legacy_power_offset_pref =
|
auto legacy_power_offset_pref = global_preferences->make_preference<OffsetCalibration[3]>(legacy_po_hash, true);
|
||||||
global_preferences->make_preference<PowerOffsetCalibration[3]>(legacy_po_hash, true);
|
OffsetCalibration power_offset_data[3]{};
|
||||||
PowerOffsetCalibration power_offset_data[3]{};
|
|
||||||
int migration_status =
|
int migration_status =
|
||||||
migrate_legacy_pref_if_needed(this->power_offset_pref_, legacy_power_offset_pref, &power_offset_data);
|
migrate_legacy_pref_if_needed(this->power_offset_pref_, legacy_power_offset_pref, &power_offset_data);
|
||||||
migrated_power_offset = migration_status > 0;
|
migrated_power_offset = migration_status > 0;
|
||||||
@@ -224,20 +227,20 @@ void ATM90E32Component::setup() {
|
|||||||
global_preferences->sync();
|
global_preferences->sync();
|
||||||
}
|
}
|
||||||
|
|
||||||
this->restore_offset_calibrations_();
|
this->restore_offset_calibrations_(OffsetCalibrationType::OFFSET_CALIBRATION_TYPE_VOLTAGE_CURRENT);
|
||||||
this->restore_power_offset_calibrations_();
|
this->restore_offset_calibrations_(OffsetCalibrationType::OFFSET_CALIBRATION_TYPE_POWER);
|
||||||
} else {
|
} else {
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] Power & Voltage/Current offset calibration is disabled. Using config file values.",
|
ESP_LOGI(TAG, "[CALIBRATION][%s] Power & Voltage/Current offset calibration is disabled. Using config file values.",
|
||||||
cs);
|
cs);
|
||||||
for (uint8_t phase = 0; phase < 3; ++phase) {
|
for (uint8_t phase = 0; phase < 3; ++phase) {
|
||||||
this->write16_(this->voltage_offset_registers[phase],
|
this->write16_(this->voltage_offset_registers[phase],
|
||||||
static_cast<uint16_t>(this->offset_phase_[phase].voltage_offset_));
|
static_cast<uint16_t>(this->offset_phase_[phase].first_offset));
|
||||||
this->write16_(this->current_offset_registers[phase],
|
this->write16_(this->current_offset_registers[phase],
|
||||||
static_cast<uint16_t>(this->offset_phase_[phase].current_offset_));
|
static_cast<uint16_t>(this->offset_phase_[phase].second_offset));
|
||||||
this->write16_(this->power_offset_registers[phase],
|
this->write16_(this->power_offset_registers[phase],
|
||||||
static_cast<uint16_t>(this->power_offset_phase_[phase].active_power_offset));
|
static_cast<uint16_t>(this->power_offset_phase_[phase].first_offset));
|
||||||
this->write16_(this->reactive_power_offset_registers[phase],
|
this->write16_(this->reactive_power_offset_registers[phase],
|
||||||
static_cast<uint16_t>(this->power_offset_phase_[phase].reactive_power_offset));
|
static_cast<uint16_t>(this->power_offset_phase_[phase].second_offset));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -317,8 +320,8 @@ void ATM90E32Component::log_calibration_status_() {
|
|||||||
cs);
|
cs);
|
||||||
for (uint8_t phase = 0; phase < 3; ++phase) {
|
for (uint8_t phase = 0; phase < 3; ++phase) {
|
||||||
ESP_LOGW(TAG, "[CALIBRATION][%s] | %c | %6d | %6d | %6d | %6d |", cs, 'A' + phase,
|
ESP_LOGW(TAG, "[CALIBRATION][%s] | %c | %6d | %6d | %6d | %6d |", cs, 'A' + phase,
|
||||||
this->config_offset_phase_[phase].voltage_offset_, this->offset_phase_[phase].voltage_offset_,
|
this->config_offset_phase_[phase].first_offset, this->offset_phase_[phase].first_offset,
|
||||||
this->config_offset_phase_[phase].current_offset_, this->offset_phase_[phase].current_offset_);
|
this->config_offset_phase_[phase].second_offset, this->offset_phase_[phase].second_offset);
|
||||||
}
|
}
|
||||||
ESP_LOGW(TAG,
|
ESP_LOGW(TAG,
|
||||||
"[CALIBRATION][%s] ===============================================================================", cs);
|
"[CALIBRATION][%s] ===============================================================================", cs);
|
||||||
@@ -335,10 +338,8 @@ void ATM90E32Component::log_calibration_status_() {
|
|||||||
cs);
|
cs);
|
||||||
for (uint8_t phase = 0; phase < 3; ++phase) {
|
for (uint8_t phase = 0; phase < 3; ++phase) {
|
||||||
ESP_LOGW(TAG, "[CALIBRATION][%s] | %c | %6d | %6d | %6d | %6d |", cs, 'A' + phase,
|
ESP_LOGW(TAG, "[CALIBRATION][%s] | %c | %6d | %6d | %6d | %6d |", cs, 'A' + phase,
|
||||||
this->config_power_offset_phase_[phase].active_power_offset,
|
this->config_power_offset_phase_[phase].first_offset, this->power_offset_phase_[phase].first_offset,
|
||||||
this->power_offset_phase_[phase].active_power_offset,
|
this->config_power_offset_phase_[phase].second_offset, this->power_offset_phase_[phase].second_offset);
|
||||||
this->config_power_offset_phase_[phase].reactive_power_offset,
|
|
||||||
this->power_offset_phase_[phase].reactive_power_offset);
|
|
||||||
}
|
}
|
||||||
ESP_LOGW(TAG,
|
ESP_LOGW(TAG,
|
||||||
"[CALIBRATION][%s] ===============================================================================", cs);
|
"[CALIBRATION][%s] ===============================================================================", cs);
|
||||||
@@ -372,7 +373,7 @@ void ATM90E32Component::log_calibration_status_() {
|
|||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] --------------------------------------------------------------", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] --------------------------------------------------------------", cs);
|
||||||
for (uint8_t phase = 0; phase < 3; phase++) {
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase,
|
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase,
|
||||||
this->offset_phase_[phase].voltage_offset_, this->offset_phase_[phase].current_offset_);
|
this->offset_phase_[phase].first_offset, this->offset_phase_[phase].second_offset);
|
||||||
}
|
}
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] ==============================================================\\n", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] ==============================================================\\n", cs);
|
||||||
}
|
}
|
||||||
@@ -385,8 +386,7 @@ void ATM90E32Component::log_calibration_status_() {
|
|||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] ---------------------------------------------------------------------", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] ---------------------------------------------------------------------", cs);
|
||||||
for (uint8_t phase = 0; phase < 3; phase++) {
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase,
|
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase,
|
||||||
this->power_offset_phase_[phase].active_power_offset,
|
this->power_offset_phase_[phase].first_offset, this->power_offset_phase_[phase].second_offset);
|
||||||
this->power_offset_phase_[phase].reactive_power_offset);
|
|
||||||
}
|
}
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] =====================================================================\n", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] =====================================================================\n", cs);
|
||||||
}
|
}
|
||||||
@@ -756,36 +756,68 @@ void ATM90E32Component::save_gain_calibration_to_memory_() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ATM90E32Component::save_offset_calibration_to_memory_() {
|
void ATM90E32Component::finish_offset_calibration_(const OffsetCalibration (&previous)[3], bool previous_restored,
|
||||||
|
bool previous_using_saved, OffsetCalibrationType type) {
|
||||||
|
const bool power_offsets = type == OffsetCalibrationType::OFFSET_CALIBRATION_TYPE_POWER;
|
||||||
const char *cs = this->get_calibration_id_();
|
const char *cs = this->get_calibration_id_();
|
||||||
bool success = this->offset_pref_.save(&this->offset_phase_);
|
const LogString *name = offset_calibration_name(power_offsets);
|
||||||
global_preferences->sync();
|
OffsetCalibration(*offsets)[3] = power_offsets ? &this->power_offset_phase_ : &this->offset_phase_;
|
||||||
if (success) {
|
ESPPreferenceObject *preference = power_offsets ? &this->power_offset_pref_ : &this->offset_pref_;
|
||||||
this->using_saved_calibrations_ = true;
|
bool *has_stored =
|
||||||
this->restored_offset_calibration_ = true;
|
power_offsets ? &this->has_stored_power_offset_calibration_ : &this->has_stored_offset_calibration_;
|
||||||
for (bool &phase : this->offset_calibration_mismatch_)
|
bool *restored = power_offsets ? &this->restored_power_offset_calibration_ : &this->restored_offset_calibration_;
|
||||||
phase = false;
|
bool *mismatches = power_offsets ? this->power_offset_calibration_mismatch_ : this->offset_calibration_mismatch_;
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] Offset calibration saved to memory.", cs);
|
|
||||||
} else {
|
|
||||||
this->using_saved_calibrations_ = false;
|
|
||||||
ESP_LOGE(TAG, "[CALIBRATION][%s] Failed to save offset calibration to memory!", cs);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void ATM90E32Component::save_power_offset_calibration_to_memory_() {
|
const bool writes_verified = this->verify_offset_writes_(type);
|
||||||
const char *cs = this->get_calibration_id_();
|
bool saved = false;
|
||||||
bool success = this->power_offset_pref_.save(&this->power_offset_phase_);
|
bool synced = false;
|
||||||
global_preferences->sync();
|
if (writes_verified) {
|
||||||
if (success) {
|
saved = preference->save(offsets);
|
||||||
this->using_saved_calibrations_ = true;
|
synced = global_preferences->sync();
|
||||||
this->restored_power_offset_calibration_ = true;
|
|
||||||
for (bool &phase : this->power_offset_calibration_mismatch_)
|
|
||||||
phase = false;
|
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] Power offset calibration saved to memory.", cs);
|
|
||||||
} else {
|
|
||||||
this->using_saved_calibrations_ = false;
|
|
||||||
ESP_LOGE(TAG, "[CALIBRATION][%s] Failed to save power offset calibration to memory!", cs);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (writes_verified && saved && synced) {
|
||||||
|
this->using_saved_calibrations_ = true;
|
||||||
|
*has_stored = true;
|
||||||
|
*restored = true;
|
||||||
|
for (uint8_t phase = 0; phase < 3; phase++)
|
||||||
|
mismatches[phase] = false;
|
||||||
|
ESP_LOGI(TAG, "[CALIBRATION][%s] %s calibration saved to memory. %s calibration completed and verified.", cs,
|
||||||
|
LOG_STR_ARG(name), LOG_STR_ARG(name));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (writes_verified) {
|
||||||
|
ESP_LOGE(TAG, "[CALIBRATION][%s] Failed to save %s calibration to memory!", cs, LOG_STR_ARG(name));
|
||||||
|
}
|
||||||
|
|
||||||
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
|
this->write_offsets_to_registers_(phase, previous[phase].first_offset, previous[phase].second_offset, type);
|
||||||
|
}
|
||||||
|
const bool rollback_verified = this->verify_offset_writes_(type);
|
||||||
|
|
||||||
|
bool rollback_persisted = false;
|
||||||
|
if (writes_verified) {
|
||||||
|
OffsetCalibration rollback[3]{};
|
||||||
|
prepare_offset_rollback(previous, previous_restored, rollback);
|
||||||
|
const bool rollback_saved = preference->save(&rollback);
|
||||||
|
const bool rollback_synced = global_preferences->sync();
|
||||||
|
rollback_persisted = rollback_saved && rollback_synced;
|
||||||
|
if (!rollback_saved || !rollback_synced) {
|
||||||
|
ESP_LOGE(TAG, "[CALIBRATION][%s] Failed to persist restored %s calibration values!", cs, LOG_STR_ARG(name));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
*restored = previous_restored;
|
||||||
|
if (rollback_persisted)
|
||||||
|
*has_stored = previous_restored;
|
||||||
|
this->using_saved_calibrations_ = previous_using_saved;
|
||||||
|
if (!rollback_verified) {
|
||||||
|
ESP_LOGE(TAG, "[CALIBRATION][%s] %s calibration failed; rollback readback verification failed.", cs,
|
||||||
|
LOG_STR_ARG(name));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
ESP_LOGE(TAG, "[CALIBRATION][%s] %s calibration failed; previous values restored.", cs, LOG_STR_ARG(name));
|
||||||
}
|
}
|
||||||
|
|
||||||
void ATM90E32Component::run_offset_calibrations() {
|
void ATM90E32Component::run_offset_calibrations() {
|
||||||
@@ -803,11 +835,16 @@ void ATM90E32Component::run_offset_calibrations() {
|
|||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] | Phase | offset_voltage | offset_current |", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] | Phase | offset_voltage | offset_current |", cs);
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] ------------------------------------------------------------------", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] ------------------------------------------------------------------", cs);
|
||||||
|
|
||||||
|
OffsetCalibration previous_offsets[3] = {this->offset_phase_[0], this->offset_phase_[1], this->offset_phase_[2]};
|
||||||
|
const bool previous_restored = this->restored_offset_calibration_;
|
||||||
|
const bool previous_using_saved = this->using_saved_calibrations_;
|
||||||
|
|
||||||
for (uint8_t phase = 0; phase < 3; phase++) {
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
int16_t voltage_offset = calibrate_offset(phase, true);
|
int16_t voltage_offset = calibrate_offset(phase, true);
|
||||||
int16_t current_offset = calibrate_offset(phase, false);
|
int16_t current_offset = calibrate_offset(phase, false);
|
||||||
|
|
||||||
this->write_offsets_to_registers_(phase, voltage_offset, current_offset);
|
this->write_offsets_to_registers_(phase, voltage_offset, current_offset,
|
||||||
|
OffsetCalibrationType::OFFSET_CALIBRATION_TYPE_VOLTAGE_CURRENT);
|
||||||
|
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase, voltage_offset,
|
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase, voltage_offset,
|
||||||
current_offset);
|
current_offset);
|
||||||
@@ -815,7 +852,8 @@ void ATM90E32Component::run_offset_calibrations() {
|
|||||||
|
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] ==================================================================\n", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] ==================================================================\n", cs);
|
||||||
|
|
||||||
this->save_offset_calibration_to_memory_();
|
this->finish_offset_calibration_(previous_offsets, previous_restored, previous_using_saved,
|
||||||
|
OffsetCalibrationType::OFFSET_CALIBRATION_TYPE_VOLTAGE_CURRENT);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ATM90E32Component::run_power_offset_calibrations() {
|
void ATM90E32Component::run_power_offset_calibrations() {
|
||||||
@@ -834,18 +872,25 @@ void ATM90E32Component::run_power_offset_calibrations() {
|
|||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] | Phase | offset_active_power | offset_reactive_power |", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] | Phase | offset_active_power | offset_reactive_power |", cs);
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] ---------------------------------------------------------------------", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] ---------------------------------------------------------------------", cs);
|
||||||
|
|
||||||
|
OffsetCalibration previous_offsets[3] = {this->power_offset_phase_[0], this->power_offset_phase_[1],
|
||||||
|
this->power_offset_phase_[2]};
|
||||||
|
const bool previous_restored = this->restored_power_offset_calibration_;
|
||||||
|
const bool previous_using_saved = this->using_saved_calibrations_;
|
||||||
|
|
||||||
for (uint8_t phase = 0; phase < 3; ++phase) {
|
for (uint8_t phase = 0; phase < 3; ++phase) {
|
||||||
int16_t active_offset = calibrate_power_offset(phase, false);
|
int16_t active_offset = calibrate_power_offset(phase, false);
|
||||||
int16_t reactive_offset = calibrate_power_offset(phase, true);
|
int16_t reactive_offset = calibrate_power_offset(phase, true);
|
||||||
|
|
||||||
this->write_power_offsets_to_registers_(phase, active_offset, reactive_offset);
|
this->write_offsets_to_registers_(phase, active_offset, reactive_offset,
|
||||||
|
OffsetCalibrationType::OFFSET_CALIBRATION_TYPE_POWER);
|
||||||
|
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase, active_offset,
|
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase, active_offset,
|
||||||
reactive_offset);
|
reactive_offset);
|
||||||
}
|
}
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] =====================================================================\n", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] =====================================================================\n", cs);
|
||||||
|
|
||||||
this->save_power_offset_calibration_to_memory_();
|
this->finish_offset_calibration_(previous_offsets, previous_restored, previous_using_saved,
|
||||||
|
OffsetCalibrationType::OFFSET_CALIBRATION_TYPE_POWER);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ATM90E32Component::write_gains_to_registers_() {
|
void ATM90E32Component::write_gains_to_registers_() {
|
||||||
@@ -859,35 +904,26 @@ void ATM90E32Component::write_gains_to_registers_() {
|
|||||||
this->write16_(ATM90E32_REGISTER_CFGREGACCEN, 0x0000);
|
this->write16_(ATM90E32_REGISTER_CFGREGACCEN, 0x0000);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ATM90E32Component::write_offsets_to_registers_(uint8_t phase, int16_t voltage_offset, int16_t current_offset) {
|
void ATM90E32Component::write_offsets_to_registers_(uint8_t phase, int16_t first_offset, int16_t second_offset,
|
||||||
// Save to runtime
|
OffsetCalibrationType type) {
|
||||||
this->offset_phase_[phase].voltage_offset_ = voltage_offset;
|
const bool power_offsets = type == OffsetCalibrationType::OFFSET_CALIBRATION_TYPE_POWER;
|
||||||
this->phase_[phase].voltage_offset_ = voltage_offset;
|
OffsetCalibration &offsets = power_offsets ? this->power_offset_phase_[phase] : this->offset_phase_[phase];
|
||||||
|
offsets.first_offset = first_offset;
|
||||||
|
offsets.second_offset = second_offset;
|
||||||
|
if (power_offsets) {
|
||||||
|
this->phase_[phase].active_power_offset_ = first_offset;
|
||||||
|
this->phase_[phase].reactive_power_offset_ = second_offset;
|
||||||
|
} else {
|
||||||
|
this->phase_[phase].voltage_offset_ = first_offset;
|
||||||
|
this->phase_[phase].current_offset_ = second_offset;
|
||||||
|
}
|
||||||
|
|
||||||
// Save to flash-storable struct
|
const uint16_t *first_registers = power_offsets ? this->power_offset_registers : this->voltage_offset_registers;
|
||||||
this->offset_phase_[phase].current_offset_ = current_offset;
|
const uint16_t *second_registers =
|
||||||
this->phase_[phase].current_offset_ = current_offset;
|
power_offsets ? this->reactive_power_offset_registers : this->current_offset_registers;
|
||||||
|
|
||||||
// Write to registers
|
|
||||||
this->write16_(ATM90E32_REGISTER_CFGREGACCEN, 0x55AA);
|
this->write16_(ATM90E32_REGISTER_CFGREGACCEN, 0x55AA);
|
||||||
this->write16_(voltage_offset_registers[phase], static_cast<uint16_t>(voltage_offset));
|
this->write16_(first_registers[phase], static_cast<uint16_t>(first_offset));
|
||||||
this->write16_(current_offset_registers[phase], static_cast<uint16_t>(current_offset));
|
this->write16_(second_registers[phase], static_cast<uint16_t>(second_offset));
|
||||||
this->write16_(ATM90E32_REGISTER_CFGREGACCEN, 0x0000);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ATM90E32Component::write_power_offsets_to_registers_(uint8_t phase, int16_t p_offset, int16_t q_offset) {
|
|
||||||
// Save to runtime
|
|
||||||
this->phase_[phase].active_power_offset_ = p_offset;
|
|
||||||
this->phase_[phase].reactive_power_offset_ = q_offset;
|
|
||||||
|
|
||||||
// Save to flash-storable struct
|
|
||||||
this->power_offset_phase_[phase].active_power_offset = p_offset;
|
|
||||||
this->power_offset_phase_[phase].reactive_power_offset = q_offset;
|
|
||||||
|
|
||||||
// Write to registers
|
|
||||||
this->write16_(ATM90E32_REGISTER_CFGREGACCEN, 0x55AA);
|
|
||||||
this->write16_(this->power_offset_registers[phase], static_cast<uint16_t>(p_offset));
|
|
||||||
this->write16_(this->reactive_power_offset_registers[phase], static_cast<uint16_t>(q_offset));
|
|
||||||
this->write16_(ATM90E32_REGISTER_CFGREGACCEN, 0x0000);
|
this->write16_(ATM90E32_REGISTER_CFGREGACCEN, 0x0000);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -947,89 +983,78 @@ void ATM90E32Component::restore_gain_calibrations_() {
|
|||||||
ESP_LOGW(TAG, "[CALIBRATION][%s] No stored gain calibrations found. Using config file values.", cs);
|
ESP_LOGW(TAG, "[CALIBRATION][%s] No stored gain calibrations found. Using config file values.", cs);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ATM90E32Component::restore_offset_calibrations_() {
|
void ATM90E32Component::restore_offset_calibrations_(OffsetCalibrationType type) {
|
||||||
|
const bool power_offsets = type == OffsetCalibrationType::OFFSET_CALIBRATION_TYPE_POWER;
|
||||||
const char *cs = this->get_calibration_id_();
|
const char *cs = this->get_calibration_id_();
|
||||||
|
const LogString *name = power_offsets ? LOG_STR("power offset") : LOG_STR("offset");
|
||||||
|
OffsetCalibration(*offsets)[3] = power_offsets ? &this->power_offset_phase_ : &this->offset_phase_;
|
||||||
|
OffsetCalibration(*config_offsets)[3] =
|
||||||
|
power_offsets ? &this->config_power_offset_phase_ : &this->config_offset_phase_;
|
||||||
|
ESPPreferenceObject *preference = power_offsets ? &this->power_offset_pref_ : &this->offset_pref_;
|
||||||
|
bool *has_stored =
|
||||||
|
power_offsets ? &this->has_stored_power_offset_calibration_ : &this->has_stored_offset_calibration_;
|
||||||
|
bool *restored = power_offsets ? &this->restored_power_offset_calibration_ : &this->restored_offset_calibration_;
|
||||||
|
bool *mismatches = power_offsets ? this->power_offset_calibration_mismatch_ : this->offset_calibration_mismatch_;
|
||||||
|
const bool *has_first = power_offsets ? this->has_config_active_power_offset_ : this->has_config_voltage_offset_;
|
||||||
|
const bool *has_second = power_offsets ? this->has_config_reactive_power_offset_ : this->has_config_current_offset_;
|
||||||
|
|
||||||
for (uint8_t i = 0; i < 3; ++i)
|
for (uint8_t i = 0; i < 3; ++i)
|
||||||
this->config_offset_phase_[i] = this->offset_phase_[i];
|
(*config_offsets)[i] = (*offsets)[i];
|
||||||
|
|
||||||
bool have_data = this->offset_pref_.load(&this->offset_phase_);
|
|
||||||
|
|
||||||
|
const bool have_data = preference->load(offsets);
|
||||||
bool all_zero = true;
|
bool all_zero = true;
|
||||||
if (have_data) {
|
if (have_data) {
|
||||||
for (auto &phase : this->offset_phase_) {
|
for (const auto &phase : *offsets) {
|
||||||
if (phase.voltage_offset_ != 0 || phase.current_offset_ != 0) {
|
if (phase.first_offset != 0 || phase.second_offset != 0) {
|
||||||
all_zero = false;
|
all_zero = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (have_data && !all_zero) {
|
*has_stored = have_data && !all_zero;
|
||||||
this->restored_offset_calibration_ = true;
|
*restored = false;
|
||||||
for (uint8_t phase = 0; phase < 3; phase++) {
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
auto &offset = this->offset_phase_[phase];
|
mismatches[phase] = false;
|
||||||
bool mismatch = false;
|
if (*has_stored) {
|
||||||
if (this->has_config_voltage_offset_[phase] &&
|
mismatches[phase] =
|
||||||
offset.voltage_offset_ != this->config_offset_phase_[phase].voltage_offset_)
|
(has_first[phase] && (*offsets)[phase].first_offset != (*config_offsets)[phase].first_offset) ||
|
||||||
mismatch = true;
|
(has_second[phase] && (*offsets)[phase].second_offset != (*config_offsets)[phase].second_offset);
|
||||||
if (this->has_config_current_offset_[phase] &&
|
|
||||||
offset.current_offset_ != this->config_offset_phase_[phase].current_offset_)
|
|
||||||
mismatch = true;
|
|
||||||
if (mismatch)
|
|
||||||
this->offset_calibration_mismatch_[phase] = true;
|
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
|
|
||||||
|
if (!*has_stored) {
|
||||||
for (uint8_t phase = 0; phase < 3; phase++)
|
for (uint8_t phase = 0; phase < 3; phase++)
|
||||||
this->offset_phase_[phase] = this->config_offset_phase_[phase];
|
(*offsets)[phase] = (*config_offsets)[phase];
|
||||||
ESP_LOGW(TAG, "[CALIBRATION][%s] No stored offset calibrations found. Using default values.", cs);
|
ESP_LOGW(TAG, "[CALIBRATION][%s] No stored %s calibrations found. Using default values.", cs, LOG_STR_ARG(name));
|
||||||
}
|
}
|
||||||
|
|
||||||
for (uint8_t phase = 0; phase < 3; phase++) {
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
write_offsets_to_registers_(phase, this->offset_phase_[phase].voltage_offset_,
|
this->write_offsets_to_registers_(phase, (*offsets)[phase].first_offset, (*offsets)[phase].second_offset, type);
|
||||||
this->offset_phase_[phase].current_offset_);
|
|
||||||
}
|
}
|
||||||
}
|
const bool initial_values_verified = this->verify_offset_writes_(type);
|
||||||
|
if (initial_values_verified) {
|
||||||
void ATM90E32Component::restore_power_offset_calibrations_() {
|
const auto state = resolve_offset_restore_state(*has_stored, true, false);
|
||||||
const char *cs = this->get_calibration_id_();
|
*restored = state.restored;
|
||||||
for (uint8_t i = 0; i < 3; ++i)
|
ESP_LOGI(TAG, "[CALIBRATION][%s] %s calibration values verified.", cs, LOG_STR_ARG(name));
|
||||||
this->config_power_offset_phase_[i] = this->power_offset_phase_[i];
|
return;
|
||||||
|
|
||||||
bool have_data = this->power_offset_pref_.load(&this->power_offset_phase_);
|
|
||||||
|
|
||||||
bool all_zero = true;
|
|
||||||
if (have_data) {
|
|
||||||
for (auto &phase : this->power_offset_phase_) {
|
|
||||||
if (phase.active_power_offset != 0 || phase.reactive_power_offset != 0) {
|
|
||||||
all_zero = false;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (have_data && !all_zero) {
|
this->using_saved_calibrations_ = false;
|
||||||
this->restored_power_offset_calibration_ = true;
|
for (uint8_t phase = 0; phase < 3; phase++)
|
||||||
for (uint8_t phase = 0; phase < 3; ++phase) {
|
mismatches[phase] = false;
|
||||||
auto &offset = this->power_offset_phase_[phase];
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
bool mismatch = false;
|
(*offsets)[phase] = (*config_offsets)[phase];
|
||||||
if (this->has_config_active_power_offset_[phase] &&
|
this->write_offsets_to_registers_(phase, (*offsets)[phase].first_offset, (*offsets)[phase].second_offset, type);
|
||||||
offset.active_power_offset != this->config_power_offset_phase_[phase].active_power_offset)
|
}
|
||||||
mismatch = true;
|
const auto state = resolve_offset_restore_state(*has_stored, false, this->verify_offset_writes_(type));
|
||||||
if (this->has_config_reactive_power_offset_[phase] &&
|
*restored = state.restored;
|
||||||
offset.reactive_power_offset != this->config_power_offset_phase_[phase].reactive_power_offset)
|
if (state.values_verified) {
|
||||||
mismatch = true;
|
ESP_LOGE(TAG, "[CALIBRATION][%s] %s calibration restore failed verification; config values verified.", cs,
|
||||||
if (mismatch)
|
LOG_STR_ARG(name));
|
||||||
this->power_offset_calibration_mismatch_[phase] = true;
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
for (uint8_t phase = 0; phase < 3; ++phase)
|
ESP_LOGE(TAG, "[CALIBRATION][%s] %s calibration restore and config fallback both failed verification.", cs,
|
||||||
this->power_offset_phase_[phase] = this->config_power_offset_phase_[phase];
|
LOG_STR_ARG(name));
|
||||||
ESP_LOGW(TAG, "[CALIBRATION][%s] No stored power offsets found. Using default values.", cs);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (uint8_t phase = 0; phase < 3; ++phase) {
|
|
||||||
write_power_offsets_to_registers_(phase, this->power_offset_phase_[phase].active_power_offset,
|
|
||||||
this->power_offset_phase_[phase].reactive_power_offset);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1084,14 +1109,14 @@ void ATM90E32Component::clear_gain_calibrations() {
|
|||||||
|
|
||||||
void ATM90E32Component::clear_offset_calibrations() {
|
void ATM90E32Component::clear_offset_calibrations() {
|
||||||
const char *cs = this->get_calibration_id_();
|
const char *cs = this->get_calibration_id_();
|
||||||
if (!this->restored_offset_calibration_) {
|
if (!this->has_stored_offset_calibration_) {
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] No stored offset calibrations to clear. Current values:", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] No stored offset calibrations to clear. Current values:", cs);
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] --------------------------------------------------------------", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] --------------------------------------------------------------", cs);
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] | Phase | offset_voltage | offset_current |", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] | Phase | offset_voltage | offset_current |", cs);
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] --------------------------------------------------------------", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] --------------------------------------------------------------", cs);
|
||||||
for (uint8_t phase = 0; phase < 3; phase++) {
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase,
|
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase,
|
||||||
this->offset_phase_[phase].voltage_offset_, this->offset_phase_[phase].current_offset_);
|
this->offset_phase_[phase].first_offset, this->offset_phase_[phase].second_offset);
|
||||||
}
|
}
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] ==============================================================\n", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] ==============================================================\n", cs);
|
||||||
return;
|
return;
|
||||||
@@ -1104,10 +1129,11 @@ void ATM90E32Component::clear_offset_calibrations() {
|
|||||||
|
|
||||||
for (uint8_t phase = 0; phase < 3; phase++) {
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
int16_t voltage_offset =
|
int16_t voltage_offset =
|
||||||
this->has_config_voltage_offset_[phase] ? this->config_offset_phase_[phase].voltage_offset_ : 0;
|
this->has_config_voltage_offset_[phase] ? this->config_offset_phase_[phase].first_offset : 0;
|
||||||
int16_t current_offset =
|
int16_t current_offset =
|
||||||
this->has_config_current_offset_[phase] ? this->config_offset_phase_[phase].current_offset_ : 0;
|
this->has_config_current_offset_[phase] ? this->config_offset_phase_[phase].second_offset : 0;
|
||||||
this->write_offsets_to_registers_(phase, voltage_offset, current_offset);
|
this->write_offsets_to_registers_(phase, voltage_offset, current_offset,
|
||||||
|
OffsetCalibrationType::OFFSET_CALIBRATION_TYPE_VOLTAGE_CURRENT);
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase, voltage_offset,
|
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase, voltage_offset,
|
||||||
current_offset);
|
current_offset);
|
||||||
}
|
}
|
||||||
@@ -1117,6 +1143,7 @@ void ATM90E32Component::clear_offset_calibrations() {
|
|||||||
this->offset_pref_.save(&zero_offsets); // Clear stored values in flash
|
this->offset_pref_.save(&zero_offsets); // Clear stored values in flash
|
||||||
global_preferences->sync();
|
global_preferences->sync();
|
||||||
|
|
||||||
|
this->has_stored_offset_calibration_ = false;
|
||||||
this->restored_offset_calibration_ = false;
|
this->restored_offset_calibration_ = false;
|
||||||
for (bool &phase : this->offset_calibration_mismatch_)
|
for (bool &phase : this->offset_calibration_mismatch_)
|
||||||
phase = false;
|
phase = false;
|
||||||
@@ -1126,15 +1153,14 @@ void ATM90E32Component::clear_offset_calibrations() {
|
|||||||
|
|
||||||
void ATM90E32Component::clear_power_offset_calibrations() {
|
void ATM90E32Component::clear_power_offset_calibrations() {
|
||||||
const char *cs = this->get_calibration_id_();
|
const char *cs = this->get_calibration_id_();
|
||||||
if (!this->restored_power_offset_calibration_) {
|
if (!this->has_stored_power_offset_calibration_) {
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] No stored power offsets to clear. Current values:", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] No stored power offsets to clear. Current values:", cs);
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] ---------------------------------------------------------------------", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] ---------------------------------------------------------------------", cs);
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] | Phase | offset_active_power | offset_reactive_power |", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] | Phase | offset_active_power | offset_reactive_power |", cs);
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] ---------------------------------------------------------------------", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] ---------------------------------------------------------------------", cs);
|
||||||
for (uint8_t phase = 0; phase < 3; phase++) {
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase,
|
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase,
|
||||||
this->power_offset_phase_[phase].active_power_offset,
|
this->power_offset_phase_[phase].first_offset, this->power_offset_phase_[phase].second_offset);
|
||||||
this->power_offset_phase_[phase].reactive_power_offset);
|
|
||||||
}
|
}
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] =====================================================================\n", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] =====================================================================\n", cs);
|
||||||
return;
|
return;
|
||||||
@@ -1147,20 +1173,21 @@ void ATM90E32Component::clear_power_offset_calibrations() {
|
|||||||
|
|
||||||
for (uint8_t phase = 0; phase < 3; phase++) {
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
int16_t active_offset =
|
int16_t active_offset =
|
||||||
this->has_config_active_power_offset_[phase] ? this->config_power_offset_phase_[phase].active_power_offset : 0;
|
this->has_config_active_power_offset_[phase] ? this->config_power_offset_phase_[phase].first_offset : 0;
|
||||||
int16_t reactive_offset = this->has_config_reactive_power_offset_[phase]
|
int16_t reactive_offset =
|
||||||
? this->config_power_offset_phase_[phase].reactive_power_offset
|
this->has_config_reactive_power_offset_[phase] ? this->config_power_offset_phase_[phase].second_offset : 0;
|
||||||
: 0;
|
this->write_offsets_to_registers_(phase, active_offset, reactive_offset,
|
||||||
this->write_power_offsets_to_registers_(phase, active_offset, reactive_offset);
|
OffsetCalibrationType::OFFSET_CALIBRATION_TYPE_POWER);
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase, active_offset,
|
ESP_LOGI(TAG, "[CALIBRATION][%s] | %c | %6d | %6d |", cs, 'A' + phase, active_offset,
|
||||||
reactive_offset);
|
reactive_offset);
|
||||||
}
|
}
|
||||||
ESP_LOGI(TAG, "[CALIBRATION][%s] =====================================================================\n", cs);
|
ESP_LOGI(TAG, "[CALIBRATION][%s] =====================================================================\n", cs);
|
||||||
|
|
||||||
PowerOffsetCalibration zero_power_offsets[3]{{0, 0}, {0, 0}, {0, 0}};
|
OffsetCalibration zero_power_offsets[3]{{0, 0}, {0, 0}, {0, 0}};
|
||||||
this->power_offset_pref_.save(&zero_power_offsets);
|
this->power_offset_pref_.save(&zero_power_offsets);
|
||||||
global_preferences->sync();
|
global_preferences->sync();
|
||||||
|
|
||||||
|
this->has_stored_power_offset_calibration_ = false;
|
||||||
this->restored_power_offset_calibration_ = false;
|
this->restored_power_offset_calibration_ = false;
|
||||||
for (bool &phase : this->power_offset_calibration_mismatch_)
|
for (bool &phase : this->power_offset_calibration_mismatch_)
|
||||||
phase = false;
|
phase = false;
|
||||||
@@ -1215,6 +1242,31 @@ bool ATM90E32Component::verify_gain_writes_() {
|
|||||||
return success; // Return true if all writes were successful, false otherwise
|
return success; // Return true if all writes were successful, false otherwise
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ATM90E32Component::verify_offset_writes_(OffsetCalibrationType type) {
|
||||||
|
const bool power_offsets = type == OffsetCalibrationType::OFFSET_CALIBRATION_TYPE_POWER;
|
||||||
|
const char *cs = this->get_calibration_id_();
|
||||||
|
const LogString *name = offset_calibration_name(power_offsets);
|
||||||
|
const LogString *first_name = power_offsets ? LOG_STR("active") : LOG_STR("voltage");
|
||||||
|
const LogString *second_name = power_offsets ? LOG_STR("reactive") : LOG_STR("current");
|
||||||
|
const OffsetCalibration *offsets = power_offsets ? this->power_offset_phase_ : this->offset_phase_;
|
||||||
|
const uint16_t *first_registers = power_offsets ? this->power_offset_registers : this->voltage_offset_registers;
|
||||||
|
const uint16_t *second_registers =
|
||||||
|
power_offsets ? this->reactive_power_offset_registers : this->current_offset_registers;
|
||||||
|
bool success = true;
|
||||||
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
|
const uint16_t first = this->read16_(first_registers[phase]);
|
||||||
|
const uint16_t second = this->read16_(second_registers[phase]);
|
||||||
|
if (!offset_register_value_matches(first, offsets[phase].first_offset) ||
|
||||||
|
!offset_register_value_matches(second, offsets[phase].second_offset)) {
|
||||||
|
ESP_LOGE(TAG, "[CALIBRATION][%s] %s readback failed for Phase %s: %s %d/%d, %s %d/%d.", cs, LOG_STR_ARG(name),
|
||||||
|
phase_labels[phase], LOG_STR_ARG(first_name), static_cast<int16_t>(first), offsets[phase].first_offset,
|
||||||
|
LOG_STR_ARG(second_name), static_cast<int16_t>(second), offsets[phase].second_offset);
|
||||||
|
success = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef USE_TEXT_SENSOR
|
#ifdef USE_TEXT_SENSOR
|
||||||
void ATM90E32Component::check_phase_status() {
|
void ATM90E32Component::check_phase_status() {
|
||||||
uint16_t state0 = this->read16_(ATM90E32_REGISTER_EMMSTATE0);
|
uint16_t state0 = this->read16_(ATM90E32_REGISTER_EMMSTATE0);
|
||||||
|
|||||||
@@ -13,6 +13,40 @@
|
|||||||
|
|
||||||
namespace esphome::atm90e32 {
|
namespace esphome::atm90e32 {
|
||||||
|
|
||||||
|
inline bool offset_register_value_matches(uint16_t actual, int16_t expected) {
|
||||||
|
return actual == static_cast<uint16_t>(expected);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct OffsetCalibration {
|
||||||
|
int16_t first_offset{0};
|
||||||
|
int16_t second_offset{0};
|
||||||
|
};
|
||||||
|
|
||||||
|
static_assert(sizeof(OffsetCalibration[3]) == 12, "Offset calibration preference layout must remain compatible");
|
||||||
|
|
||||||
|
enum class OffsetCalibrationType : uint8_t {
|
||||||
|
OFFSET_CALIBRATION_TYPE_VOLTAGE_CURRENT,
|
||||||
|
OFFSET_CALIBRATION_TYPE_POWER,
|
||||||
|
};
|
||||||
|
|
||||||
|
struct OffsetRestoreState {
|
||||||
|
bool restored;
|
||||||
|
bool values_verified;
|
||||||
|
};
|
||||||
|
|
||||||
|
inline OffsetRestoreState resolve_offset_restore_state(bool has_stored_values, bool initial_values_verified,
|
||||||
|
bool fallback_values_verified) {
|
||||||
|
if (initial_values_verified)
|
||||||
|
return {has_stored_values, true};
|
||||||
|
return {false, fallback_values_verified};
|
||||||
|
}
|
||||||
|
|
||||||
|
inline void prepare_offset_rollback(const OffsetCalibration (&previous)[3], bool had_stored_values,
|
||||||
|
OffsetCalibration (&rollback)[3]) {
|
||||||
|
for (uint8_t phase = 0; phase < 3; phase++)
|
||||||
|
rollback[phase] = had_stored_values ? previous[phase] : OffsetCalibration{};
|
||||||
|
}
|
||||||
|
|
||||||
class ATM90E32Component final : public PollingComponent,
|
class ATM90E32Component final : public PollingComponent,
|
||||||
public spi::SPIDevice<spi::BIT_ORDER_MSB_FIRST, spi::CLOCK_POLARITY_HIGH,
|
public spi::SPIDevice<spi::BIT_ORDER_MSB_FIRST, spi::CLOCK_POLARITY_HIGH,
|
||||||
spi::CLOCK_PHASE_TRAILING, spi::DATA_RATE_1MHZ> {
|
spi::CLOCK_PHASE_TRAILING, spi::DATA_RATE_1MHZ> {
|
||||||
@@ -71,19 +105,19 @@ class ATM90E32Component final : public PollingComponent,
|
|||||||
this->has_config_current_gain_[phase] = true;
|
this->has_config_current_gain_[phase] = true;
|
||||||
}
|
}
|
||||||
void set_voltage_offset(uint8_t phase, int16_t offset) {
|
void set_voltage_offset(uint8_t phase, int16_t offset) {
|
||||||
this->offset_phase_[phase].voltage_offset_ = offset;
|
this->offset_phase_[phase].first_offset = offset;
|
||||||
this->has_config_voltage_offset_[phase] = true;
|
this->has_config_voltage_offset_[phase] = true;
|
||||||
}
|
}
|
||||||
void set_current_offset(uint8_t phase, int16_t offset) {
|
void set_current_offset(uint8_t phase, int16_t offset) {
|
||||||
this->offset_phase_[phase].current_offset_ = offset;
|
this->offset_phase_[phase].second_offset = offset;
|
||||||
this->has_config_current_offset_[phase] = true;
|
this->has_config_current_offset_[phase] = true;
|
||||||
}
|
}
|
||||||
void set_active_power_offset(uint8_t phase, int16_t offset) {
|
void set_active_power_offset(uint8_t phase, int16_t offset) {
|
||||||
this->power_offset_phase_[phase].active_power_offset = offset;
|
this->power_offset_phase_[phase].first_offset = offset;
|
||||||
this->has_config_active_power_offset_[phase] = true;
|
this->has_config_active_power_offset_[phase] = true;
|
||||||
}
|
}
|
||||||
void set_reactive_power_offset(uint8_t phase, int16_t offset) {
|
void set_reactive_power_offset(uint8_t phase, int16_t offset) {
|
||||||
this->power_offset_phase_[phase].reactive_power_offset = offset;
|
this->power_offset_phase_[phase].second_offset = offset;
|
||||||
this->has_config_reactive_power_offset_[phase] = true;
|
this->has_config_reactive_power_offset_[phase] = true;
|
||||||
}
|
}
|
||||||
void set_freq_sensor(sensor::Sensor *freq_sensor) { freq_sensor_ = freq_sensor; }
|
void set_freq_sensor(sensor::Sensor *freq_sensor) { freq_sensor_ = freq_sensor; }
|
||||||
@@ -171,16 +205,16 @@ class ATM90E32Component final : public PollingComponent,
|
|||||||
float get_chip_temperature_();
|
float get_chip_temperature_();
|
||||||
bool get_publish_interval_flag_() { return publish_interval_flag_; };
|
bool get_publish_interval_flag_() { return publish_interval_flag_; };
|
||||||
void set_publish_interval_flag_(bool flag) { publish_interval_flag_ = flag; };
|
void set_publish_interval_flag_(bool flag) { publish_interval_flag_ = flag; };
|
||||||
void restore_offset_calibrations_();
|
void restore_offset_calibrations_(OffsetCalibrationType type);
|
||||||
void restore_power_offset_calibrations_();
|
|
||||||
void restore_gain_calibrations_();
|
void restore_gain_calibrations_();
|
||||||
void save_offset_calibration_to_memory_();
|
|
||||||
void save_gain_calibration_to_memory_();
|
void save_gain_calibration_to_memory_();
|
||||||
void save_power_offset_calibration_to_memory_();
|
void finish_offset_calibration_(const OffsetCalibration (&previous)[3], bool previous_restored,
|
||||||
void write_offsets_to_registers_(uint8_t phase, int16_t voltage_offset, int16_t current_offset);
|
bool previous_using_saved, OffsetCalibrationType type);
|
||||||
void write_power_offsets_to_registers_(uint8_t phase, int16_t p_offset, int16_t q_offset);
|
void write_offsets_to_registers_(uint8_t phase, int16_t first_offset, int16_t second_offset,
|
||||||
|
OffsetCalibrationType type);
|
||||||
void write_gains_to_registers_();
|
void write_gains_to_registers_();
|
||||||
bool verify_gain_writes_();
|
bool verify_gain_writes_();
|
||||||
|
bool verify_offset_writes_(OffsetCalibrationType type);
|
||||||
bool validate_spi_read_(uint16_t expected, const char *context = nullptr);
|
bool validate_spi_read_(uint16_t expected, const char *context = nullptr);
|
||||||
void log_calibration_status_();
|
void log_calibration_status_();
|
||||||
const char *get_calibration_id_();
|
const char *get_calibration_id_();
|
||||||
@@ -219,19 +253,10 @@ class ATM90E32Component final : public PollingComponent,
|
|||||||
uint32_t cumulative_reverse_active_energy_{0};
|
uint32_t cumulative_reverse_active_energy_{0};
|
||||||
} phase_[3];
|
} phase_[3];
|
||||||
|
|
||||||
struct OffsetCalibration {
|
OffsetCalibration offset_phase_[3];
|
||||||
int16_t voltage_offset_{0};
|
|
||||||
int16_t current_offset_{0};
|
|
||||||
} offset_phase_[3];
|
|
||||||
|
|
||||||
OffsetCalibration config_offset_phase_[3];
|
OffsetCalibration config_offset_phase_[3];
|
||||||
|
OffsetCalibration power_offset_phase_[3];
|
||||||
struct PowerOffsetCalibration {
|
OffsetCalibration config_power_offset_phase_[3];
|
||||||
int16_t active_power_offset{0};
|
|
||||||
int16_t reactive_power_offset{0};
|
|
||||||
} power_offset_phase_[3];
|
|
||||||
|
|
||||||
PowerOffsetCalibration config_power_offset_phase_[3];
|
|
||||||
|
|
||||||
struct GainCalibration {
|
struct GainCalibration {
|
||||||
uint16_t voltage_gain{1};
|
uint16_t voltage_gain{1};
|
||||||
@@ -265,6 +290,8 @@ class ATM90E32Component final : public PollingComponent,
|
|||||||
bool enable_offset_calibration_{false};
|
bool enable_offset_calibration_{false};
|
||||||
bool enable_gain_calibration_{false};
|
bool enable_gain_calibration_{false};
|
||||||
const char *instance_id_{nullptr};
|
const char *instance_id_{nullptr};
|
||||||
|
bool has_stored_offset_calibration_{false};
|
||||||
|
bool has_stored_power_offset_calibration_{false};
|
||||||
bool restored_offset_calibration_{false};
|
bool restored_offset_calibration_{false};
|
||||||
bool restored_power_offset_calibration_{false};
|
bool restored_power_offset_calibration_{false};
|
||||||
bool restored_gain_calibration_{false};
|
bool restored_gain_calibration_{false};
|
||||||
|
|||||||
@@ -313,9 +313,10 @@ FileDecoderState AudioDecoder::decode_mp3_() {
|
|||||||
this->output_transfer_buffer_->increase_buffer_length(
|
this->output_transfer_buffer_->increase_buffer_length(
|
||||||
this->audio_stream_info_.value().frames_to_bytes(samples_decoded));
|
this->audio_stream_info_.value().frames_to_bytes(samples_decoded));
|
||||||
}
|
}
|
||||||
} else if (result == micro_mp3::MP3_STREAM_INFO_READY) {
|
} else if (result == micro_mp3::MP3_STREAM_INFO_READY || result == micro_mp3::MP3_STREAM_INFO_CHANGED) {
|
||||||
// First successful header parse: capture stream info and resize the output buffer to fit one full frame.
|
// Header parsed: capture stream info and resize the output buffer to fit one full frame.
|
||||||
// microMP3 always outputs 16-bit PCM.
|
// microMP3 always outputs 16-bit PCM. MP3_STREAM_INFO_CHANGED is handled identically: despite its
|
||||||
|
// negative value it is documented as recoverable, so it must not reach the catch-all below.
|
||||||
this->audio_stream_info_ =
|
this->audio_stream_info_ =
|
||||||
audio::AudioStreamInfo(16, this->mp3_decoder_->get_channels(), this->mp3_decoder_->get_sample_rate());
|
audio::AudioStreamInfo(16, this->mp3_decoder_->get_channels(), this->mp3_decoder_->get_sample_rate());
|
||||||
this->free_buffer_required_ =
|
this->free_buffer_required_ =
|
||||||
|
|||||||
@@ -22,6 +22,23 @@ class Automation {
|
|||||||
static const char *const TAG;
|
static const char *const TAG;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Base for nodes that never read the parent's services.
|
||||||
|
// The parent releases its services only once every node reports Established, so a node that never
|
||||||
|
// reports it keeps that memory allocated for the life of the connection.
|
||||||
|
class BLEClientServicelessNode : public BLEClientNode {
|
||||||
|
public:
|
||||||
|
// Final so that Established is always reported on SEARCH_CMPL, before the derived node sees the event.
|
||||||
|
void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if, esp_ble_gattc_cb_param_t *param) final {
|
||||||
|
if (event == ESP_GATTC_SEARCH_CMPL_EVT)
|
||||||
|
this->node_state = espbt::ClientState::ESTABLISHED;
|
||||||
|
this->on_gattc_event(event, gattc_if, param);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected:
|
||||||
|
// Derived nodes handle GATT events here rather than by overriding the handler above.
|
||||||
|
virtual void on_gattc_event(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if, esp_ble_gattc_cb_param_t *param) {}
|
||||||
|
};
|
||||||
|
|
||||||
// implement on_connect automation.
|
// implement on_connect automation.
|
||||||
class BLEClientConnectTrigger final : public Trigger<>, public BLEClientNode {
|
class BLEClientConnectTrigger final : public Trigger<>, public BLEClientNode {
|
||||||
public:
|
public:
|
||||||
@@ -61,7 +78,7 @@ class BLEClientDisconnectTrigger final : public Trigger<>, public BLEClientNode
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class BLEClientPasskeyRequestTrigger final : public Trigger<>, public BLEClientNode {
|
class BLEClientPasskeyRequestTrigger final : public Trigger<>, public BLEClientServicelessNode {
|
||||||
public:
|
public:
|
||||||
explicit BLEClientPasskeyRequestTrigger(BLEClient *parent) { parent->register_ble_node(this); }
|
explicit BLEClientPasskeyRequestTrigger(BLEClient *parent) { parent->register_ble_node(this); }
|
||||||
void loop() override {}
|
void loop() override {}
|
||||||
@@ -71,7 +88,7 @@ class BLEClientPasskeyRequestTrigger final : public Trigger<>, public BLEClientN
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class BLEClientPasskeyNotificationTrigger final : public Trigger<uint32_t>, public BLEClientNode {
|
class BLEClientPasskeyNotificationTrigger final : public Trigger<uint32_t>, public BLEClientServicelessNode {
|
||||||
public:
|
public:
|
||||||
explicit BLEClientPasskeyNotificationTrigger(BLEClient *parent) { parent->register_ble_node(this); }
|
explicit BLEClientPasskeyNotificationTrigger(BLEClient *parent) { parent->register_ble_node(this); }
|
||||||
void loop() override {}
|
void loop() override {}
|
||||||
@@ -82,7 +99,7 @@ class BLEClientPasskeyNotificationTrigger final : public Trigger<uint32_t>, publ
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class BLEClientNumericComparisonRequestTrigger final : public Trigger<uint32_t>, public BLEClientNode {
|
class BLEClientNumericComparisonRequestTrigger final : public Trigger<uint32_t>, public BLEClientServicelessNode {
|
||||||
public:
|
public:
|
||||||
explicit BLEClientNumericComparisonRequestTrigger(BLEClient *parent) { parent->register_ble_node(this); }
|
explicit BLEClientNumericComparisonRequestTrigger(BLEClient *parent) { parent->register_ble_node(this); }
|
||||||
void loop() override {}
|
void loop() override {}
|
||||||
@@ -315,19 +332,17 @@ template<typename... Ts> class BLEClientRemoveBondAction final : public Action<T
|
|||||||
BLEClient *parent_{nullptr};
|
BLEClient *parent_{nullptr};
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename... Ts> class BLEClientConnectAction final : public Action<Ts...>, public BLEClientNode {
|
template<typename... Ts> class BLEClientConnectAction final : public Action<Ts...>, public BLEClientServicelessNode {
|
||||||
public:
|
public:
|
||||||
BLEClientConnectAction(BLEClient *ble_client) {
|
BLEClientConnectAction(BLEClient *ble_client) {
|
||||||
ble_client->register_ble_node(this);
|
ble_client->register_ble_node(this);
|
||||||
ble_client_ = ble_client;
|
ble_client_ = ble_client;
|
||||||
}
|
}
|
||||||
void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
|
void on_gattc_event(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if, esp_ble_gattc_cb_param_t *param) override {
|
||||||
esp_ble_gattc_cb_param_t *param) override {
|
|
||||||
if (this->num_running_ == 0)
|
if (this->num_running_ == 0)
|
||||||
return;
|
return;
|
||||||
switch (event) {
|
switch (event) {
|
||||||
case ESP_GATTC_SEARCH_CMPL_EVT:
|
case ESP_GATTC_SEARCH_CMPL_EVT:
|
||||||
this->node_state = espbt::ClientState::ESTABLISHED;
|
|
||||||
this->parent()->run_later([this]() { this->play_next_tuple_(this->var_); });
|
this->parent()->run_later([this]() { this->play_next_tuple_(this->var_); });
|
||||||
break;
|
break;
|
||||||
// if the connection is closed, terminate the automation chain.
|
// if the connection is closed, terminate the automation chain.
|
||||||
@@ -364,14 +379,13 @@ template<typename... Ts> class BLEClientConnectAction final : public Action<Ts..
|
|||||||
std::tuple<Ts...> var_{};
|
std::tuple<Ts...> var_{};
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename... Ts> class BLEClientDisconnectAction final : public Action<Ts...>, public BLEClientNode {
|
template<typename... Ts> class BLEClientDisconnectAction final : public Action<Ts...>, public BLEClientServicelessNode {
|
||||||
public:
|
public:
|
||||||
BLEClientDisconnectAction(BLEClient *ble_client) {
|
BLEClientDisconnectAction(BLEClient *ble_client) {
|
||||||
ble_client->register_ble_node(this);
|
ble_client->register_ble_node(this);
|
||||||
ble_client_ = ble_client;
|
ble_client_ = ble_client;
|
||||||
}
|
}
|
||||||
void gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if,
|
void on_gattc_event(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if, esp_ble_gattc_cb_param_t *param) override {
|
||||||
esp_ble_gattc_cb_param_t *param) override {
|
|
||||||
if (this->num_running_ == 0)
|
if (this->num_running_ == 0)
|
||||||
return;
|
return;
|
||||||
switch (event) {
|
switch (event) {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ namespace esphome::dallas_temp {
|
|||||||
static const char *const TAG = "dallas.temp.sensor";
|
static const char *const TAG = "dallas.temp.sensor";
|
||||||
|
|
||||||
static const uint8_t DALLAS_MODEL_DS18S20 = 0x10;
|
static const uint8_t DALLAS_MODEL_DS18S20 = 0x10;
|
||||||
|
static const uint8_t DALLAS_MODEL_DS18B20 = 0x28;
|
||||||
static const uint8_t DALLAS_COMMAND_START_CONVERSION = 0x44;
|
static const uint8_t DALLAS_COMMAND_START_CONVERSION = 0x44;
|
||||||
static const uint8_t DALLAS_COMMAND_READ_SCRATCH_PAD = 0xBE;
|
static const uint8_t DALLAS_COMMAND_READ_SCRATCH_PAD = 0xBE;
|
||||||
static const uint8_t DALLAS_COMMAND_WRITE_SCRATCH_PAD = 0x4E;
|
static const uint8_t DALLAS_COMMAND_WRITE_SCRATCH_PAD = 0x4E;
|
||||||
@@ -154,7 +155,14 @@ float DallasTemperatureSensor::get_temp_c_() {
|
|||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
// undocumented test for powerup measurement of 85
|
||||||
|
// https://github.com/cpetrich/counterfeit_DS18B20#solution-to-the-85-c-problem
|
||||||
|
if ((this->address_ & 0xff) == DALLAS_MODEL_DS18B20) {
|
||||||
|
if ((temp == 85 * 16) && (this->scratch_pad_[6] == 0xc)) {
|
||||||
|
ESP_LOGD(TAG, "dropping reading caused by sensor reset");
|
||||||
|
return NAN;
|
||||||
|
}
|
||||||
|
}
|
||||||
return temp / 16.0f;
|
return temp / 16.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -66,11 +66,15 @@ const char *DebugComponent::get_reset_reason_(std::span<char, RESET_REASON_BUFFE
|
|||||||
|
|
||||||
unsigned reason = esp_reset_reason();
|
unsigned reason = esp_reset_reason();
|
||||||
if (reason < sizeof(RESET_REASONS) / sizeof(RESET_REASONS[0])) {
|
if (reason < sizeof(RESET_REASONS) / sizeof(RESET_REASONS[0])) {
|
||||||
if (reason == ESP_RST_SW) {
|
if (reason == ESP_RST_SW || reason == ESP_RST_WDT) {
|
||||||
|
// On some ESP32-S3 configurations (e.g. SPIRAM with fetch-instructions/rodata),
|
||||||
|
// esp_restart() intermittently produces RTCWDT_RTC_RST (ESP_RST_WDT) instead of
|
||||||
|
// ESP_RST_SW. Check the stored reboot source for both reset reasons so a software
|
||||||
|
// reboot that ends up as WDT still reports the correct source.
|
||||||
auto pref = global_preferences->make_preference(REBOOT_MAX_LEN,
|
auto pref = global_preferences->make_preference(REBOOT_MAX_LEN,
|
||||||
fnv1_hash_extend(fnv1_hash(REBOOT_KEY), App.get_name().c_str()));
|
fnv1_hash_extend(fnv1_hash(REBOOT_KEY), App.get_name().c_str()));
|
||||||
char reboot_source[REBOOT_MAX_LEN]{};
|
char reboot_source[REBOOT_MAX_LEN]{};
|
||||||
if (pref.load(&reboot_source)) {
|
if (pref.load(&reboot_source) && reboot_source[0] != '\0') {
|
||||||
reboot_source[REBOOT_MAX_LEN - 1] = '\0';
|
reboot_source[REBOOT_MAX_LEN - 1] = '\0';
|
||||||
snprintf(buf, size, "Reboot request from %s", reboot_source);
|
snprintf(buf, size, "Reboot request from %s", reboot_source);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -23,11 +23,7 @@ from esphome.const import (
|
|||||||
)
|
)
|
||||||
from esphome.types import ConfigType
|
from esphome.types import ConfigType
|
||||||
|
|
||||||
from . import ( # noqa: F401 pylint: disable=unused-import
|
from . import CONF_DEBUG_ID, FILTER_SOURCE_FILES, DebugComponent # noqa: F401 pylint: disable=unused-import
|
||||||
CONF_DEBUG_ID,
|
|
||||||
FILTER_SOURCE_FILES,
|
|
||||||
DebugComponent,
|
|
||||||
)
|
|
||||||
|
|
||||||
DEPENDENCIES = ["debug"]
|
DEPENDENCIES = ["debug"]
|
||||||
|
|
||||||
|
|||||||
@@ -9,11 +9,7 @@ from esphome.const import (
|
|||||||
)
|
)
|
||||||
from esphome.types import ConfigType
|
from esphome.types import ConfigType
|
||||||
|
|
||||||
from . import ( # noqa: F401 pylint: disable=unused-import
|
from . import CONF_DEBUG_ID, FILTER_SOURCE_FILES, DebugComponent # noqa: F401 pylint: disable=unused-import
|
||||||
CONF_DEBUG_ID,
|
|
||||||
FILTER_SOURCE_FILES,
|
|
||||||
DebugComponent,
|
|
||||||
)
|
|
||||||
|
|
||||||
DEPENDENCIES = ["debug"]
|
DEPENDENCIES = ["debug"]
|
||||||
|
|
||||||
|
|||||||
@@ -3,18 +3,11 @@ import esphome.codegen as cg
|
|||||||
# Re-exported for the many esp32-side users; defined in esphome.const
|
# Re-exported for the many esp32-side users; defined in esphome.const
|
||||||
# and esphome.espidf so the upload/logs fast path can use them without
|
# and esphome.espidf so the upload/logs fast path can use them without
|
||||||
# importing this package.
|
# importing this package.
|
||||||
from esphome.const import ( # noqa: F401 # pylint: disable=unused-import
|
from esphome.const import KEY_ESP32, KEY_FLASH_SIZE, KEY_IDF_VERSION, KEY_VARIANT # noqa: F401 # pylint: disable=unused-import
|
||||||
KEY_ESP32,
|
|
||||||
KEY_FLASH_SIZE,
|
|
||||||
KEY_IDF_VERSION,
|
|
||||||
KEY_VARIANT,
|
|
||||||
)
|
|
||||||
|
|
||||||
# Back compat for external components only; in-tree callers import it
|
# Back compat for external components only; in-tree callers import it
|
||||||
# from esphome.espidf directly.
|
# from esphome.espidf directly.
|
||||||
from esphome.espidf import ( # noqa: F401 # pylint: disable=unused-import
|
from esphome.espidf import variant_to_idf_target # noqa: F401 # pylint: disable=unused-import
|
||||||
variant_to_idf_target,
|
|
||||||
)
|
|
||||||
|
|
||||||
KEY_BOARD = "board"
|
KEY_BOARD = "board"
|
||||||
KEY_SDKCONFIG_OPTIONS = "sdkconfig_options"
|
KEY_SDKCONFIG_OPTIONS = "sdkconfig_options"
|
||||||
|
|||||||
@@ -91,7 +91,14 @@ void I2SAudioSpeakerBase::loop() {
|
|||||||
this->speaker_task_handle_ = nullptr;
|
this->speaker_task_handle_ = nullptr;
|
||||||
|
|
||||||
this->stop_i2s_driver_();
|
this->stop_i2s_driver_();
|
||||||
xEventGroupClearBits(this->event_group_, SpeakerEventGroupBits::ALL_BITS);
|
// ALL_BITS includes COMMAND_START. Take the bits from the clear itself, not from the snapshot at
|
||||||
|
// the top of loop(): the audio source's task can raise a start at any point above, including
|
||||||
|
// during stop_i2s_driver_(), and nothing would ever re-issue it.
|
||||||
|
const EventBits_t bits_before_clear = xEventGroupClearBits(this->event_group_, SpeakerEventGroupBits::ALL_BITS);
|
||||||
|
if (bits_before_clear & SpeakerEventGroupBits::COMMAND_START) {
|
||||||
|
ESP_LOGD(TAG, "Start requested while stopping; keeping the request");
|
||||||
|
xEventGroupSetBits(this->event_group_, SpeakerEventGroupBits::COMMAND_START);
|
||||||
|
}
|
||||||
this->status_clear_error();
|
this->status_clear_error();
|
||||||
|
|
||||||
this->on_task_stopped();
|
this->on_task_stopped();
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
#include <esp_log.h>
|
#include <esp_log.h>
|
||||||
|
|
||||||
#include <driver/uart.h>
|
#include <driver/uart.h>
|
||||||
|
#include <soc/soc_caps.h>
|
||||||
|
|
||||||
#ifdef USE_LOGGER_UART_SELECTION_USB_SERIAL_JTAG
|
#ifdef USE_LOGGER_UART_SELECTION_USB_SERIAL_JTAG
|
||||||
#include <driver/usb_serial_jtag.h>
|
#include <driver/usb_serial_jtag.h>
|
||||||
@@ -76,7 +77,11 @@ void init_uart(uart_port_t uart_num, uint32_t baud_rate, int tx_buffer_size) {
|
|||||||
uart_config.parity = UART_PARITY_DISABLE;
|
uart_config.parity = UART_PARITY_DISABLE;
|
||||||
uart_config.stop_bits = UART_STOP_BITS_1;
|
uart_config.stop_bits = UART_STOP_BITS_1;
|
||||||
uart_config.flow_ctrl = UART_HW_FLOWCTRL_DISABLE;
|
uart_config.flow_ctrl = UART_HW_FLOWCTRL_DISABLE;
|
||||||
|
#if SOC_UART_SUPPORT_XTAL_CLK
|
||||||
|
uart_config.source_clk = UART_SCLK_XTAL;
|
||||||
|
#else
|
||||||
uart_config.source_clk = UART_SCLK_DEFAULT;
|
uart_config.source_clk = UART_SCLK_DEFAULT;
|
||||||
|
#endif
|
||||||
uart_param_config(uart_num, &uart_config);
|
uart_param_config(uart_num, &uart_config);
|
||||||
// The logger only writes to UART, never reads, so use the minimum RX buffer.
|
// The logger only writes to UART, never reads, so use the minimum RX buffer.
|
||||||
// ESP-IDF requires rx_buffer_size > UART_HW_FIFO_LEN (128 bytes).
|
// ESP-IDF requires rx_buffer_size > UART_HW_FIFO_LEN (128 bytes).
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ from ..defines import (
|
|||||||
from ..types import LvCompound, LvType
|
from ..types import LvCompound, LvType
|
||||||
from . import Widget, WidgetType, get_widgets
|
from . import Widget, WidgetType, get_widgets
|
||||||
from .buttonmatrix import CONF_BUTTONMATRIX
|
from .buttonmatrix import CONF_BUTTONMATRIX
|
||||||
|
from .label import CONF_LABEL
|
||||||
from .textarea import CONF_TEXTAREA, lv_textarea_t
|
from .textarea import CONF_TEXTAREA, lv_textarea_t
|
||||||
|
|
||||||
CONF_KEYBOARD = "keyboard"
|
CONF_KEYBOARD = "keyboard"
|
||||||
@@ -49,7 +50,7 @@ class KeyboardType(WidgetType):
|
|||||||
)
|
)
|
||||||
|
|
||||||
def get_uses(self):
|
def get_uses(self):
|
||||||
return CONF_KEYBOARD, CONF_TEXTAREA, CONF_BUTTONMATRIX
|
return CONF_KEYBOARD, CONF_TEXTAREA, CONF_BUTTONMATRIX, CONF_LABEL
|
||||||
|
|
||||||
async def to_code(self, w: Widget, config: dict):
|
async def to_code(self, w: Widget, config: dict):
|
||||||
add_lv_use("KEY_LISTENER")
|
add_lv_use("KEY_LISTENER")
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ from ..types import lv_obj_t
|
|||||||
from . import Widget, WidgetType
|
from . import Widget, WidgetType
|
||||||
from .canvas import CONF_CANVAS
|
from .canvas import CONF_CANVAS
|
||||||
from .img import CONF_IMAGE
|
from .img import CONF_IMAGE
|
||||||
|
from .label import CONF_LABEL
|
||||||
|
|
||||||
CONF_QRCODE = "qrcode"
|
CONF_QRCODE = "qrcode"
|
||||||
CONF_DARK_COLOR = "dark_color"
|
CONF_DARK_COLOR = "dark_color"
|
||||||
@@ -41,7 +42,7 @@ class QrCodeType(WidgetType):
|
|||||||
)
|
)
|
||||||
|
|
||||||
def get_uses(self):
|
def get_uses(self):
|
||||||
return CONF_CANVAS, CONF_IMAGE
|
return CONF_CANVAS, CONF_IMAGE, CONF_LABEL
|
||||||
|
|
||||||
async def to_code(self, w: Widget, config):
|
async def to_code(self, w: Widget, config):
|
||||||
await w.set_property(
|
await w.set_property(
|
||||||
|
|||||||
@@ -28,6 +28,7 @@ from ..types import LV_EVENT, LvType, ObjUpdateAction, lv_obj_t, lv_obj_t_ptr
|
|||||||
from . import Widget, WidgetType, add_widgets, get_widgets, set_obj_properties
|
from . import Widget, WidgetType, add_widgets, get_widgets, set_obj_properties
|
||||||
from .button import button_spec
|
from .button import button_spec
|
||||||
from .buttonmatrix import CONF_BUTTONMATRIX, buttonmatrix_spec
|
from .buttonmatrix import CONF_BUTTONMATRIX, buttonmatrix_spec
|
||||||
|
from .label import CONF_LABEL
|
||||||
from .obj import obj_spec
|
from .obj import obj_spec
|
||||||
|
|
||||||
CONF_TABVIEW = "tabview"
|
CONF_TABVIEW = "tabview"
|
||||||
@@ -74,7 +75,7 @@ class TabviewType(WidgetType):
|
|||||||
)
|
)
|
||||||
|
|
||||||
def get_uses(self):
|
def get_uses(self):
|
||||||
return CONF_BUTTONMATRIX, TYPE_FLEX, CONF_BUTTON
|
return CONF_BUTTONMATRIX, TYPE_FLEX, CONF_BUTTON, CONF_LABEL
|
||||||
|
|
||||||
async def to_code(self, w: Widget, config: dict):
|
async def to_code(self, w: Widget, config: dict):
|
||||||
await w.set_property(
|
await w.set_property(
|
||||||
|
|||||||
@@ -35,8 +35,8 @@ void MipiDsi::setup() {
|
|||||||
.bus_id = 0, // index from 0, specify the DSI host to use
|
.bus_id = 0, // index from 0, specify the DSI host to use
|
||||||
.num_data_lanes =
|
.num_data_lanes =
|
||||||
this->lanes_, // Number of data lanes to use, can't set a value that exceeds the chip's capability
|
this->lanes_, // Number of data lanes to use, can't set a value that exceeds the chip's capability
|
||||||
.phy_clk_src = MIPI_DSI_PHY_CLK_SRC_DEFAULT, // Clock source for the DPHY
|
// phy_clk_src left at 0 to enable runtime auto-select.
|
||||||
.lane_bit_rate_mbps = this->lane_bit_rate_, // Bit rate of the data lanes, in Mbps
|
.lane_bit_rate_mbps = this->lane_bit_rate_, // Bit rate of the data lanes, in Mbps
|
||||||
};
|
};
|
||||||
auto err = esp_lcd_new_dsi_bus(&bus_config, &this->bus_handle_);
|
auto err = esp_lcd_new_dsi_bus(&bus_config, &this->bus_handle_);
|
||||||
if (err != ESP_OK) {
|
if (err != ESP_OK) {
|
||||||
|
|||||||
@@ -67,6 +67,9 @@ void MQTTJSONLightComponent::send_discovery(JsonObject root, mqtt::SendDiscovery
|
|||||||
if (traits.supports_color_mode(ColorMode::RGB_COLD_WARM_WHITE))
|
if (traits.supports_color_mode(ColorMode::RGB_COLD_WARM_WHITE))
|
||||||
color_modes.add(ESPHOME_F("rgbww"));
|
color_modes.add(ESPHOME_F("rgbww"));
|
||||||
|
|
||||||
|
if (traits.supports_color_capability(ColorCapability::BRIGHTNESS))
|
||||||
|
root[ESPHOME_F("brightness")] = true;
|
||||||
|
|
||||||
if (traits.supports_color_mode(ColorMode::COLOR_TEMPERATURE) ||
|
if (traits.supports_color_mode(ColorMode::COLOR_TEMPERATURE) ||
|
||||||
traits.supports_color_mode(ColorMode::COLD_WARM_WHITE)) {
|
traits.supports_color_mode(ColorMode::COLD_WARM_WHITE)) {
|
||||||
root[MQTT_MIN_MIREDS] = traits.get_min_mireds();
|
root[MQTT_MIN_MIREDS] = traits.get_min_mireds();
|
||||||
|
|||||||
@@ -14,12 +14,7 @@ from esphome.const import (
|
|||||||
)
|
)
|
||||||
from esphome.core import CORE, TimePeriod
|
from esphome.core import CORE, TimePeriod
|
||||||
|
|
||||||
from . import ( # noqa: F401 pylint: disable=unused-import
|
from . import FILTER_SOURCE_FILES, Nextion, nextion_ns, nextion_ref # noqa: F401 pylint: disable=unused-import
|
||||||
FILTER_SOURCE_FILES,
|
|
||||||
Nextion,
|
|
||||||
nextion_ns,
|
|
||||||
nextion_ref,
|
|
||||||
)
|
|
||||||
from .base_component import (
|
from .base_component import (
|
||||||
CONF_AUTO_WAKE_ON_TOUCH,
|
CONF_AUTO_WAKE_ON_TOUCH,
|
||||||
CONF_COMMAND_SPACING,
|
CONF_COMMAND_SPACING,
|
||||||
|
|||||||
@@ -18,6 +18,16 @@ void RFBridgeComponent::ack_() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool RFBridgeComponent::parse_bridge_byte_(uint8_t byte) {
|
bool RFBridgeComponent::parse_bridge_byte_(uint8_t byte) {
|
||||||
|
if (this->bucket_frame_candidate_ && byte == RF_CODE_START) {
|
||||||
|
// A queued next frame proves the trailing 0x55 really was the bucket
|
||||||
|
// frame's terminator: Portisch builds pulse entries from alternating
|
||||||
|
// signal edges, so the two level bits inside one pulse byte are always
|
||||||
|
// opposite — 0xAA (two high-level nibbles) cannot occur in pulse data.
|
||||||
|
// Finalize before this byte starts the new frame, so back-to-back
|
||||||
|
// deliveries are split even when loop() never observed a quiet gap
|
||||||
|
// between them.
|
||||||
|
this->finish_bucket_frame_();
|
||||||
|
}
|
||||||
size_t at = this->rx_buffer_.size();
|
size_t at = this->rx_buffer_.size();
|
||||||
this->rx_buffer_.push_back(byte);
|
this->rx_buffer_.push_back(byte);
|
||||||
const uint8_t *raw = &this->rx_buffer_[0];
|
const uint8_t *raw = &this->rx_buffer_[0];
|
||||||
@@ -84,26 +94,21 @@ bool RFBridgeComponent::parse_bridge_byte_(uint8_t byte) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case RF_CODE_RFIN_BUCKET: {
|
case RF_CODE_RFIN_BUCKET: {
|
||||||
if (byte != RF_CODE_STOP) {
|
if (at == 2) {
|
||||||
return true;
|
// The count byte: Portisch sends at most 7 buckets + sync, so 0 or
|
||||||
|
// >8 cannot be a genuine capture — reject before it can occupy the
|
||||||
|
// buffer for a full frame timeout.
|
||||||
|
return byte != 0 && byte <= B1_MAX_BUCKET_COUNT;
|
||||||
}
|
}
|
||||||
|
// 0x55 is legal DATA inside a B1 frame: bucket durations are sent
|
||||||
uint8_t buckets = raw[2] << 1;
|
// with only their HIGH byte masked to 7 bits, so a duration such as
|
||||||
std::string str;
|
// 0x0155 puts a raw 0x55 low byte inside the table — the first 0x55
|
||||||
char next_byte[3]; // 2 hex chars + null
|
// must therefore not end the capture. The header declares the table
|
||||||
|
// length (raw[2] pairs), so a 0x55 there is always data; one at or
|
||||||
for (uint32_t i = 0; i <= at; i++) {
|
// past the first pulse index is a terminator CANDIDATE, confirmed
|
||||||
buf_append_printf(next_byte, sizeof(next_byte), 0, "%02X", raw[i]);
|
// once the UART goes quiet (finish_bucket_frame_ in loop()).
|
||||||
str += next_byte;
|
this->bucket_frame_candidate_ = byte == RF_CODE_STOP && at >= 3 + static_cast<size_t>(raw[2]) * 2;
|
||||||
if ((i > 3) && buckets) {
|
return true;
|
||||||
buckets--;
|
|
||||||
}
|
|
||||||
if ((i < 3) || (buckets % 2) || (i == at - 1)) {
|
|
||||||
str += " ";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ESP_LOGI(TAG, "Received RFBridge Bucket: %s", str.c_str());
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
ESP_LOGW(TAG, "Unknown action: 0x%02X", action);
|
ESP_LOGW(TAG, "Unknown action: 0x%02X", action);
|
||||||
@@ -119,6 +124,47 @@ bool RFBridgeComponent::parse_bridge_byte_(uint8_t byte) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void RFBridgeComponent::finish_bucket_frame_() {
|
||||||
|
if (this->rx_buffer_.size() < 4) {
|
||||||
|
// The candidate flag requires a header + non-empty bucket table, so
|
||||||
|
// this cannot happen while flag and buffer stay consistent; guard the
|
||||||
|
// raw[2] / size-1 reads against any future divergence anyway.
|
||||||
|
this->rx_buffer_.clear();
|
||||||
|
this->bucket_frame_candidate_ = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const uint8_t *raw = this->rx_buffer_.data();
|
||||||
|
const size_t at = this->rx_buffer_.size() - 1;
|
||||||
|
|
||||||
|
uint8_t buckets = raw[2] << 1;
|
||||||
|
std::string str;
|
||||||
|
char next_byte[3]; // 2 hex chars + null
|
||||||
|
|
||||||
|
for (uint32_t i = 0; i <= at; i++) {
|
||||||
|
buf_append_printf(next_byte, sizeof(next_byte), 0, "%02X", raw[i]);
|
||||||
|
str += next_byte;
|
||||||
|
if ((i > 3) && buckets) {
|
||||||
|
buckets--;
|
||||||
|
}
|
||||||
|
if ((i < 3) || (buckets % 2) || (i == at - 1)) {
|
||||||
|
str += " ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ESP_LOGI(TAG, "Received RFBridge Bucket: %s", str.c_str());
|
||||||
|
|
||||||
|
// Deliberately NOT ACKed: Portisch's B1 command handler leaves its
|
||||||
|
// last_sniffing_command at the previous mode (RF_CODE_RFIN), and its
|
||||||
|
// host-ACK handler re-arms sniffing from that stale value — so ACKing a
|
||||||
|
// bucket delivery silently reverts the radio to standard sniffing and
|
||||||
|
// ends bucket capture. Its delivery path is fire-and-forget and never
|
||||||
|
// waits for a host ACK. Stock Itead firmware never sends B1 frames, so
|
||||||
|
// suppressing this ACK cannot change stock-firmware behavior.
|
||||||
|
// https://github.com/esphome/esphome/issues/17682
|
||||||
|
|
||||||
|
this->rx_buffer_.clear();
|
||||||
|
this->bucket_frame_candidate_ = false;
|
||||||
|
}
|
||||||
|
|
||||||
void RFBridgeComponent::write_byte_str_(const std::string &codes) {
|
void RFBridgeComponent::write_byte_str_(const std::string &codes) {
|
||||||
uint8_t code;
|
uint8_t code;
|
||||||
int size = codes.length();
|
int size = codes.length();
|
||||||
@@ -130,12 +176,31 @@ void RFBridgeComponent::write_byte_str_(const std::string &codes) {
|
|||||||
|
|
||||||
void RFBridgeComponent::loop() {
|
void RFBridgeComponent::loop() {
|
||||||
const uint32_t now = App.get_loop_component_start_time();
|
const uint32_t now = App.get_loop_component_start_time();
|
||||||
if (now - this->last_bridge_byte_ > 50) {
|
size_t avail = this->available();
|
||||||
|
if (avail == 0 && this->bucket_frame_candidate_ && now - this->last_bridge_byte_ > BUCKET_CANDIDATE_QUIET_MS) {
|
||||||
|
// The trailing 0x55 was followed by UART quiet, so it really was the
|
||||||
|
// frame terminator and not an interior data byte.
|
||||||
|
this->finish_bucket_frame_();
|
||||||
|
this->last_bridge_byte_ = now;
|
||||||
|
}
|
||||||
|
const bool receiving_bucket = this->rx_buffer_.size() >= 2 && this->rx_buffer_[1] == RF_CODE_RFIN_BUCKET;
|
||||||
|
if (receiving_bucket) {
|
||||||
|
// Never declare an in-progress bucket frame dead while its continuation
|
||||||
|
// bytes are already queued: a stalled loop() otherwise discards a live
|
||||||
|
// frame that the UART buffer proves is still arriving.
|
||||||
|
if (avail == 0 && now - this->last_bridge_byte_ > BUCKET_FRAME_TIMEOUT_MS) {
|
||||||
|
ESP_LOGD(TAG, "Discarding incomplete RFBridge Bucket frame (%u bytes)",
|
||||||
|
static_cast<unsigned>(this->rx_buffer_.size()));
|
||||||
|
this->rx_buffer_.clear();
|
||||||
|
this->bucket_frame_candidate_ = false;
|
||||||
|
this->last_bridge_byte_ = now;
|
||||||
|
}
|
||||||
|
} else if (now - this->last_bridge_byte_ > 50) {
|
||||||
this->rx_buffer_.clear();
|
this->rx_buffer_.clear();
|
||||||
|
this->bucket_frame_candidate_ = false;
|
||||||
this->last_bridge_byte_ = now;
|
this->last_bridge_byte_ = now;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t avail = this->available();
|
|
||||||
while (avail > 0) {
|
while (avail > 0) {
|
||||||
uint8_t buf[64];
|
uint8_t buf[64];
|
||||||
size_t to_read = std::min(avail, sizeof(buf));
|
size_t to_read = std::min(avail, sizeof(buf));
|
||||||
@@ -146,12 +211,14 @@ void RFBridgeComponent::loop() {
|
|||||||
for (size_t i = 0; i < to_read; i++) {
|
for (size_t i = 0; i < to_read; i++) {
|
||||||
if (this->rx_buffer_.size() > MAX_RX_BUFFER_SIZE) {
|
if (this->rx_buffer_.size() > MAX_RX_BUFFER_SIZE) {
|
||||||
this->rx_buffer_.clear();
|
this->rx_buffer_.clear();
|
||||||
|
this->bucket_frame_candidate_ = false;
|
||||||
}
|
}
|
||||||
if (this->parse_bridge_byte_(buf[i])) {
|
if (this->parse_bridge_byte_(buf[i])) {
|
||||||
ESP_LOGVV(TAG, "Parsed: 0x%02X", buf[i]);
|
ESP_LOGVV(TAG, "Parsed: 0x%02X", buf[i]);
|
||||||
this->last_bridge_byte_ = now;
|
this->last_bridge_byte_ = now;
|
||||||
} else {
|
} else {
|
||||||
this->rx_buffer_.clear();
|
this->rx_buffer_.clear();
|
||||||
|
this->bucket_frame_candidate_ = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,6 +30,17 @@ static const uint8_t RF_CODE_BEEP = 0xC0;
|
|||||||
static const uint8_t RF_CODE_STOP = 0x55;
|
static const uint8_t RF_CODE_STOP = 0x55;
|
||||||
static const uint8_t RF_DEBOUNCE = 200;
|
static const uint8_t RF_DEBOUNCE = 200;
|
||||||
static const size_t MAX_RX_BUFFER_SIZE = 512;
|
static const size_t MAX_RX_BUFFER_SIZE = 512;
|
||||||
|
// ~10 byte times at 19200 baud: long enough to prove the UART went quiet
|
||||||
|
// after a possible bucket-frame terminator, short enough to finish well
|
||||||
|
// before the next radio capture can be delivered.
|
||||||
|
static const uint32_t BUCKET_CANDIDATE_QUIET_MS = 5;
|
||||||
|
// Portisch drains a B1 frame's header, bucket table, and pulse data as
|
||||||
|
// separate UART writes, so an in-progress bucket frame tolerates a longer
|
||||||
|
// inter-region gap than the generic 50 ms inter-byte timeout.
|
||||||
|
static const uint32_t BUCKET_FRAME_TIMEOUT_MS = 250;
|
||||||
|
// Portisch's uart_put_RF_buckets sends at most 7 buckets plus the sync
|
||||||
|
// bucket, so a B1 count byte above 8 (or 0) is malformed for any protocol.
|
||||||
|
static const uint8_t B1_MAX_BUCKET_COUNT = 8;
|
||||||
|
|
||||||
struct RFBridgeData {
|
struct RFBridgeData {
|
||||||
uint16_t sync;
|
uint16_t sync;
|
||||||
@@ -67,10 +78,12 @@ class RFBridgeComponent final : public uart::UARTDevice, public Component {
|
|||||||
void ack_();
|
void ack_();
|
||||||
void decode_();
|
void decode_();
|
||||||
bool parse_bridge_byte_(uint8_t byte);
|
bool parse_bridge_byte_(uint8_t byte);
|
||||||
|
void finish_bucket_frame_();
|
||||||
void write_byte_str_(const std::string &codes);
|
void write_byte_str_(const std::string &codes);
|
||||||
|
|
||||||
std::vector<uint8_t> rx_buffer_;
|
std::vector<uint8_t> rx_buffer_;
|
||||||
uint32_t last_bridge_byte_{0};
|
uint32_t last_bridge_byte_{0};
|
||||||
|
bool bucket_frame_candidate_{false};
|
||||||
|
|
||||||
CallbackManager<void(RFBridgeData)> data_callback_;
|
CallbackManager<void(RFBridgeData)> data_callback_;
|
||||||
CallbackManager<void(RFBridgeAdvancedData)> advanced_data_callback_;
|
CallbackManager<void(RFBridgeAdvancedData)> advanced_data_callback_;
|
||||||
|
|||||||
@@ -1,10 +1,13 @@
|
|||||||
#include "tuya.h"
|
#include "tuya.h"
|
||||||
#include "esphome/components/network/util.h"
|
|
||||||
#include "esphome/core/gpio.h"
|
#include "esphome/core/gpio.h"
|
||||||
#include "esphome/core/helpers.h"
|
#include "esphome/core/helpers.h"
|
||||||
#include "esphome/core/log.h"
|
#include "esphome/core/log.h"
|
||||||
#include "esphome/core/util.h"
|
#include "esphome/core/util.h"
|
||||||
|
|
||||||
|
#ifdef USE_NETWORK
|
||||||
|
#include "esphome/components/network/util.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef USE_WIFI
|
#ifdef USE_WIFI
|
||||||
#include "esphome/components/wifi/wifi_component.h"
|
#include "esphome/components/wifi/wifi_component.h"
|
||||||
#endif
|
#endif
|
||||||
@@ -22,6 +25,14 @@ static const int MAX_RETRIES = 5;
|
|||||||
// Max bytes to log for datapoint values (larger values are truncated)
|
// Max bytes to log for datapoint values (larger values are truncated)
|
||||||
static constexpr size_t MAX_DATAPOINT_LOG_BYTES = 16;
|
static constexpr size_t MAX_DATAPOINT_LOG_BYTES = 16;
|
||||||
|
|
||||||
|
static bool network_is_connected() {
|
||||||
|
#ifdef USE_NETWORK
|
||||||
|
return network::is_connected();
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
void Tuya::setup() {
|
void Tuya::setup() {
|
||||||
this->set_interval("heartbeat", 15000, [this] { this->send_empty_command_(TuyaCommandType::HEARTBEAT); });
|
this->set_interval("heartbeat", 15000, [this] { this->send_empty_command_(TuyaCommandType::HEARTBEAT); });
|
||||||
if (this->status_pin_ != nullptr) {
|
if (this->status_pin_ != nullptr) {
|
||||||
@@ -554,14 +565,14 @@ void Tuya::send_empty_command_(TuyaCommandType command) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Tuya::set_status_pin_() {
|
void Tuya::set_status_pin_() {
|
||||||
bool is_network_ready = network::is_connected() && remote_is_connected();
|
bool is_network_ready = network_is_connected() && remote_is_connected();
|
||||||
this->status_pin_->digital_write(is_network_ready);
|
this->status_pin_->digital_write(is_network_ready);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t Tuya::get_wifi_status_code_() {
|
uint8_t Tuya::get_wifi_status_code_() {
|
||||||
uint8_t status = 0x02;
|
uint8_t status = 0x02;
|
||||||
|
|
||||||
if (network::is_connected()) {
|
if (network_is_connected()) {
|
||||||
status = 0x03;
|
status = 0x03;
|
||||||
|
|
||||||
// Protocol version 3 also supports specifying when connected to "the cloud"
|
// Protocol version 3 also supports specifying when connected to "the cloud"
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
from collections.abc import Callable
|
from typing import Any
|
||||||
from typing import Any, NoReturn
|
|
||||||
|
|
||||||
from esphome import automation
|
from esphome import automation
|
||||||
from esphome.automation import Trigger
|
from esphome.automation import Trigger
|
||||||
@@ -48,17 +47,10 @@ UDP_SCHEMA = cv.Schema(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def is_relocated(option: str) -> Callable[[Any], NoReturn]:
|
|
||||||
def validator(value: Any) -> NoReturn:
|
|
||||||
raise cv.Invalid(
|
|
||||||
f"The '{option}' option should now be configured in the 'packet_transport' component"
|
|
||||||
)
|
|
||||||
|
|
||||||
return validator
|
|
||||||
|
|
||||||
|
|
||||||
RELOCATED = {
|
RELOCATED = {
|
||||||
cv.Optional(x): is_relocated(x)
|
cv.Optional(x): cv.invalid(
|
||||||
|
f"The '{x}' option should now be configured in the 'packet_transport' component"
|
||||||
|
)
|
||||||
for x in (
|
for x in (
|
||||||
CONF_PROVIDERS,
|
CONF_PROVIDERS,
|
||||||
CONF_ENCRYPTION,
|
CONF_ENCRYPTION,
|
||||||
|
|||||||
@@ -66,13 +66,14 @@ from esphome.const import (
|
|||||||
)
|
)
|
||||||
from esphome.core import (
|
from esphome.core import (
|
||||||
CORE,
|
CORE,
|
||||||
|
ID,
|
||||||
CoroPriority,
|
CoroPriority,
|
||||||
EsphomeError,
|
EsphomeError,
|
||||||
HexInt,
|
HexInt,
|
||||||
coroutine_with_priority,
|
coroutine_with_priority,
|
||||||
)
|
)
|
||||||
import esphome.final_validate as fv
|
import esphome.final_validate as fv
|
||||||
from esphome.types import ConfigType
|
from esphome.types import ConfigType, TemplateArgsType
|
||||||
|
|
||||||
from . import wpa2_eap
|
from . import wpa2_eap
|
||||||
|
|
||||||
@@ -208,6 +209,7 @@ WiFiEnabledCondition = wifi_ns.class_("WiFiEnabledCondition", Condition)
|
|||||||
WiFiAPActiveCondition = wifi_ns.class_("WiFiAPActiveCondition", Condition)
|
WiFiAPActiveCondition = wifi_ns.class_("WiFiAPActiveCondition", Condition)
|
||||||
WiFiEnableAction = wifi_ns.class_("WiFiEnableAction", automation.Action)
|
WiFiEnableAction = wifi_ns.class_("WiFiEnableAction", automation.Action)
|
||||||
WiFiDisableAction = wifi_ns.class_("WiFiDisableAction", automation.Action)
|
WiFiDisableAction = wifi_ns.class_("WiFiDisableAction", automation.Action)
|
||||||
|
WiFiRoamAction = wifi_ns.class_("WiFiRoamAction", automation.Action)
|
||||||
WiFiConfigureAction = wifi_ns.class_(
|
WiFiConfigureAction = wifi_ns.class_(
|
||||||
"WiFiConfigureAction", automation.Action, cg.Component
|
"WiFiConfigureAction", automation.Action, cg.Component
|
||||||
)
|
)
|
||||||
@@ -820,6 +822,18 @@ async def wifi_disable_to_code(config, action_id, template_arg, args):
|
|||||||
return cg.new_Pvariable(action_id, template_arg)
|
return cg.new_Pvariable(action_id, template_arg)
|
||||||
|
|
||||||
|
|
||||||
|
@automation.register_action(
|
||||||
|
"wifi.roam", WiFiRoamAction, cv.Schema({}), synchronous=True
|
||||||
|
)
|
||||||
|
async def wifi_roam_to_code(
|
||||||
|
config: ConfigType,
|
||||||
|
action_id: ID,
|
||||||
|
template_arg: cg.TemplateArguments,
|
||||||
|
args: TemplateArgsType,
|
||||||
|
) -> cg.MockObj:
|
||||||
|
return cg.new_Pvariable(action_id, template_arg)
|
||||||
|
|
||||||
|
|
||||||
KEEP_SCAN_RESULTS_KEY = "wifi_keep_scan_results"
|
KEEP_SCAN_RESULTS_KEY = "wifi_keep_scan_results"
|
||||||
RUNTIME_POWER_SAVE_KEY = "wifi_runtime_power_save"
|
RUNTIME_POWER_SAVE_KEY = "wifi_runtime_power_save"
|
||||||
RUNTIME_ROAMING_SUPPRESSION_KEY = "wifi_runtime_roaming_suppression"
|
RUNTIME_ROAMING_SUPPRESSION_KEY = "wifi_runtime_roaming_suppression"
|
||||||
|
|||||||
@@ -31,6 +31,11 @@ template<typename... Ts> class WiFiDisableAction final : public Action<Ts...> {
|
|||||||
void play(const Ts &...x) override { global_wifi_component->disable(); }
|
void play(const Ts &...x) override { global_wifi_component->disable(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
template<typename... Ts> class WiFiRoamAction final : public Action<Ts...> {
|
||||||
|
public:
|
||||||
|
void play(const Ts &...x) override { global_wifi_component->force_roam_check(); }
|
||||||
|
};
|
||||||
|
|
||||||
template<typename... Ts> class WiFiConfigureAction final : public Action<Ts...>, public Component {
|
template<typename... Ts> class WiFiConfigureAction final : public Action<Ts...>, public Component {
|
||||||
public:
|
public:
|
||||||
TEMPLATABLE_VALUE(std::string, ssid)
|
TEMPLATABLE_VALUE(std::string, ssid)
|
||||||
|
|||||||
@@ -846,17 +846,18 @@ void WiFiComponent::loop() {
|
|||||||
this->notify_connect_state_listeners_();
|
this->notify_connect_state_listeners_();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Post-connect roaming: check for better AP
|
// Post-connect roaming: check for better AP. A scan may have been started by an
|
||||||
if (this->post_connect_roaming_) {
|
// explicit force_roam_check() even when post_connect_roaming_ is disabled, so the
|
||||||
if (this->is_roaming_scan_active()) {
|
// scan must always be consumed here to avoid leaving roaming_state_ stuck.
|
||||||
if (this->scan_done_) {
|
if (this->is_roaming_scan_active()) {
|
||||||
this->process_roaming_scan_();
|
if (this->scan_done_) {
|
||||||
}
|
this->process_roaming_scan_();
|
||||||
// else: scan in progress, wait
|
|
||||||
} else if (this->roaming_state_ == RoamingState::IDLE && this->roaming_attempts_ < ROAMING_MAX_ATTEMPTS &&
|
|
||||||
now - this->roaming_last_check_ >= ROAMING_CHECK_INTERVAL && !this->roaming_suppressed_()) {
|
|
||||||
this->check_roaming_(now);
|
|
||||||
}
|
}
|
||||||
|
// else: scan in progress, wait
|
||||||
|
} else if (this->post_connect_roaming_ && this->roaming_state_ == RoamingState::IDLE &&
|
||||||
|
this->roaming_attempts_ < ROAMING_MAX_ATTEMPTS &&
|
||||||
|
now - this->roaming_last_check_ >= ROAMING_CHECK_INTERVAL && !this->roaming_suppressed_()) {
|
||||||
|
this->check_roaming_(now);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -2463,6 +2464,17 @@ void WiFiComponent::notify_scan_results_listeners_() {
|
|||||||
}
|
}
|
||||||
#endif // USE_WIFI_SCAN_RESULTS_LISTENERS
|
#endif // USE_WIFI_SCAN_RESULTS_LISTENERS
|
||||||
|
|
||||||
|
void WiFiComponent::force_roam_check() {
|
||||||
|
if (!this->is_connected() || this->roaming_state_ != RoamingState::IDLE || this->roaming_suppressed_()) {
|
||||||
|
ESP_LOGD(TAG, "Roam check requested, but not able to check now");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Reset the attempt counter so a prior run of failed roams doesn't block this explicit request
|
||||||
|
// Note that this re-arms automatic roaming if enabled.
|
||||||
|
this->roaming_attempts_ = 0;
|
||||||
|
this->check_roaming_(millis());
|
||||||
|
}
|
||||||
|
|
||||||
void WiFiComponent::check_roaming_(uint32_t now) {
|
void WiFiComponent::check_roaming_(uint32_t now) {
|
||||||
// Guard: not for hidden networks (may not appear in scan)
|
// Guard: not for hidden networks (may not appear in scan)
|
||||||
const WiFiAP *selected = this->get_selected_sta_();
|
const WiFiAP *selected = this->get_selected_sta_();
|
||||||
@@ -2484,7 +2496,11 @@ void WiFiComponent::check_roaming_(uint32_t now) {
|
|||||||
|
|
||||||
ESP_LOGD(TAG, "Roam scan (%d dBm, attempt %u/%u)", rssi, this->roaming_attempts_, ROAMING_MAX_ATTEMPTS);
|
ESP_LOGD(TAG, "Roam scan (%d dBm, attempt %u/%u)", rssi, this->roaming_attempts_, ROAMING_MAX_ATTEMPTS);
|
||||||
this->roaming_state_ = RoamingState::SCANNING;
|
this->roaming_state_ = RoamingState::SCANNING;
|
||||||
this->wifi_scan_start_(this->passive_scan_);
|
if (!this->wifi_scan_start_(this->passive_scan_)) {
|
||||||
|
// Scan failed to start (e.g. busy) - don't get stuck in SCANNING forever
|
||||||
|
ESP_LOGD(TAG, "Roam scan failed to start");
|
||||||
|
this->roaming_state_ = RoamingState::IDLE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void WiFiComponent::process_roaming_scan_() {
|
void WiFiComponent::process_roaming_scan_() {
|
||||||
|
|||||||
@@ -565,6 +565,12 @@ class WiFiComponent final : public Component {
|
|||||||
void set_keep_scan_results(bool keep_scan_results) { this->keep_scan_results_ = keep_scan_results; }
|
void set_keep_scan_results(bool keep_scan_results) { this->keep_scan_results_ = keep_scan_results; }
|
||||||
void set_post_connect_roaming(bool enabled) { this->post_connect_roaming_ = enabled; }
|
void set_post_connect_roaming(bool enabled) { this->post_connect_roaming_ = enabled; }
|
||||||
|
|
||||||
|
/** Force an immediate post-connect roaming check, bypassing the periodic interval and the
|
||||||
|
* per-connection attempt limit. Does nothing (besides a debug log) if not connected, if a
|
||||||
|
* roam scan or connect is already in progress, or if roaming is currently suppressed.
|
||||||
|
*/
|
||||||
|
void force_roam_check();
|
||||||
|
|
||||||
#ifdef USE_WIFI_CONNECT_TRIGGER
|
#ifdef USE_WIFI_CONNECT_TRIGGER
|
||||||
Trigger<> *get_connect_trigger() { return &this->connect_trigger_; }
|
Trigger<> *get_connect_trigger() { return &this->connect_trigger_; }
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ from enum import Enum
|
|||||||
|
|
||||||
from esphome.enum import StrEnum
|
from esphome.enum import StrEnum
|
||||||
|
|
||||||
__version__ = "2026.9.0b2"
|
__version__ = "2026.10.0-dev"
|
||||||
|
|
||||||
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
|
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
|
||||||
VALID_SUBSTITUTIONS_CHARACTERS = (
|
VALID_SUBSTITUTIONS_CHARACTERS = (
|
||||||
|
|||||||
@@ -69,10 +69,7 @@ def _make_create_connection() -> Callable[..., socket.socket]:
|
|||||||
|
|
||||||
from aiohappyeyeballs import start_connection
|
from aiohappyeyeballs import start_connection
|
||||||
from urllib3.exceptions import LocationParseError
|
from urllib3.exceptions import LocationParseError
|
||||||
from urllib3.util.connection import ( # noqa: PLC2701
|
from urllib3.util.connection import _set_socket_options, allowed_gai_family # noqa: PLC2701
|
||||||
_set_socket_options,
|
|
||||||
allowed_gai_family,
|
|
||||||
)
|
|
||||||
from urllib3.util.timeout import _DEFAULT_TIMEOUT # noqa: PLC2701
|
from urllib3.util.timeout import _DEFAULT_TIMEOUT # noqa: PLC2701
|
||||||
|
|
||||||
from esphome import async_thread
|
from esphome import async_thread
|
||||||
|
|||||||
@@ -616,11 +616,15 @@ def _make_registry_client() -> Any:
|
|||||||
elsewhere, not by the PlatformIO registry.
|
elsewhere, not by the PlatformIO registry.
|
||||||
"""
|
"""
|
||||||
from platformio.package.manager._registry import PackageManagerRegistryMixin
|
from platformio.package.manager._registry import PackageManagerRegistryMixin
|
||||||
|
from platformio.registry.client import RegistryClient
|
||||||
|
|
||||||
class _Registry(PackageManagerRegistryMixin):
|
class _Registry(PackageManagerRegistryMixin):
|
||||||
def __init__(self) -> None:
|
def __init__(self) -> None:
|
||||||
self._registry_client = None
|
|
||||||
self.pkg_type = "library"
|
self.pkg_type = "library"
|
||||||
|
self._registry_client = RegistryClient()
|
||||||
|
# The probe sleeps ~500 ms per lookup (see runner.patch_registry_private_packages);
|
||||||
|
# instance-level so the ESPHome process never patches PlatformIO's class
|
||||||
|
self._registry_client.allowed_private_packages = lambda: False
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def is_system_compatible(value: Any, custom_system: Any = None) -> bool:
|
def is_system_compatible(value: Any, custom_system: Any = None) -> bool:
|
||||||
|
|||||||
@@ -371,14 +371,27 @@ def _registry_jobs(
|
|||||||
return jobs, failed, installable
|
return jobs, failed, installable
|
||||||
|
|
||||||
|
|
||||||
|
def _is_vcs_spec_uri(url: str) -> bool:
|
||||||
|
"""Whether pio's ``install_from_uri`` would clone this URI rather than
|
||||||
|
copy or download it (PackageSpec normalizes git URLs to ``git+``)."""
|
||||||
|
return not url.startswith(("file://", "symlink://", "http://", "https://"))
|
||||||
|
|
||||||
|
|
||||||
|
def _spec_name(spec: Any, url: str) -> str:
|
||||||
|
"""The spec's name; the URL basename fallback is defensive only
|
||||||
|
(PackageSpec derives a name from the URI itself)."""
|
||||||
|
return spec.name or url.split("#", 1)[0].rsplit("/", 1)[-1]
|
||||||
|
|
||||||
|
|
||||||
def _uri_jobs(
|
def _uri_jobs(
|
||||||
manager: Any, specs: list[Any], seen: set[str]
|
manager: Any, specs: list[Any], seen: set[str]
|
||||||
) -> tuple[list[tuple[str, int, Any]], int, list[tuple[str, Any]]]:
|
) -> tuple[list[tuple[str, int, Any]], int, list[tuple[str, Any]]]:
|
||||||
"""Jobs for direct-URL specs; a HEAD sizes each for the combined bar.
|
"""Jobs for direct-URL specs; a HEAD sizes each for the combined bar.
|
||||||
|
|
||||||
Also returns how many HEAD probes errored (an absent length is not an
|
Also returns how many HEAD probes errored (an absent length is not an
|
||||||
error) and the ``(name, spec)`` pairs whose archives will be
|
error) and the ``(name, spec)`` pairs to pre-install: downloaded
|
||||||
installable.
|
archives, plus VCS specs, which have no archive -- the pre-install
|
||||||
|
itself clones them, in parallel instead of one at a time in pio run.
|
||||||
"""
|
"""
|
||||||
from esphome.net_retry import fetch_with_retry, http_request
|
from esphome.net_retry import fetch_with_retry, http_request
|
||||||
|
|
||||||
@@ -386,13 +399,17 @@ def _uri_jobs(
|
|||||||
installable: list[tuple[str, Any]] = []
|
installable: list[tuple[str, Any]] = []
|
||||||
for spec in specs:
|
for spec in specs:
|
||||||
url = spec.uri
|
url = spec.uri
|
||||||
if not url or not url.startswith(("http://", "https://")):
|
if not url:
|
||||||
continue # git+/file specs are cloned/copied, not downloaded
|
continue
|
||||||
if url.split("#", 1)[0].endswith(".git"):
|
is_vcs = _is_vcs_spec_uri(url)
|
||||||
continue # bare-URL VCS spec; PlatformIO clones it
|
if not is_vcs and not url.startswith(("http://", "https://")):
|
||||||
|
continue # file/symlink specs are copied in place by pio run
|
||||||
if manager.get_package(spec):
|
if manager.get_package(spec):
|
||||||
continue
|
continue
|
||||||
name = spec.name or url.rsplit("/", 1)[-1]
|
name = _spec_name(spec, url)
|
||||||
|
if is_vcs:
|
||||||
|
installable.append((name, spec))
|
||||||
|
continue
|
||||||
# PlatformIO downloads URL specs with no checksum
|
# PlatformIO downloads URL specs with no checksum
|
||||||
dl_path = Path(manager.compute_download_path(url, ""))
|
dl_path = Path(manager.compute_download_path(url, ""))
|
||||||
if dl_path.is_file():
|
if dl_path.is_file():
|
||||||
@@ -406,7 +423,7 @@ def _uri_jobs(
|
|||||||
if str(dl_path) in seen:
|
if str(dl_path) in seen:
|
||||||
continue # another spec already claimed this .part
|
continue # another spec already claimed this .part
|
||||||
seen.add(str(dl_path))
|
seen.add(str(dl_path))
|
||||||
candidates.append((spec.name, url, dl_path, spec))
|
candidates.append((name, url, dl_path, spec))
|
||||||
|
|
||||||
errors: list[str] = []
|
errors: list[str] = []
|
||||||
|
|
||||||
@@ -915,8 +932,14 @@ def _prefetch(build_dir: Path, env: str) -> None:
|
|||||||
if name not in failed_names
|
if name not in failed_names
|
||||||
}
|
}
|
||||||
if to_install:
|
if to_install:
|
||||||
|
# Clones first: they wait on the network, so they must not
|
||||||
|
# queue behind CPU-bound archive extractions
|
||||||
|
ordered = sorted(
|
||||||
|
to_install.values(),
|
||||||
|
key=lambda entry: not ((url := entry[1].uri) and _is_vcs_spec_uri(url)),
|
||||||
|
)
|
||||||
try:
|
try:
|
||||||
_preinstall(mgr, list(to_install.values()))
|
_preinstall(mgr, ordered)
|
||||||
if is_platform:
|
if is_platform:
|
||||||
platform_packages_installed = True
|
platform_packages_installed = True
|
||||||
except Exception as err: # noqa: BLE001 # pylint: disable=broad-exception-caught
|
except Exception as err: # noqa: BLE001 # pylint: disable=broad-exception-caught
|
||||||
@@ -951,8 +974,10 @@ def main(argv: list[str]) -> int:
|
|||||||
"""Subprocess entry point: ``prefetch <build_dir> <env_name>``."""
|
"""Subprocess entry point: ``prefetch <build_dir> <env_name>``."""
|
||||||
from esphome.core import CORE
|
from esphome.core import CORE
|
||||||
from esphome.log import setup_log
|
from esphome.log import setup_log
|
||||||
|
from esphome.platformio.runner import patch_registry_private_packages
|
||||||
|
|
||||||
signal.signal(signal.SIGTERM, _sigterm)
|
signal.signal(signal.SIGTERM, _sigterm)
|
||||||
|
patch_registry_private_packages()
|
||||||
raw_level = os.environ.get("ESPHOME_PREFETCH_LOG_LEVEL")
|
raw_level = os.environ.get("ESPHOME_PREFETCH_LOG_LEVEL")
|
||||||
try:
|
try:
|
||||||
level = int(raw_level) if raw_level is not None else logging.INFO
|
level = int(raw_level) if raw_level is not None else logging.INFO
|
||||||
|
|||||||
@@ -2,7 +2,8 @@
|
|||||||
|
|
||||||
Invoked via ``python -m esphome.platformio.runner`` instead of
|
Invoked via ``python -m esphome.platformio.runner`` instead of
|
||||||
``python -m platformio`` so that the patches (incremental rebuild
|
``python -m platformio`` so that the patches (incremental rebuild
|
||||||
preservation, download retries) apply inside the subprocess. Running
|
preservation, download retries, skipping the private-package probe) apply
|
||||||
|
inside the subprocess. Running
|
||||||
PlatformIO in a subprocess keeps its ``sys.path`` mutations and other
|
PlatformIO in a subprocess keeps its ``sys.path`` mutations and other
|
||||||
global state from leaking into the ESPHome process.
|
global state from leaking into the ESPHome process.
|
||||||
"""
|
"""
|
||||||
@@ -105,6 +106,16 @@ def patch_file_downloader() -> None:
|
|||||||
FileDownloader.__init__ = patched_init
|
FileDownloader.__init__ = patched_init
|
||||||
|
|
||||||
|
|
||||||
|
def patch_registry_private_packages() -> None:
|
||||||
|
"""Skip PlatformIO's private-package probe; it sleeps ~500 ms per lookup.
|
||||||
|
|
||||||
|
ESPHome never uses private packages, so the answer is always False.
|
||||||
|
"""
|
||||||
|
from platformio.registry.client import RegistryClient
|
||||||
|
|
||||||
|
RegistryClient.allowed_private_packages = staticmethod(lambda: False) # type: ignore[method-assign]
|
||||||
|
|
||||||
|
|
||||||
_IGNORE_LIB_WARNINGS = "(?:Hash|Update)"
|
_IGNORE_LIB_WARNINGS = "(?:Hash|Update)"
|
||||||
# Regex patterns matched against each line of PlatformIO output. Lines that
|
# Regex patterns matched against each line of PlatformIO output. Lines that
|
||||||
# match are dropped by RedirectText before they reach the parent process.
|
# match are dropped by RedirectText before they reach the parent process.
|
||||||
@@ -152,6 +163,7 @@ FILTER_PLATFORMIO_LINES = [
|
|||||||
def main() -> int:
|
def main() -> int:
|
||||||
patch_structhash()
|
patch_structhash()
|
||||||
patch_file_downloader()
|
patch_file_downloader()
|
||||||
|
patch_registry_private_packages()
|
||||||
|
|
||||||
# Wrap stdout/stderr with RedirectText before PlatformIO runs:
|
# Wrap stdout/stderr with RedirectText before PlatformIO runs:
|
||||||
#
|
#
|
||||||
|
|||||||
+4
-4
@@ -14,7 +14,7 @@ esptool==5.3.1
|
|||||||
click==8.3.3
|
click==8.3.3
|
||||||
aioesphomeapi==46.3.0
|
aioesphomeapi==46.3.0
|
||||||
aiohappyeyeballs==2.7.1 # Happy Eyeballs for requests downloads; already pulled in by aioesphomeapi
|
aiohappyeyeballs==2.7.1 # Happy Eyeballs for requests downloads; already pulled in by aioesphomeapi
|
||||||
zeroconf==0.151.2
|
zeroconf==0.151.3
|
||||||
puremagic==2.2.0
|
puremagic==2.2.0
|
||||||
ruamel.yaml==0.19.1 # dashboard_import
|
ruamel.yaml==0.19.1 # dashboard_import
|
||||||
ruamel.yaml.clib==0.2.15 # dashboard_import
|
ruamel.yaml.clib==0.2.15 # dashboard_import
|
||||||
@@ -27,9 +27,9 @@ bleak==3.0.2
|
|||||||
smpclient==7.2.0
|
smpclient==7.2.0
|
||||||
requests==2.34.2
|
requests==2.34.2
|
||||||
py7zr==1.1.3
|
py7zr==1.1.3
|
||||||
platformdirs==4.11.5 # native esp-idf toolchain global cache dir
|
platformdirs==4.11.7 # native esp-idf toolchain global cache dir
|
||||||
ninja==1.13.0 # native esp8266 arduino toolchain build driver
|
ninja==1.13.2 # native esp8266 arduino toolchain build driver
|
||||||
filelock==3.32.4 # inter-process locks (PlatformIO cache heal, git clone cache); >=3.32 for FileLock(fallback_to_soft=...), older versions silently drop the kwarg
|
filelock==3.32.5 # inter-process locks (PlatformIO cache heal, git clone cache); >=3.32 for FileLock(fallback_to_soft=...), older versions silently drop the kwarg
|
||||||
|
|
||||||
# esp-idf >= 5.0 requires this
|
# esp-idf >= 5.0 requires this
|
||||||
pyparsing >= 3.3.2
|
pyparsing >= 3.3.2
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Useful stuff when working in a development environment
|
# Useful stuff when working in a development environment
|
||||||
clang-format==13.0.1 # also change in .pre-commit-config.yaml and Dockerfile when updating
|
clang-format==13.0.1 # .pre-commit-config.yaml rev synced by script/sync_dependency_versions.py
|
||||||
clang-tidy==22.1.8
|
clang-tidy==22.1.8
|
||||||
yamllint==1.38.0 # also change in .pre-commit-config.yaml when updating
|
yamllint==1.38.0 # .pre-commit-config.yaml rev synced by script/sync_dependency_versions.py
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
pylint==4.0.8
|
pylint==4.0.8
|
||||||
flake8==7.3.0 # also change in .pre-commit-config.yaml when updating
|
flake8==7.3.0 # .pre-commit-config.yaml rev synced by script/sync_dependency_versions.py
|
||||||
ruff==0.16.5 # also change in .pre-commit-config.yaml when updating
|
ruff==0.16.6 # .pre-commit-config.yaml rev synced by script/sync_dependency_versions.py
|
||||||
pyupgrade==3.21.2 # also change in .pre-commit-config.yaml when updating
|
pyupgrade==3.21.2 # .pre-commit-config.yaml rev synced by script/sync_dependency_versions.py
|
||||||
prek==0.5.0 # also change in .github/workflows/ci.yml when updating
|
prek==0.5.2 # .github/workflows/ci.yml reads this pin
|
||||||
|
yamlrocks==0.6.1 # used by script/sync_dependency_versions.py
|
||||||
|
|
||||||
# Unit tests
|
# Unit tests
|
||||||
pytest==9.1.1
|
pytest==9.1.1
|
||||||
|
|||||||
@@ -14,7 +14,31 @@ top=$(git rev-parse --show-toplevel 2>/dev/null) || exit 0
|
|||||||
[ -x "$top/venv/bin/python" ] && exit 0
|
[ -x "$top/venv/bin/python" ] && exit 0
|
||||||
[ -x "$top/script/setup" ] || exit 0
|
[ -x "$top/script/setup" ] || exit 0
|
||||||
|
|
||||||
|
# Every worktree shares the hooks directory of the checkout it was created
|
||||||
|
# from, and the script/setup run below is the one from whichever branch was just
|
||||||
|
# checked out. Older branches install their own pre-commit hook without checking
|
||||||
|
# for a worktree: that moves the shared hook aside as pre-commit.legacy and
|
||||||
|
# replaces it with one tied to this worktree's virtual environment, so commits
|
||||||
|
# break in every checkout. To rule that out, the hooks directory is copied
|
||||||
|
# before script/setup runs and put back exactly as it was afterwards, including
|
||||||
|
# removing any file script/setup added.
|
||||||
|
hooks=$(git rev-parse --path-format=absolute --git-path hooks 2>/dev/null) || exit 0
|
||||||
|
snap=$(mktemp -d "$hooks/.post-checkout.XXXXXX") || exit 0
|
||||||
|
cp -p "$hooks"/* "$snap"/ 2>/dev/null
|
||||||
|
|
||||||
# Clear VIRTUAL_ENV so a checkout made from a shell with an environment already
|
# Clear VIRTUAL_ENV so a checkout made from a shell with an environment already
|
||||||
# activated still gets its own, rather than having the active one repointed at
|
# activated still gets its own, rather than having the active one repointed at
|
||||||
# this working tree.
|
# this working tree.
|
||||||
exec env -u VIRTUAL_ENV "$top/script/setup"
|
env -u VIRTUAL_ENV "$top/script/setup"
|
||||||
|
status=$?
|
||||||
|
|
||||||
|
for f in "$hooks"/*; do
|
||||||
|
[ -e "$snap/${f##*/}" ] || rm -f "$f"
|
||||||
|
done
|
||||||
|
# Files are moved rather than copied so a hook that is still running, such as
|
||||||
|
# this one, is swapped out atomically instead of being rewritten in place.
|
||||||
|
for f in "$snap"/*; do
|
||||||
|
cmp -s "$f" "$hooks/${f##*/}" 2>/dev/null || mv -f "$f" "$hooks/${f##*/}"
|
||||||
|
done
|
||||||
|
rm -rf "$snap"
|
||||||
|
exit $status
|
||||||
|
|||||||
Executable
+164
@@ -0,0 +1,164 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Keep pre-commit hook revs in sync with the requirements files.
|
||||||
|
|
||||||
|
Dependabot only bumps the ``package==version`` pins in ``requirements*.txt``.
|
||||||
|
Some of those tools are pinned a second time as hook ``rev`` values in
|
||||||
|
``.pre-commit-config.yaml``. This script treats the requirements files as
|
||||||
|
the source of truth and rewrites the revs to match, editing the config
|
||||||
|
through yamlrocks so comments and layout survive.
|
||||||
|
|
||||||
|
Run without arguments to apply the changes in place, or with ``--check`` to
|
||||||
|
only report drift (exit status 1 when anything is out of sync).
|
||||||
|
"""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from pathlib import Path
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
import yamlrocks
|
||||||
|
|
||||||
|
REPO_ROOT = Path(__file__).resolve().parent.parent
|
||||||
|
PRECOMMIT_CONFIG = ".pre-commit-config.yaml"
|
||||||
|
|
||||||
|
|
||||||
|
class SyncError(Exception):
|
||||||
|
"""A pin could not be located in a requirements file or the config."""
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True)
|
||||||
|
class SyncTarget:
|
||||||
|
"""A requirements pin and the pre-commit repo whose rev mirrors it."""
|
||||||
|
|
||||||
|
package: str
|
||||||
|
requirements_file: str
|
||||||
|
repo: str
|
||||||
|
|
||||||
|
|
||||||
|
SYNC_TARGETS: tuple[SyncTarget, ...] = (
|
||||||
|
SyncTarget(
|
||||||
|
"ruff", "requirements_test.txt", "https://github.com/astral-sh/ruff-pre-commit"
|
||||||
|
),
|
||||||
|
SyncTarget("flake8", "requirements_test.txt", "https://github.com/PyCQA/flake8"),
|
||||||
|
SyncTarget(
|
||||||
|
"pyupgrade", "requirements_test.txt", "https://github.com/asottile/pyupgrade"
|
||||||
|
),
|
||||||
|
SyncTarget(
|
||||||
|
"clang-format",
|
||||||
|
"requirements_dev.txt",
|
||||||
|
"https://github.com/pre-commit/mirrors-clang-format",
|
||||||
|
),
|
||||||
|
SyncTarget(
|
||||||
|
"yamllint",
|
||||||
|
"requirements_dev.txt",
|
||||||
|
"https://github.com/adrienverge/yamllint.git",
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def read_requirement_version(requirements: str, package: str) -> str | None:
|
||||||
|
"""Return the ``==`` pin for ``package`` or None when it is not pinned."""
|
||||||
|
pattern = re.compile(
|
||||||
|
rf"^{re.escape(package)}==(?P<version>[^\s#]+)",
|
||||||
|
re.MULTILINE | re.IGNORECASE,
|
||||||
|
)
|
||||||
|
match = pattern.search(requirements)
|
||||||
|
return match.group("version") if match else None
|
||||||
|
|
||||||
|
|
||||||
|
def find_repo_entry(doc: Any, repo: str) -> Any:
|
||||||
|
"""Return the single ``- repo:`` block for ``repo`` in a pre-commit doc."""
|
||||||
|
try:
|
||||||
|
entries = [entry for entry in doc["repos"] if entry["repo"] == repo]
|
||||||
|
except KeyError as err:
|
||||||
|
raise SyncError(f"malformed pre-commit config, missing key {err}") from None
|
||||||
|
if len(entries) != 1:
|
||||||
|
raise SyncError(
|
||||||
|
f"expected exactly one block for repo {repo}, found {len(entries)}"
|
||||||
|
)
|
||||||
|
return entries[0]
|
||||||
|
|
||||||
|
|
||||||
|
def current_rev(entry: Any, repo: str) -> tuple[str, str]:
|
||||||
|
"""Split the block's rev into its tag prefix (``v`` or empty) and version."""
|
||||||
|
if "rev" not in entry:
|
||||||
|
raise SyncError(f"repo {repo} has no rev")
|
||||||
|
rev = entry["rev"]
|
||||||
|
if not isinstance(rev, str):
|
||||||
|
# A rev such as ``1.0`` parses as a number and cannot be compared or
|
||||||
|
# rewritten safely; quote it in the config instead.
|
||||||
|
raise SyncError(f"rev of repo {repo} is not a string: {rev!r}")
|
||||||
|
prefix = "v" if rev.startswith("v") else ""
|
||||||
|
return prefix, rev.removeprefix("v")
|
||||||
|
|
||||||
|
|
||||||
|
def sync(root: Path, *, write: bool) -> list[str]:
|
||||||
|
"""Bring every hook rev in line with its requirements pin.
|
||||||
|
|
||||||
|
Returns one description per rev that was (or, when ``write`` is False,
|
||||||
|
would be) changed. Raises SyncError when a pin cannot be found, which
|
||||||
|
means SYNC_TARGETS has gone stale and needs updating by hand.
|
||||||
|
"""
|
||||||
|
config_path = root / PRECOMMIT_CONFIG
|
||||||
|
doc = yamlrocks.loads(config_path.read_bytes(), option=yamlrocks.OPT_ROUND_TRIP)
|
||||||
|
requirements: dict[str, str] = {}
|
||||||
|
changes: list[str] = []
|
||||||
|
for target in SYNC_TARGETS:
|
||||||
|
if target.requirements_file not in requirements:
|
||||||
|
requirements[target.requirements_file] = (
|
||||||
|
root / target.requirements_file
|
||||||
|
).read_text()
|
||||||
|
version = read_requirement_version(
|
||||||
|
requirements[target.requirements_file], target.package
|
||||||
|
)
|
||||||
|
if version is None:
|
||||||
|
raise SyncError(
|
||||||
|
f"{target.requirements_file}: no '{target.package}==' pin found"
|
||||||
|
)
|
||||||
|
|
||||||
|
entry = find_repo_entry(doc, target.repo)
|
||||||
|
prefix, current = current_rev(entry, target.repo)
|
||||||
|
if current == version:
|
||||||
|
continue
|
||||||
|
changes.append(f"{target.package}: {current} -> {version}")
|
||||||
|
entry["rev"] = f"{prefix}{version}"
|
||||||
|
|
||||||
|
if changes and write:
|
||||||
|
config_path.write_bytes(doc.to_yaml())
|
||||||
|
return changes
|
||||||
|
|
||||||
|
|
||||||
|
def main(argv: list[str] | None = None) -> int:
|
||||||
|
parser = argparse.ArgumentParser(description=__doc__.splitlines()[0])
|
||||||
|
parser.add_argument(
|
||||||
|
"--check",
|
||||||
|
action="store_true",
|
||||||
|
help="report drift without modifying any file; exit 1 if out of sync",
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--root",
|
||||||
|
type=Path,
|
||||||
|
default=REPO_ROOT,
|
||||||
|
help="repository checkout to operate on (default: this checkout)",
|
||||||
|
)
|
||||||
|
args = parser.parse_args(argv)
|
||||||
|
|
||||||
|
try:
|
||||||
|
changes = sync(args.root, write=not args.check)
|
||||||
|
except SyncError as err:
|
||||||
|
print(f"error: {err}", file=sys.stderr)
|
||||||
|
return 1
|
||||||
|
|
||||||
|
for change in changes:
|
||||||
|
print(change)
|
||||||
|
if args.check and changes:
|
||||||
|
return 1
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__": # pragma: no cover
|
||||||
|
sys.exit(main())
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
esphome:
|
||||||
|
name: test-keyboard-no-label
|
||||||
|
|
||||||
|
esp32:
|
||||||
|
board: esp32dev
|
||||||
|
framework:
|
||||||
|
type: esp-idf
|
||||||
|
|
||||||
|
spi:
|
||||||
|
- id: spi_bus
|
||||||
|
clk_pin: GPIO18
|
||||||
|
mosi_pin: GPIO23
|
||||||
|
|
||||||
|
display:
|
||||||
|
- platform: mipi_spi
|
||||||
|
spi_id: spi_bus
|
||||||
|
model: st7789v
|
||||||
|
id: tft_display
|
||||||
|
dimensions:
|
||||||
|
width: 240
|
||||||
|
height: 320
|
||||||
|
cs_pin: GPIO22
|
||||||
|
dc_pin: GPIO21
|
||||||
|
auto_clear_enabled: false
|
||||||
|
invert_colors: false
|
||||||
|
update_interval: never
|
||||||
|
|
||||||
|
lvgl:
|
||||||
|
displays: tft_display
|
||||||
|
widgets:
|
||||||
|
- keyboard:
|
||||||
|
id: keyboard_widget
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
esphome:
|
||||||
|
name: test-qrcode-no-label
|
||||||
|
|
||||||
|
esp32:
|
||||||
|
board: esp32dev
|
||||||
|
framework:
|
||||||
|
type: esp-idf
|
||||||
|
|
||||||
|
spi:
|
||||||
|
- id: spi_bus
|
||||||
|
clk_pin: GPIO18
|
||||||
|
mosi_pin: GPIO23
|
||||||
|
|
||||||
|
display:
|
||||||
|
- platform: mipi_spi
|
||||||
|
spi_id: spi_bus
|
||||||
|
model: st7789v
|
||||||
|
id: tft_display
|
||||||
|
dimensions:
|
||||||
|
width: 240
|
||||||
|
height: 320
|
||||||
|
cs_pin: GPIO22
|
||||||
|
dc_pin: GPIO21
|
||||||
|
auto_clear_enabled: false
|
||||||
|
invert_colors: false
|
||||||
|
update_interval: never
|
||||||
|
|
||||||
|
lvgl:
|
||||||
|
displays: tft_display
|
||||||
|
widgets:
|
||||||
|
- qrcode:
|
||||||
|
id: qr_widget
|
||||||
|
size: 100
|
||||||
|
text: "esphome.io"
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
esphome:
|
||||||
|
name: test-tabview-no-label
|
||||||
|
|
||||||
|
esp32:
|
||||||
|
board: esp32dev
|
||||||
|
framework:
|
||||||
|
type: esp-idf
|
||||||
|
|
||||||
|
spi:
|
||||||
|
- id: spi_bus
|
||||||
|
clk_pin: GPIO18
|
||||||
|
mosi_pin: GPIO23
|
||||||
|
|
||||||
|
display:
|
||||||
|
- platform: mipi_spi
|
||||||
|
spi_id: spi_bus
|
||||||
|
model: st7789v
|
||||||
|
id: tft_display
|
||||||
|
dimensions:
|
||||||
|
width: 240
|
||||||
|
height: 320
|
||||||
|
cs_pin: GPIO22
|
||||||
|
dc_pin: GPIO21
|
||||||
|
auto_clear_enabled: false
|
||||||
|
invert_colors: false
|
||||||
|
update_interval: never
|
||||||
|
|
||||||
|
lvgl:
|
||||||
|
displays: tft_display
|
||||||
|
widgets:
|
||||||
|
- tabview:
|
||||||
|
id: tabview_widget
|
||||||
|
tabs:
|
||||||
|
- name: "Tab 1"
|
||||||
|
id: tab_1
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
"""Widgets whose LVGL C implementation creates or references labels
|
||||||
|
internally (tab titles, key legends, the QR canvas fallback) must declare
|
||||||
|
the label dependency in ``get_uses()``. Otherwise a config that contains
|
||||||
|
no ``label`` widget of its own compiles LVGL without ``LV_USE_LABEL`` and
|
||||||
|
fails at C compile time with undefined ``lv_label_*`` symbols.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from collections.abc import Callable
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from esphome.components.lvgl import defines as df
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
"yaml_file",
|
||||||
|
[
|
||||||
|
"qrcode_no_label.yaml",
|
||||||
|
"keyboard_no_label.yaml",
|
||||||
|
"tabview_no_label.yaml",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
def test_label_less_config_enables_lv_use_label(
|
||||||
|
generate_main: Callable[[str | Path], str],
|
||||||
|
component_config_path: Callable[[str], Path],
|
||||||
|
yaml_file: str,
|
||||||
|
) -> None:
|
||||||
|
generate_main(component_config_path(yaml_file))
|
||||||
|
assert "LV_USE_LABEL" in df.get_defines()
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
from tests.testing_helpers import ComponentManifestOverride
|
||||||
|
|
||||||
|
|
||||||
|
def override_manifest(manifest: ComponentManifestOverride) -> None:
|
||||||
|
manifest.dependencies = manifest.dependencies + ["sensor", "spi"]
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
#include <gtest/gtest.h>
|
||||||
|
|
||||||
|
#include "esphome/components/atm90e32/atm90e32.h"
|
||||||
|
|
||||||
|
namespace esphome::atm90e32::testing {
|
||||||
|
|
||||||
|
TEST(ATM90E32OffsetRegisterVerification, AcceptsExactSignedReadback) {
|
||||||
|
EXPECT_TRUE(offset_register_value_matches(0x007B, 123));
|
||||||
|
EXPECT_TRUE(offset_register_value_matches(0xFF85, -123));
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(ATM90E32OffsetRegisterVerification, RejectsMismatchedReadback) {
|
||||||
|
EXPECT_FALSE(offset_register_value_matches(0x007C, 123));
|
||||||
|
EXPECT_FALSE(offset_register_value_matches(0xFF84, -123));
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(ATM90E32OffsetRestoreState, ReportsVerifiedStoredValuesAsRestored) {
|
||||||
|
const auto state = resolve_offset_restore_state(true, true, false);
|
||||||
|
|
||||||
|
EXPECT_TRUE(state.restored);
|
||||||
|
EXPECT_TRUE(state.values_verified);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(ATM90E32OffsetRestoreState, ReportsVerifiedConfigFallbackAsNotRestored) {
|
||||||
|
const auto state = resolve_offset_restore_state(true, false, true);
|
||||||
|
|
||||||
|
EXPECT_FALSE(state.restored);
|
||||||
|
EXPECT_TRUE(state.values_verified);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(ATM90E32OffsetRestoreState, ReportsFailedConfigFallbackAsUnverified) {
|
||||||
|
const auto state = resolve_offset_restore_state(true, false, false);
|
||||||
|
|
||||||
|
EXPECT_FALSE(state.restored);
|
||||||
|
EXPECT_FALSE(state.values_verified);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(ATM90E32OffsetRestoreState, ReportsConfigWithoutStoredValuesAsNotRestored) {
|
||||||
|
const auto state = resolve_offset_restore_state(false, true, false);
|
||||||
|
|
||||||
|
EXPECT_FALSE(state.restored);
|
||||||
|
EXPECT_TRUE(state.values_verified);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(ATM90E32OffsetPersistence, RollsBackStoredValuesOrZeroSentinel) {
|
||||||
|
const OffsetCalibration previous[3]{{1, -1}, {2, -2}, {3, -3}};
|
||||||
|
OffsetCalibration rollback[3]{};
|
||||||
|
|
||||||
|
prepare_offset_rollback(previous, true, rollback);
|
||||||
|
for (uint8_t phase = 0; phase < 3; phase++) {
|
||||||
|
EXPECT_EQ(rollback[phase].first_offset, previous[phase].first_offset);
|
||||||
|
EXPECT_EQ(rollback[phase].second_offset, previous[phase].second_offset);
|
||||||
|
}
|
||||||
|
|
||||||
|
prepare_offset_rollback(previous, false, rollback);
|
||||||
|
for (const auto &phase : rollback) {
|
||||||
|
EXPECT_EQ(phase.first_offset, 0);
|
||||||
|
EXPECT_EQ(phase.second_offset, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace esphome::atm90e32::testing
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
# Tuya without any network component (no wifi/ethernet/api), as used on
|
||||||
|
# serial-only or BLE-only Tuya MCU boards. Regression test for
|
||||||
|
# https://github.com/esphome/esphome/issues/18942
|
||||||
|
substitutions:
|
||||||
|
status_pin: P6
|
||||||
|
|
||||||
|
packages:
|
||||||
|
uart: !include ../../test_build_components/common/uart/bk72xx-ard.yaml
|
||||||
|
|
||||||
|
tuya:
|
||||||
|
status_pin: ${status_pin}
|
||||||
|
|
||||||
|
binary_sensor:
|
||||||
|
- platform: tuya
|
||||||
|
id: tuya_presence
|
||||||
|
sensor_datapoint: 101
|
||||||
|
|
||||||
|
sensor:
|
||||||
|
- platform: tuya
|
||||||
|
id: tuya_light_intensity
|
||||||
|
sensor_datapoint: 103
|
||||||
|
|
||||||
|
number:
|
||||||
|
- platform: tuya
|
||||||
|
id: tuya_far_detection
|
||||||
|
number_datapoint: 109
|
||||||
|
min_value: 0
|
||||||
|
max_value: 600
|
||||||
|
step: 1
|
||||||
@@ -14,6 +14,7 @@ esphome:
|
|||||||
condition: wifi.ap_active
|
condition: wifi.ap_active
|
||||||
then:
|
then:
|
||||||
- logger.log: "WiFi AP is active!"
|
- logger.log: "WiFi AP is active!"
|
||||||
|
- wifi.roam
|
||||||
|
|
||||||
wifi:
|
wifi:
|
||||||
networks:
|
networks:
|
||||||
|
|||||||
@@ -0,0 +1,219 @@
|
|||||||
|
"""Unit tests for script/sync_dependency_versions.py."""
|
||||||
|
|
||||||
|
from pathlib import Path
|
||||||
|
import subprocess
|
||||||
|
import sys
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
import yamlrocks
|
||||||
|
|
||||||
|
sys.path.insert(0, str((Path(__file__).parent / ".." / ".." / "script").resolve()))
|
||||||
|
|
||||||
|
import sync_dependency_versions as sync_mod # noqa: E402
|
||||||
|
|
||||||
|
PRECOMMIT = """\
|
||||||
|
# See https://pre-commit.com for more information
|
||||||
|
repos:
|
||||||
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||||
|
# Ruff version.
|
||||||
|
rev: v0.1.0
|
||||||
|
hooks:
|
||||||
|
- id: ruff
|
||||||
|
- repo: https://github.com/PyCQA/flake8
|
||||||
|
rev: 7.0.0
|
||||||
|
hooks:
|
||||||
|
- id: flake8
|
||||||
|
- repo: https://github.com/asottile/pyupgrade
|
||||||
|
rev: v3.0.0
|
||||||
|
hooks:
|
||||||
|
- id: pyupgrade
|
||||||
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
||||||
|
rev: v13.0.1
|
||||||
|
hooks:
|
||||||
|
- id: clang-format
|
||||||
|
- repo: https://github.com/adrienverge/yamllint.git
|
||||||
|
rev: v1.0.0
|
||||||
|
hooks:
|
||||||
|
- id: yamllint
|
||||||
|
- repo: local
|
||||||
|
hooks:
|
||||||
|
- id: pylint
|
||||||
|
"""
|
||||||
|
|
||||||
|
REQ_TEST = """\
|
||||||
|
pylint==4.0.8
|
||||||
|
flake8==7.1.0
|
||||||
|
ruff==0.2.0 # comment
|
||||||
|
pyupgrade==3.0.0
|
||||||
|
"""
|
||||||
|
|
||||||
|
REQ_DEV = """\
|
||||||
|
clang-format==13.0.1
|
||||||
|
yamllint==1.0.0
|
||||||
|
"""
|
||||||
|
|
||||||
|
RUFF_REPO = "https://github.com/astral-sh/ruff-pre-commit"
|
||||||
|
DUPLICATE_RUFF_BLOCK = f" - repo: {RUFF_REPO}\n rev: v0.3.0\n hooks: []\n"
|
||||||
|
|
||||||
|
EXPECTED_DRIFT = ["ruff: 0.1.0 -> 0.2.0", "flake8: 7.0.0 -> 7.1.0"]
|
||||||
|
EXPECTED_PRECOMMIT = PRECOMMIT.replace("rev: v0.1.0", "rev: v0.2.0").replace(
|
||||||
|
"rev: 7.0.0", "rev: 7.1.0"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def root(tmp_path: Path) -> Path:
|
||||||
|
"""A fake checkout where ruff (v-prefixed) and flake8 (bare) have drifted."""
|
||||||
|
(tmp_path / ".pre-commit-config.yaml").write_text(PRECOMMIT)
|
||||||
|
(tmp_path / "requirements_test.txt").write_text(REQ_TEST)
|
||||||
|
(tmp_path / "requirements_dev.txt").write_text(REQ_DEV)
|
||||||
|
return tmp_path
|
||||||
|
|
||||||
|
|
||||||
|
def _load(text: str) -> object:
|
||||||
|
return yamlrocks.loads(text.encode(), option=yamlrocks.OPT_ROUND_TRIP)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
("requirements", "expected"),
|
||||||
|
[
|
||||||
|
("prek==0.5.1 # comment\n", "0.5.1"),
|
||||||
|
("Prek==0.5.1\n", "0.5.1"),
|
||||||
|
("other==1.0\nprek==0.5.1\n", "0.5.1"),
|
||||||
|
("prek>=0.5.1\n", None),
|
||||||
|
("prek-extra==0.5.1\n", None),
|
||||||
|
("", None),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
def test_read_requirement_version(requirements: str, expected: str | None) -> None:
|
||||||
|
assert sync_mod.read_requirement_version(requirements, "prek") == expected
|
||||||
|
|
||||||
|
|
||||||
|
def test_find_repo_entry() -> None:
|
||||||
|
entry = sync_mod.find_repo_entry(_load(PRECOMMIT), RUFF_REPO)
|
||||||
|
assert entry["rev"] == "v0.1.0"
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
("text", "message"),
|
||||||
|
[
|
||||||
|
("hooks: []\n", "missing key 'repos'"),
|
||||||
|
("repos:\n - rev: 1.0.0\n", "missing key 'repo'"),
|
||||||
|
(PRECOMMIT + DUPLICATE_RUFF_BLOCK, "found 2"),
|
||||||
|
("repos:\n - repo: other\n rev: 1.0.0\n", "found 0"),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
def test_find_repo_entry_errors(text: str, message: str) -> None:
|
||||||
|
with pytest.raises(sync_mod.SyncError, match=message):
|
||||||
|
sync_mod.find_repo_entry(_load(text), RUFF_REPO)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
("rev", "expected"),
|
||||||
|
[("v0.1.0", ("v", "0.1.0")), ("7.0.0", ("", "7.0.0")), ("'1.0'", ("", "1.0"))],
|
||||||
|
)
|
||||||
|
def test_current_rev(rev: str, expected: tuple[str, str]) -> None:
|
||||||
|
doc = _load(f"repos:\n - repo: {RUFF_REPO}\n rev: {rev}\n")
|
||||||
|
assert sync_mod.current_rev(doc["repos"][0], RUFF_REPO) == expected
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
("block", "message"),
|
||||||
|
[(" hooks: []\n", "has no rev"), (" rev: 1.0\n", "not a string: 1.0")],
|
||||||
|
)
|
||||||
|
def test_current_rev_errors(block: str, message: str) -> None:
|
||||||
|
doc = _load(f"repos:\n - repo: {RUFF_REPO}\n{block}")
|
||||||
|
with pytest.raises(sync_mod.SyncError, match=message):
|
||||||
|
sync_mod.current_rev(doc["repos"][0], RUFF_REPO)
|
||||||
|
|
||||||
|
|
||||||
|
def test_sync_reports_without_writing(root: Path) -> None:
|
||||||
|
assert sync_mod.sync(root, write=False) == EXPECTED_DRIFT
|
||||||
|
assert (root / ".pre-commit-config.yaml").read_text() == PRECOMMIT
|
||||||
|
|
||||||
|
|
||||||
|
def test_sync_writes_keeps_layout_and_is_idempotent(root: Path) -> None:
|
||||||
|
assert sync_mod.sync(root, write=True) == EXPECTED_DRIFT
|
||||||
|
assert (root / ".pre-commit-config.yaml").read_text() == EXPECTED_PRECOMMIT
|
||||||
|
assert sync_mod.sync(root, write=True) == []
|
||||||
|
|
||||||
|
|
||||||
|
def test_sync_does_not_touch_a_config_that_matches(root: Path) -> None:
|
||||||
|
(root / ".pre-commit-config.yaml").write_text(EXPECTED_PRECOMMIT)
|
||||||
|
before = (root / ".pre-commit-config.yaml").stat().st_mtime_ns
|
||||||
|
assert sync_mod.sync(root, write=True) == []
|
||||||
|
assert (root / ".pre-commit-config.yaml").stat().st_mtime_ns == before
|
||||||
|
|
||||||
|
|
||||||
|
def test_sync_missing_requirement_pin(root: Path) -> None:
|
||||||
|
(root / "requirements_dev.txt").write_text("")
|
||||||
|
with pytest.raises(sync_mod.SyncError, match="no 'clang-format==' pin"):
|
||||||
|
sync_mod.sync(root, write=True)
|
||||||
|
|
||||||
|
|
||||||
|
def test_sync_propagates_config_errors(root: Path) -> None:
|
||||||
|
(root / ".pre-commit-config.yaml").write_text(PRECOMMIT + DUPLICATE_RUFF_BLOCK)
|
||||||
|
with pytest.raises(sync_mod.SyncError, match="found 2"):
|
||||||
|
sync_mod.sync(root, write=True)
|
||||||
|
|
||||||
|
|
||||||
|
def test_main_check_reports_drift(
|
||||||
|
root: Path, capsys: pytest.CaptureFixture[str]
|
||||||
|
) -> None:
|
||||||
|
assert sync_mod.main(["--check", "--root", str(root)]) == 1
|
||||||
|
assert capsys.readouterr().out.splitlines() == EXPECTED_DRIFT
|
||||||
|
assert (root / ".pre-commit-config.yaml").read_text() == PRECOMMIT
|
||||||
|
|
||||||
|
|
||||||
|
def test_main_writes_then_check_is_clean(
|
||||||
|
root: Path, capsys: pytest.CaptureFixture[str]
|
||||||
|
) -> None:
|
||||||
|
assert sync_mod.main(["--root", str(root)]) == 0
|
||||||
|
assert capsys.readouterr().out.splitlines() == EXPECTED_DRIFT
|
||||||
|
assert sync_mod.main(["--check", "--root", str(root)]) == 0
|
||||||
|
assert capsys.readouterr().out == ""
|
||||||
|
|
||||||
|
|
||||||
|
def test_main_reports_sync_error(
|
||||||
|
root: Path, capsys: pytest.CaptureFixture[str]
|
||||||
|
) -> None:
|
||||||
|
(root / "requirements_dev.txt").write_text("")
|
||||||
|
assert sync_mod.main(["--root", str(root)]) == 1
|
||||||
|
assert (
|
||||||
|
"error: requirements_dev.txt: no 'clang-format==' pin"
|
||||||
|
in capsys.readouterr().err
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def test_main_defaults_to_repo_root(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||||
|
seen: dict[str, object] = {}
|
||||||
|
|
||||||
|
def fake_sync(root: Path, *, write: bool) -> list[str]:
|
||||||
|
seen["root"] = root
|
||||||
|
seen["write"] = write
|
||||||
|
return []
|
||||||
|
|
||||||
|
monkeypatch.setattr(sync_mod, "sync", fake_sync)
|
||||||
|
assert sync_mod.main([]) == 0
|
||||||
|
assert seen == {"root": sync_mod.REPO_ROOT, "write": True}
|
||||||
|
|
||||||
|
|
||||||
|
def test_repository_is_in_sync() -> None:
|
||||||
|
"""The real checkout must match; a failure here means a rev has drifted.
|
||||||
|
|
||||||
|
Also proves every SYNC_TARGETS entry still resolves in the real files.
|
||||||
|
"""
|
||||||
|
assert sync_mod.sync(sync_mod.REPO_ROOT, write=False) == []
|
||||||
|
|
||||||
|
|
||||||
|
def test_cli_entry_point(root: Path) -> None:
|
||||||
|
"""Run the script the way the workflow does, as a subprocess."""
|
||||||
|
script = Path(sync_mod.__file__)
|
||||||
|
result = subprocess.run(
|
||||||
|
[sys.executable, str(script), "--check", "--root", str(root)],
|
||||||
|
capture_output=True,
|
||||||
|
text=True,
|
||||||
|
check=False,
|
||||||
|
)
|
||||||
|
assert result.returncode == 1
|
||||||
|
assert result.stdout.splitlines() == EXPECTED_DRIFT
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
"""Tests for the udp component configuration schema."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from esphome.components import udp
|
||||||
|
from esphome.components.packet_transport import (
|
||||||
|
CONF_BINARY_SENSORS,
|
||||||
|
CONF_ENCRYPTION,
|
||||||
|
CONF_PING_PONG_ENABLE,
|
||||||
|
CONF_PROVIDERS,
|
||||||
|
CONF_ROLLING_CODE_ENABLE,
|
||||||
|
CONF_SENSORS,
|
||||||
|
)
|
||||||
|
import esphome.config_validation as cv
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
"option",
|
||||||
|
[
|
||||||
|
CONF_PROVIDERS,
|
||||||
|
CONF_ENCRYPTION,
|
||||||
|
CONF_PING_PONG_ENABLE,
|
||||||
|
CONF_ROLLING_CODE_ENABLE,
|
||||||
|
CONF_SENSORS,
|
||||||
|
CONF_BINARY_SENSORS,
|
||||||
|
],
|
||||||
|
)
|
||||||
|
def test_relocated_option_rejected(option: str) -> None:
|
||||||
|
"""Options that moved to packet_transport raise a pointing error."""
|
||||||
|
with pytest.raises(cv.Invalid) as exc_info:
|
||||||
|
udp.CONFIG_SCHEMA({option: True})
|
||||||
|
assert (
|
||||||
|
f"The '{option}' option should now be configured in the 'packet_transport' component"
|
||||||
|
in str(exc_info.value)
|
||||||
|
)
|
||||||
@@ -7,6 +7,7 @@ exercised in their own test modules)."""
|
|||||||
import json
|
import json
|
||||||
import logging
|
import logging
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
from unittest.mock import Mock
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
@@ -228,6 +229,24 @@ def test_resolve_registry_version_raises_without_pkg_file(monkeypatch):
|
|||||||
_resolve_registry_version("owner", "pkg", set())
|
_resolve_registry_version("owner", "pkg", set())
|
||||||
|
|
||||||
|
|
||||||
|
def test_make_registry_client_skips_private_package_probe(monkeypatch):
|
||||||
|
"""Our client answers the probe locally without patching PlatformIO's class."""
|
||||||
|
from platformio.account.client import AccountClient
|
||||||
|
from platformio.registry.client import RegistryClient
|
||||||
|
|
||||||
|
pio_probe = RegistryClient.__dict__["allowed_private_packages"]
|
||||||
|
monkeypatch.setattr(
|
||||||
|
AccountClient,
|
||||||
|
"get_account_info",
|
||||||
|
Mock(side_effect=AssertionError("account probe must not run")),
|
||||||
|
)
|
||||||
|
|
||||||
|
client = lib._make_registry_client().get_registry_client_instance()
|
||||||
|
|
||||||
|
assert client.allowed_private_packages() is False
|
||||||
|
assert RegistryClient.__dict__["allowed_private_packages"] is pio_probe
|
||||||
|
|
||||||
|
|
||||||
def _patch_registry_resolve(monkeypatch: pytest.MonkeyPatch) -> None:
|
def _patch_registry_resolve(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||||
"""Stub the registry lookup so tests never touch the network."""
|
"""Stub the registry lookup so tests never touch the network."""
|
||||||
monkeypatch.setattr(
|
monkeypatch.setattr(
|
||||||
|
|||||||
@@ -661,7 +661,8 @@ def test_registry_jobs_one_bad_spec_keeps_the_rest(tmp_path: Path) -> None:
|
|||||||
|
|
||||||
|
|
||||||
def test_uri_jobs_head_sizes_the_bar(tmp_path: Path) -> None:
|
def test_uri_jobs_head_sizes_the_bar(tmp_path: Path) -> None:
|
||||||
"""HEAD sizes direct-URL specs; git and unreachable URLs are skipped."""
|
"""HEAD sizes direct-URL specs; VCS specs skip the download but are
|
||||||
|
still installable (the pre-install clones them in parallel)."""
|
||||||
m = _fake_manager(tmp_path)
|
m = _fake_manager(tmp_path)
|
||||||
resp = MagicMock()
|
resp = MagicMock()
|
||||||
resp.headers = {"content-length": "2222"}
|
resp.headers = {"content-length": "2222"}
|
||||||
@@ -671,14 +672,13 @@ def test_uri_jobs_head_sizes_the_bar(tmp_path: Path) -> None:
|
|||||||
[
|
[
|
||||||
_FakeSpec(uri="https://x/big.zip", name="big", custom_name=True),
|
_FakeSpec(uri="https://x/big.zip", name="big", custom_name=True),
|
||||||
_FakeSpec(uri="git+https://x/repo.git", name="repo"),
|
_FakeSpec(uri="git+https://x/repo.git", name="repo"),
|
||||||
_FakeSpec(uri="https://x/repo.git#v1", name="barevcs"),
|
|
||||||
_FakeSpec(name="registry"),
|
_FakeSpec(name="registry"),
|
||||||
],
|
],
|
||||||
set(),
|
set(),
|
||||||
)
|
)
|
||||||
assert failed == 0
|
assert failed == 0
|
||||||
assert [(n, s) for n, s, _ in jobs] == [("big", 2222)]
|
assert [(n, s) for n, s, _ in jobs] == [("big", 2222)]
|
||||||
assert [n for n, _ in installable] == ["big"]
|
assert [n for n, _ in installable] == ["repo", "big"]
|
||||||
# a successful HEAD with no Content-Length is a clean skip
|
# a successful HEAD with no Content-Length is a clean skip
|
||||||
resp.headers = {}
|
resp.headers = {}
|
||||||
with patch("esphome.net_retry.http_request", return_value=resp):
|
with patch("esphome.net_retry.http_request", return_value=resp):
|
||||||
@@ -687,6 +687,35 @@ def test_uri_jobs_head_sizes_the_bar(tmp_path: Path) -> None:
|
|||||||
) == ([], 0, [])
|
) == ([], 0, [])
|
||||||
|
|
||||||
|
|
||||||
|
def test_uri_jobs_vcs_specs_installable_without_probe(tmp_path: Path) -> None:
|
||||||
|
"""VCS specs never probe the network here (there is no archive); an
|
||||||
|
uninstalled one is handed to the pre-install, an installed one and
|
||||||
|
file/symlink specs are skipped."""
|
||||||
|
m = _fake_manager(tmp_path)
|
||||||
|
with patch("esphome.net_retry.http_request") as mock_head:
|
||||||
|
jobs, failed, installable = pf._uri_jobs(
|
||||||
|
m,
|
||||||
|
[
|
||||||
|
_FakeSpec(uri="git+https://x/tool.git#1.0", name="tool"),
|
||||||
|
_FakeSpec(uri="hg+https://x/old", name="mercurial"),
|
||||||
|
# Name falls back to the URL basename, fragment excluded
|
||||||
|
_FakeSpec(uri="git+https://x/noname#v2", name=None),
|
||||||
|
_FakeSpec(uri="file:///local/dir", name="local"),
|
||||||
|
_FakeSpec(uri="symlink:///local/dir", name="link"),
|
||||||
|
],
|
||||||
|
set(),
|
||||||
|
)
|
||||||
|
mock_head.assert_not_called()
|
||||||
|
assert (jobs, failed) == ([], 0)
|
||||||
|
assert [n for n, _ in installable] == ["tool", "mercurial", "noname"]
|
||||||
|
|
||||||
|
m.get_package.return_value = object() # already installed: warm and silent
|
||||||
|
with patch("esphome.net_retry.http_request"):
|
||||||
|
assert pf._uri_jobs(
|
||||||
|
m, [_FakeSpec(uri="git+https://x/tool.git#1.0", name="tool")], set()
|
||||||
|
) == ([], 0, [])
|
||||||
|
|
||||||
|
|
||||||
def test_uri_jobs_head_failure_counts_as_unresolved(
|
def test_uri_jobs_head_failure_counts_as_unresolved(
|
||||||
tmp_path: Path, caplog: pytest.LogCaptureFixture
|
tmp_path: Path, caplog: pytest.LogCaptureFixture
|
||||||
) -> None:
|
) -> None:
|
||||||
@@ -1225,6 +1254,20 @@ def test_main_runs_prefetch(tmp_path: Path) -> None:
|
|||||||
mock_prefetch.assert_called_once_with(tmp_path, "testenv")
|
mock_prefetch.assert_called_once_with(tmp_path, "testenv")
|
||||||
|
|
||||||
|
|
||||||
|
def test_main_skips_private_package_probe_before_prefetch(tmp_path: Path) -> None:
|
||||||
|
"""The registry probe patch is applied before any package manager runs."""
|
||||||
|
order: list[str] = []
|
||||||
|
with (
|
||||||
|
patch.object(pf, "_prefetch", side_effect=lambda *_: order.append("prefetch")),
|
||||||
|
patch(
|
||||||
|
"esphome.platformio.runner.patch_registry_private_packages",
|
||||||
|
side_effect=lambda: order.append("patch"),
|
||||||
|
),
|
||||||
|
):
|
||||||
|
assert pf.main([str(tmp_path), "testenv"]) == 0
|
||||||
|
assert order == ["patch", "prefetch"]
|
||||||
|
|
||||||
|
|
||||||
def test_main_bad_argv_is_a_distinct_exit(
|
def test_main_bad_argv_is_a_distinct_exit(
|
||||||
caplog: pytest.LogCaptureFixture,
|
caplog: pytest.LogCaptureFixture,
|
||||||
) -> None:
|
) -> None:
|
||||||
@@ -1876,3 +1919,9 @@ def test_platformio_private_api_contract() -> None:
|
|||||||
derived = PackageSpec("https://x/y/archive/master.zip")
|
derived = PackageSpec("https://x/y/archive/master.zip")
|
||||||
assert derived.name and not derived.has_custom_name()
|
assert derived.name and not derived.has_custom_name()
|
||||||
assert PackageSpec("Foo=https://x/y/archive/master.zip").has_custom_name()
|
assert PackageSpec("Foo=https://x/y/archive/master.zip").has_custom_name()
|
||||||
|
# _is_vcs_spec_uri relies on bare .git URLs normalizing to git+, on
|
||||||
|
# both parse paths (raw string, and requirements= for platform tools)
|
||||||
|
assert PackageSpec("https://github.com/x/y.git#v1").uri.startswith("git+")
|
||||||
|
assert PackageSpec(
|
||||||
|
owner="o", name="tool-x", requirements="https://github.com/x/y.git"
|
||||||
|
).uri.startswith("git+")
|
||||||
|
|||||||
@@ -6,7 +6,9 @@ from collections.abc import Callable
|
|||||||
import io
|
import io
|
||||||
import sys
|
import sys
|
||||||
from types import ModuleType
|
from types import ModuleType
|
||||||
|
from unittest.mock import Mock
|
||||||
|
|
||||||
|
from platformio.registry.client import RegistryClient
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from esphome.platformio import runner
|
from esphome.platformio import runner
|
||||||
@@ -30,6 +32,7 @@ def _prepare_main(
|
|||||||
monkeypatch.setattr(sys, "stderr", stream)
|
monkeypatch.setattr(sys, "stderr", stream)
|
||||||
monkeypatch.setattr(runner, "patch_structhash", lambda: None)
|
monkeypatch.setattr(runner, "patch_structhash", lambda: None)
|
||||||
monkeypatch.setattr(runner, "patch_file_downloader", lambda: None)
|
monkeypatch.setattr(runner, "patch_file_downloader", lambda: None)
|
||||||
|
monkeypatch.setattr(runner, "patch_registry_private_packages", lambda: None)
|
||||||
|
|
||||||
platformio = ModuleType("platformio")
|
platformio = ModuleType("platformio")
|
||||||
platformio_main = ModuleType("platformio.__main__")
|
platformio_main = ModuleType("platformio.__main__")
|
||||||
@@ -91,3 +94,40 @@ def test_main_still_filters_a_drained_partial_line(
|
|||||||
|
|
||||||
assert runner.main() == 0
|
assert runner.main() == 0
|
||||||
assert buf.getvalue() == b""
|
assert buf.getvalue() == b""
|
||||||
|
|
||||||
|
|
||||||
|
def test_main_applies_registry_private_packages_patch(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
"""The probe is patched before PlatformIO runs."""
|
||||||
|
order: list[str] = []
|
||||||
|
_prepare_main(monkeypatch, lambda: order.append("pio") or 0)
|
||||||
|
monkeypatch.setattr(
|
||||||
|
runner, "patch_registry_private_packages", lambda: order.append("patch")
|
||||||
|
)
|
||||||
|
|
||||||
|
assert runner.main() == 0
|
||||||
|
assert order == ["patch", "pio"]
|
||||||
|
|
||||||
|
|
||||||
|
# Snapshot PlatformIO's own probe at import, before any test can patch it
|
||||||
|
_PIO_PROBE = RegistryClient.__dict__["allowed_private_packages"]
|
||||||
|
|
||||||
|
|
||||||
|
def test_patch_registry_private_packages_skips_account_probe(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
"""Answers False without touching the account client."""
|
||||||
|
from platformio.account.client import AccountClient
|
||||||
|
|
||||||
|
monkeypatch.setattr(RegistryClient, "allowed_private_packages", _PIO_PROBE)
|
||||||
|
monkeypatch.setattr(
|
||||||
|
AccountClient,
|
||||||
|
"get_account_info",
|
||||||
|
Mock(side_effect=AssertionError("account probe must not run")),
|
||||||
|
)
|
||||||
|
|
||||||
|
runner.patch_registry_private_packages()
|
||||||
|
|
||||||
|
assert RegistryClient.allowed_private_packages() is False
|
||||||
|
assert RegistryClient().allowed_private_packages() is False
|
||||||
|
|||||||
Reference in New Issue
Block a user