Reset device state. Returns: Response dict with success status
(self)
| 446 | return self.send_rpc("ping") |
| 447 | |
| 448 | def reset(self) -> dict[str, Any]: |
| 449 | """Reset device state. |
| 450 | |
| 451 | Returns: |
| 452 | Response dict with success status |
| 453 | """ |
| 454 | return self.send_rpc("reset") |
| 455 | |
| 456 | def close(self): |
| 457 | """Close serial connection.""" |
no test coverage detected