@@ -191,16 +191,16 @@ def get_battery_info(self):
191191 """
192192 return self ._mesg (ProtocolCode .GET_BATTERY_INFO .value , has_reply = True )
193193
194- def move_control (self , direction_1 , direction_2 , direction_3 ):
195- """Control the car to rotate forward, backward, left, right and forward/counterclockwise
194+ # def move_control(self, direction_1, direction_2, direction_3):
195+ # """Control the car to rotate forward, backward, left, right and forward/counterclockwise
196196
197- Args:
198- direction_1 (int): Control forward or backward: 0 ~ 127 is backward, 129 ~ 255 is forward, 128 is stop.
199- direction_2 (int): control left and right movement: 0 ~ 127 is right, 129 ~ 255 is left, 128 is stop.
200- direction_3 (int): control rotation: 0 ~ 127 is clockwise, 129 ~ 255 is counterclockwise, 128 is stop.
201- """
202- calibration_parameters (class_name = self .__class__ .__name__ , direction_1 = direction_1 , direction_2 = direction_2 ,direction_3 = direction_3 )
203- return self ._mesg (direction_1 , direction_2 , direction_3 )
197+ # Args:
198+ # direction_1 (int): Control forward or backward: 0 ~ 127 is backward, 129 ~ 255 is forward, 128 is stop.
199+ # direction_2 (int): control left and right movement: 0 ~ 127 is right, 129 ~ 255 is left, 128 is stop.
200+ # direction_3 (int): control rotation: 0 ~ 127 is clockwise, 129 ~ 255 is counterclockwise, 128 is stop.
201+ # """
202+ # calibration_parameters(class_name = self.__class__.__name__, direction_1=direction_1, direction_2=direction_2,direction_3=direction_3)
203+ # return self._mesg(direction_1, direction_2, direction_3)
204204
205205 def go_ahead (self , go_speed , timeout = 5 ):
206206 """Control the car to move forward. Send control commands every 100ms. with a default motion time of 5 seconds.
0 commit comments