fix(config): add display_data to RemoteRobotConfig

This commit is contained in:
Steven Palma 2025-04-01 11:13:05 +02:00
parent 8b9326156f
commit cfd6db287e
No known key found for this signature in database
1 changed files with 2 additions and 0 deletions

View File

@ -116,6 +116,8 @@ class ReplayControlConfig(ControlConfig):
@dataclass
class RemoteRobotConfig(ControlConfig):
log_interval: int = 100
# Display all cameras on screen
display_data: bool = False
@dataclass