diff --git a/framework/core/hdmicecModules/remoteCECClient.py b/framework/core/hdmicecModules/remoteCECClient.py index 399ebce..358ea48 100644 --- a/framework/core/hdmicecModules/remoteCECClient.py +++ b/framework/core/hdmicecModules/remoteCECClient.py @@ -80,7 +80,7 @@ def sendMessage(self, sourceAddress: str, destAddress: str, opCode: str, payload def listDevices(self) -> list: self._console.write(f'scan') - output = self._stream.readUntil('currently active source',30) + output = self._stream.readUntil('currently active source',90) devices = [] if len(output) > 0: output = '\n'.join(output) @@ -128,4 +128,4 @@ def formatMessage(self, sourceAddress, destAddress, opCode, payload = None): if payload: payload_string = ':'.join(map(lambda x: x[2:], payload)) message_string += ':' + payload_string - return message_string.lower() \ No newline at end of file + return message_string.lower()