HA version: 2026.6.1 Integration: govee_ble Hardware: 8× Govee H5074 temperature/humidity sensors, 3× ESPHome Everything Presence Lite acting as Bluetooth proxies, HA running on Mac Mini (not HAOS)
Symptom
Since upgrading to 2026.6, all 8 H5074 sensors have dropped from updating approximately every 60 seconds to sporadic updates every 5–15 minutes, with long gaps of no data at all.
The pattern is clearly tied to the upgrade — sensor history shows dense continuous data up until the moment of upgrade, then sparse isolated data points afterwards. Upgrading to 2026.6.1 reduced the gaps slightly but did not resolve the issue.
Root cause (as I understand it)
2026.6 changed Bluetooth proxy scanning to Auto (passive) by default, only switching to active scanning when an integration specifically requests it.
The Govee H5074 requires active scanning to report reliably. In passive mode the proxy just listens and only occasionally triggers the active poll the H5074 needs, producing the sporadic update pattern I'm seeing.
I can see in the 2026.6 changelog that #172051 added logic to trigger an active scan when Govee devices are picked in the config flow, and #173116 was intended to fix advertisement processing for active scans. However the issue persists on 2026.6.1.
What I've tried
- Checked the Bluetooth adapter settings UI — the EPL proxies show no gear/cogwheel icon in Settings → Devices & Services → Bluetooth. There is no option to change scanner mode for ESPHome proxies through the UI in 2026.6.
- Added
active: trueto EPL YAML:
yaml
esp32_ble_tracker:
scan_parameters:
active: true
HA 2026.6 remotely overrides this and forces passive mode on ESPHome proxies regardless of local YAML config.
- Deleted and re-added the Govee Bluetooth integration — this triggers the active scan in the config flow per
#172051, which partially helps short-term, but the effect doesn't persist reliably.
Related thread
There's an older thread here covering a similar issue on 2025.5.1 with H5075 sensors: Latest update broke Govee H5075 sensors. The fix described there was unchecking a passive mode checkbox on the Bluetooth adapter — that option doesn't exist for ESPHome proxies in 2026.6, which is what makes this harder to work around. Both H5074 and H5075 appear to have the same active scanning requirement.
What I'd expect
Either:
- ESPHome proxies should respect local YAML
active: trueand not have it overridden remotely by HA, or - The Govee integration should maintain a persistent active scan request for devices known to require it (H5074, H5075), not just trigger it once at setup time
Tagging @bdraco as the author of #172051 and #173116 — you likely have the most context here. Is this a known remaining issue post-2026.6.1, or is there a workaround I've missed?
Happy to provide logs, diagnostics, or test any proposed fix.
