From bab6fdcf4e94c24055e19aa51867726ebd486385 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 18 Jul 2025 10:50:40 -1000 Subject: [PATCH] nrf52 --- esphome/components/gpio/binary_sensor/__init__.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/esphome/components/gpio/binary_sensor/__init__.py b/esphome/components/gpio/binary_sensor/__init__.py index 164a3ef4f1..59f54520fa 100644 --- a/esphome/components/gpio/binary_sensor/__init__.py +++ b/esphome/components/gpio/binary_sensor/__init__.py @@ -35,14 +35,14 @@ CONFIG_SCHEMA = ( # capabilities before changing this default behavior. cv.SplitDefault( CONF_USE_INTERRUPT, - esp8266=True, - esp32=True, - rp2040=True, - nrf52=True, bk72xx=False, - ln882x=False, - rtl87xx=False, + esp32=True, + esp8266=True, host=True, + ln882x=False, + nrf52=True, + rp2040=True, + rtl87xx=False, ): cv.boolean, cv.Optional(CONF_INTERRUPT_TYPE, default="ANY"): cv.enum( INTERRUPT_TYPES, upper=True