mirror of
https://github.com/thecode/ha-rpi_gpio.git
synced 2025-07-29 05:36:41 +00:00
Skip failed entities instead of stop loading all of them (#356)
change async_setup_platform to just skip entities with HW issues instead of throwing and skipping the rest of the entities.
This commit is contained in:
parent
003993a3e5
commit
89eb52ee56
@ -52,6 +52,7 @@ async def async_setup_platform(
|
|||||||
|
|
||||||
sensors = []
|
sensors = []
|
||||||
for sensor in config.get(CONF_SENSORS):
|
for sensor in config.get(CONF_SENSORS):
|
||||||
|
try:
|
||||||
sensors.append(
|
sensors.append(
|
||||||
GPIODBinarySensor(
|
GPIODBinarySensor(
|
||||||
hub,
|
hub,
|
||||||
@ -63,6 +64,8 @@ async def async_setup_platform(
|
|||||||
sensor.get(CONF_BOUNCETIME)
|
sensor.get(CONF_BOUNCETIME)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
except Exception as e:
|
||||||
|
_LOGGER.error(f"Failed to add binary sensor {sensor[CONF_NAME]} for port {sensor[CONF_PORT]}: {e}")
|
||||||
|
|
||||||
async_add_entities(sensors)
|
async_add_entities(sensors)
|
||||||
|
|
||||||
|
@ -71,6 +71,7 @@ async def async_setup_platform(
|
|||||||
invert_relay = config[CONF_INVERT_RELAY]
|
invert_relay = config[CONF_INVERT_RELAY]
|
||||||
covers = []
|
covers = []
|
||||||
for cover in config.get(CONF_COVERS):
|
for cover in config.get(CONF_COVERS):
|
||||||
|
try:
|
||||||
covers.append(
|
covers.append(
|
||||||
GPIODCover(
|
GPIODCover(
|
||||||
hub,
|
hub,
|
||||||
@ -86,6 +87,8 @@ async def async_setup_platform(
|
|||||||
cover.get(CONF_UNIQUE_ID) or f"{DOMAIN}_{cover.get(CONF_RELAY_PIN)}_{cover[CONF_NAME].lower().replace(' ', '_')}",
|
cover.get(CONF_UNIQUE_ID) or f"{DOMAIN}_{cover.get(CONF_RELAY_PIN)}_{cover[CONF_NAME].lower().replace(' ', '_')}",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
except Exception as e:
|
||||||
|
_LOGGER.error(f"Failed to add cover {cover[CONF_NAME]} for port {cover.get(CONF_RELAY_PIN)}:{cover.get(CONF_STATE_PIN)}: {e}")
|
||||||
|
|
||||||
async_add_entities(covers)
|
async_add_entities(covers)
|
||||||
|
|
||||||
|
@ -56,6 +56,7 @@ async def async_setup_platform(
|
|||||||
|
|
||||||
switches = []
|
switches = []
|
||||||
for switch in config.get(CONF_SWITCHES):
|
for switch in config.get(CONF_SWITCHES):
|
||||||
|
try:
|
||||||
switches.append(
|
switches.append(
|
||||||
GPIODSwitch(
|
GPIODSwitch(
|
||||||
hub,
|
hub,
|
||||||
@ -68,6 +69,8 @@ async def async_setup_platform(
|
|||||||
switch[CONF_PERSISTENT]
|
switch[CONF_PERSISTENT]
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
except Exception as e:
|
||||||
|
_LOGGER.error(f"Failed to add switch {switch[CONF_NAME]} for port {switch[CONF_PORT]}: {e}")
|
||||||
|
|
||||||
async_add_entities(switches)
|
async_add_entities(switches)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user