1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-05 11:23:47 +01:00

Merge pull request #10664 from esphome/bump-2025.8.4

2025.8.4
This commit is contained in:
Jesse Hills
2025-09-10 17:03:37 +12:00
committed by GitHub
7 changed files with 43 additions and 3 deletions

View File

@@ -48,7 +48,7 @@ PROJECT_NAME = ESPHome
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = 2025.8.3 PROJECT_NUMBER = 2025.8.4
# 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

View File

@@ -33,7 +33,7 @@ void KMeterISOComponent::setup() {
} }
uint8_t read_buf[4] = {1}; uint8_t read_buf[4] = {1};
if (!this->read_register(KMETER_ERROR_STATUS_REG, read_buf, 1)) { if (!this->read_bytes(KMETER_ERROR_STATUS_REG, read_buf, 1)) {
ESP_LOGCONFIG(TAG, "Could not read from the device."); ESP_LOGCONFIG(TAG, "Could not read from the device.");
this->error_code_ = COMMUNICATION_FAILED; this->error_code_ = COMMUNICATION_FAILED;
this->mark_failed(); this->mark_failed();

View File

@@ -12,6 +12,7 @@
#include "light_transformer.h" #include "light_transformer.h"
#include <vector> #include <vector>
#include <strings.h>
namespace esphome { namespace esphome {
namespace light { namespace light {

View File

@@ -38,6 +38,7 @@ void SEN5XComponent::setup() {
this->mark_failed(); this->mark_failed();
return; return;
} }
delay(20); // per datasheet
uint16_t raw_read_status; uint16_t raw_read_status;
if (!this->read_data(raw_read_status)) { if (!this->read_data(raw_read_status)) {

View File

@@ -4,7 +4,7 @@ from enum import Enum
from esphome.enum import StrEnum from esphome.enum import StrEnum
__version__ = "2025.8.3" __version__ = "2025.8.4"
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_" ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
VALID_SUBSTITUTIONS_CHARACTERS = ( VALID_SUBSTITUTIONS_CHARACTERS = (

View File

@@ -0,0 +1,19 @@
esphome:
on_boot:
then:
- light.toggle: test_binary_light
output:
- platform: gpio
id: test_binary
pin: 0
light:
- platform: binary
id: test_binary_light
name: Binary Light
output: test_binary
effects:
- strobe:
on_state:
- logger.log: Binary light state changed

View File

@@ -0,0 +1,19 @@
esphome:
on_boot:
then:
- light.toggle: test_binary_light
output:
- platform: gpio
id: test_binary
pin: 0
light:
- platform: binary
id: test_binary_light
name: Binary Light
output: test_binary
effects:
- strobe:
on_state:
- logger.log: Binary light state changed