File size: 361 Bytes
b98ffbb |
1 2 3 4 5 6 7 8 9 10 11 |
from robomaster import robot, blaster, led
import robomaster
CONN="sta"
robomaster.config.LOCAL_IP_STR = ""
robomaster.config.ROBOT_IP_STR = "192.168.2.1"
ep_robot = robot.Robot()
print("Initializing robot...")
assert ep_robot.initialize(conn_type=CONN), "Could not initialize ep_robot"
event = ep_robot.chassis.move(x=0, y=0, z=-90.0, xy_speed=0, z_speed=50)
|