Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
- name: Checkout source code
uses: actions/checkout@v4.1.7
- name: Build ESPHome firmware to verify configuration
uses: esphome/build-action@v3.1.0
uses: esphome/build-action@v6
with:
yaml_file: ${{ matrix.file }}
yaml-file: ${{ matrix.file }}
13 changes: 12 additions & 1 deletion Integrations/ESPHome/Core.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
substitutions:
version: "25.2.19.1"
version: "25.3.9.1"

esp32:
board: esp32-c3-devkitm-1
Expand Down Expand Up @@ -219,6 +219,17 @@ sensor:
device_class: temperature
id: soil_temperature
icon: mdi:thermometer
filters:
- lambda: |-
if (isnan(x)) {
return NAN;
}

if (x == 85.0) {
return NAN;
}

return x;

- platform: aht10
id: aht_20
Expand Down