MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / set_dashboard_fps

Method set_dashboard_fps

tests/utils/api_client.py:327–336  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 """

Calls 1

commandMethod · 0.95