Process a line of serial output. Args: line: The line to process Returns: True to continue monitoring, False to stop immediately
(self, line: str)
| 46 | """ |
| 47 | |
| 48 | def handle_line(self, line: str) -> bool: |
| 49 | """Process a line of serial output. |
| 50 | |
| 51 | Args: |
| 52 | line: The line to process |
| 53 | |
| 54 | Returns: |
| 55 | True to continue monitoring, False to stop immediately |
| 56 | """ |
| 57 | raise NotImplementedError |
| 58 | |
| 59 | def is_successful(self) -> bool: |
| 60 | """Check if this handler's criteria for success are met. |