General helpers:
map(value, in_min, in_max, out_min, out_max) -> float
out_max
, the function returns out_max
. If the output value is less than out_min
, the function returns out_min
.value
: The input value to be interpolated.in_min
: The lower bound of the input range.in_max
: The upper bound of the input range.out_min
: The lower bound of the output range.out_max
: The upper bound of the output range.output
: The interpolated output value.Gamepad Class:
Gamepad()
Gamepad.get()
If the gamepad disconnects or 300ms have passed without an last_update it raises a ConnectionError
Dictionary of possible buttons on the gamepad
Example
{'button_1': False,
'button_2': False,
'button_3': False,
'button_4': False,
'l1': False,
'r1': False,
'l2': False,
'r2': False,
'select': False,
'start': False,
'lx': -0.00392156862745098,
'ly': 0.00392156862745098,
'rx': 0.00392156862745098,
'ry': -0.00392156862745098}
Robot Class:
Robot(ip: str)
Robot.estop()
Robot.start()
Robot.set_led(red: int, green: int, blue: int, blink: int = 0)
Robot.set_motor_power(index: int, power: int)
Robot.disable_motor(index: int)
Robot.set_servo(index: int, width: int)
Robot.get() -> Dict
Dictionary of sensor readings or None if no signal from robot is received
Example:
{"motor_position": [0,0, 100, -100],
"battery_voltage": 9.43,
"motor_position_done": [1, 1, 0, 1]}
motor_position_done
it returns true if and only if the set_motor_power_distance
is done. If the motor is in a different mode it return trueNew library also includes the following commands:
Robot.set_motor_speed(index: int, speed: int)