Send a low-level command to the robot.
(self, cmd: LowCmdGo | LowCmdHG)
| 113 | self.remote_controller.set(self.low_state.wireless_remote) |
| 114 | |
| 115 | def send_cmd(self, cmd: LowCmdGo | LowCmdHG): |
| 116 | """Send a low-level command to the robot.""" |
| 117 | cmd.crc = CRC().Crc(cmd) |
| 118 | self.lowcmd_publisher_.Write(cmd) |
| 119 | |
| 120 | def wait_for_low_state(self): |
| 121 | """Block until at least one low state message arrives.""" |
no outgoing calls
no test coverage detected