diff --git a/kvmd/apps/kvmd/ugpio.py b/kvmd/apps/kvmd/ugpio.py index c8b4ddd9..b444a48e 100644 --- a/kvmd/apps/kvmd/ugpio.py +++ b/kvmd/apps/kvmd/ugpio.py @@ -284,11 +284,11 @@ class UserGpio: raise GpioChannelNotFoundError() return (await gout.switch(state)) - async def pulse(self, channel: str, delay: float) -> None: + async def pulse(self, channel: str, delay: float, wait: bool) -> None: gout = self.__outputs.get(channel) if gout is None: raise GpioChannelNotFoundError() - await gout.pulse(delay) + await gout.pulse(delay, wait) # =====