diff --git a/pylabrobot/io/serial.py b/pylabrobot/io/serial.py index beb21b552da..b2706182cf3 100644 --- a/pylabrobot/io/serial.py +++ b/pylabrobot/io/serial.py @@ -202,6 +202,7 @@ def __init__( stopbits: int = 1, # serial.STOPBITS_ONE, write_timeout=1, timeout=1, + rtscts: bool = False, ): super().__init__( port=port, @@ -211,6 +212,7 @@ def __init__( stopbits=stopbits, write_timeout=write_timeout, timeout=timeout, + rtscts=rtscts, ) self.cr = cr