Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix AHT20 Sensor Null Reporting And ESPIDF Build Error #25

Merged
merged 6 commits into from
Feb 20, 2025
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
2 changes: 1 addition & 1 deletion Integrations/ESPHome/Battery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ switch:
name: "Accessory Power"
id: accessory_power
restore_mode: ALWAYS_ON
setup_priority: 1100
setup_priority: 5000
entity_category: CONFIG
number:

Expand Down
4 changes: 2 additions & 2 deletions Integrations/ESPHome/Core.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
substitutions:
version: "24.12.21.1"
version: "25.2.19.1"

esp32:
board: esp32-c3-devkitm-1
Expand Down Expand Up @@ -234,6 +234,7 @@ sensor:
filters:
- lambda: return x - id(aht_humidity_offset).state;
update_interval: 60s
setup_priority: -100 # LATE

- platform: adc
pin: GPIO4
Expand Down Expand Up @@ -282,7 +283,6 @@ light:
id: rgb_light
name: "RGB Light"
pin: GPIO3
rmt_channel: 0
default_transition_length: 0s
chipset: WS2812
num_leds: 1
Expand Down
Loading