J. Nick Koston

Results 1884 comments of J. Nick Koston

H2 has bluetooth AFAICT , https://www.espressif.com/sites/default/files/documentation/esp32-h2-mini-1_mini-1u_datasheet_en.pdf

Right it has Bluetooth but no wifi

So if the board doesn't have wifi we need to not use the wifi remote. I got it to compile. I have no idea if its using the S3 bluetooth...

https://github.com/espressif/esp-hosted-mcu/blob/83942285149d14e9f1c605b68cc9d0a3f919a39b/examples/host_bluedroid_ble_compatibility_test/main/ble_compatibility_test.c#L648

```diff diff --git a/esphome/components/esp32_hosted/__init__.py b/esphome/components/esp32_hosted/__init__.py index 3a3b26d31..d3a49536c 100644 --- a/esphome/components/esp32_hosted/__init__.py +++ b/esphome/components/esp32_hosted/__init__.py @@ -22,6 +22,11 @@ CONF_D2_PIN = "d2_pin" CONF_D3_PIN = "d3_pin" CONF_SLOT = "slot" +VARIANTS_WITHOUT_WIFI = { + esp32.VARIANT_ESP32H2,...

https://github.com/espressif/esp-hosted/issues/608

I wonder if there is a dual S3 board I can buy

https://github.com/espressif/esp-hosted-mcu/issues/57

Looks like its a race where the session is closed before the coordinator does its next poll

`hass.is_stopping` could be checked. The coordinator already avoids rescheduling if its `True` ``` homeassistant/helpers/update_coordinator.py: if self._shutdown_requested or scheduled and self.hass.is_stopping: homeassistant/helpers/update_coordinator.py: if not auth_failed and self._listeners and not self.hass.is_stopping: ```