Prefix on prints

This commit is contained in:
2022-06-05 16:00:19 +02:00
parent 5405db9e7e
commit 35dde0d9bc
3 changed files with 8 additions and 3 deletions

View File

@@ -36,6 +36,8 @@ class ExtronSerial(SerialDevice):
baudrate = 9600
super().__init__(serial_port, baudrate, verbose)
self.prefix = "Extron "
def send_command(self, command: str) -> str:
response = super().send_command(command)