Health check. Returns: Response dict with timestamp, uptimeMs, frameCounter
(self)
| 438 | return [str(d["name"]) for d in raw if d.get("enabled")] |
| 439 | |
| 440 | def ping(self) -> dict[str, Any]: |
| 441 | """Health check. |
| 442 | |
| 443 | Returns: |
| 444 | Response dict with timestamp, uptimeMs, frameCounter |
| 445 | """ |
| 446 | return self.send_rpc("ping") |
| 447 | |
| 448 | def reset(self) -> dict[str, Any]: |
| 449 | """Reset device state. |