Set dashboard UI rendering/refresh rate. Args: fps: Frames per second for UI updates (typically 30-60) Note: This is NOT the data processing rate. Serial Studio can process data at much higher rates.
(self, fps: int)
| 325 | return self.command("project.getStatus") |
| 326 | |
| 327 | def set_dashboard_fps(self, fps: int) -> None: |
| 328 | """ |
| 329 | Set dashboard UI rendering/refresh rate. |
| 330 | |
| 331 | Args: |
| 332 | fps: Frames per second for UI updates (typically 30-60) |
| 333 | Note: This is NOT the data processing rate. |
| 334 | Serial Studio can process data at much higher rates. |
| 335 | """ |
| 336 | self.command("dashboard.setFps", {"fps": fps}) |
| 337 | |
| 338 | def set_dashboard_time_range(self, seconds: float) -> None: |
| 339 | """ |