Skip to content

Commit c9cb576

Browse files
committed
Increase LED response timeout
1 parent cbce0bc commit c9cb576

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zigpy_znp/zigbee/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ async def _set_led_mode(self, *, led: t.uint8_t, mode: c.util.LEDMode) -> None:
10901090

10911091
# XXX: If Z-Stack is not compiled with HAL_LED, it will just not respond at all
10921092
try:
1093-
async with async_timeout.timeout(0.3):
1093+
async with async_timeout.timeout(0.5):
10941094
await self._znp.request(
10951095
c.UTIL.LEDControl.Req(LED=led, Mode=mode),
10961096
RspStatus=t.Status.SUCCESS,

0 commit comments

Comments
 (0)