Adding sample SO100 configuration for testing
This commit is contained in:
parent
ec8943db37
commit
9c667d347c
|
@ -486,6 +486,7 @@ class So100RobotConfig(ManipulatorRobotConfig):
|
|||
fps=30,
|
||||
width=640,
|
||||
height=480,
|
||||
microphone="laptop",
|
||||
),
|
||||
"phone": OpenCVCameraConfig(
|
||||
camera_index=1,
|
||||
|
@ -496,6 +497,21 @@ class So100RobotConfig(ManipulatorRobotConfig):
|
|||
}
|
||||
)
|
||||
|
||||
microphones: dict[str, MicrophoneConfig] = field(
|
||||
default_factory=lambda: {
|
||||
"laptop": MicrophoneConfig(
|
||||
microphone_index=0,
|
||||
sample_rate=48000,
|
||||
channels=[1],
|
||||
),
|
||||
"headset": MicrophoneConfig(
|
||||
microphone_index=1,
|
||||
sample_rate=44100,
|
||||
channels=[1],
|
||||
),
|
||||
}
|
||||
)
|
||||
|
||||
mock: bool = False
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue