pyicub.controllers.position

Module: position.py

This module provides classes and functionalities to manage the position control of iCub robot parts using YARP. It includes definitions for robot parts, joint configurations, and controllers to move and control the joints of the robot.

Classes

ICUB_PARTS()

Enumeration of iCub robot parts.

JointPose(target_joints[, joints_list])

Represents a target pose for robot joints.

PositionController(robot_name, part, logger)

Controls joint movement of a robot part.

RemoteControlboard(robot_name, part)

Interface for controlling an iCub robot part remotely using YARP.

iCubPart(name, robot_part, joints_nr, ...)

Represents an individual iCub robot part with its joint configuration.

class pyicub.controllers.position.ICUB_PARTS

Enumeration of iCub robot parts.

HEAD = 'head'
FACE = 'face'
TORSO = 'torso'
LEFT_ARM = 'left_arm'
RIGHT_ARM = 'right_arm'
LEFT_LEG = 'left_leg'
RIGHT_LEG = 'right_leg'
class pyicub.controllers.position.iCubPart(name, robot_part, joints_nr, joints_list, joints_speed)

Represents an individual iCub robot part with its joint configuration.

name

Name of the robot part.

Type:

str

robot_part

Corresponding robot section (head, torso, etc.).

Type:

str

joints_nr

Number of joints in the part.

Type:

int

joints_list

List of joint indices.

Type:

list[int]

joints_speed

List of speeds for each joint.

Type:

list[int]

toJSON()

Converts the iCub part object to a JSON string.

Returns:

str – JSON representation of the object.

class pyicub.controllers.position.JointPose(target_joints, joints_list=None)

Represents a target pose for robot joints.

target_joints

Desired joint positions.

Type:

list[float]

joints_list

Specific joints to be controlled.

Type:

list[int] or None

toJSON()

Converts the JointPose object to a dictionary.

Returns:

dict – Dictionary representation of the object.

class pyicub.controllers.position.RemoteControlboard(robot_name, part)

Interface for controlling an iCub robot part remotely using YARP.

getDriver()

Returns the YARP driver instance.

class pyicub.controllers.position.PositionController(robot_name, part, logger)

Controls joint movement of a robot part.

WAITMOTIONDONE_PERIOD = 0.02
MOTION_COMPLETE_AT = 0.9
isValid()
init()

Initializes the control interfaces.

property PolyDriver

Returns: yarp.PolyDriver: PolyDriver instance controlling the robot part.

getIPositionControl()
getIEncoders()
getIControlLimits()
isMoving()
stop(joints_list=None)

Stops the movement of specified joints by setting their reference speed to zero.

Parameters

joints_listlist of int, optional

List of joint indices to stop. If None, all joints will be stopped. Default is None.

Returns

float

Always returns 0.0.

move(pose: JointPose, req_time: float = 0.0, timeout: float = 30.0, joints_speed: list = [10.0], waitMotionDone: bool = True, tag: str = 'default')

Moves the robot to the specified joint positions. Parameters ———- pose : JointPose

The target joint positions and the list of joints to move.

req_timefloat, optional

The requested time to complete the motion (default is 0.0).

timeoutfloat, optional

The maximum time to wait for the motion to complete (default is DEFAULT_TIMEOUT).

joints_speedlist, optional

The speed for each joint (default is an empty list, which sets all speeds to 10.0).

waitMotionDonebool, optional

Whether to wait for the motion to complete before returning (default is True).

tagstr, optional

A tag for logging purposes (default is ‘default’).

Returns

bool

True if the motion completed successfully, False if it timed out.

Notes

This method sets the position control mode for the specified joints, initiates the motion, and optionally waits for the motion to complete. It logs the start and end of the motion, including whether it completed successfully or timed out.

setPositionControlMode(joints_list)
setCustomWaitMotionDone(motion_complete_at=0.9)
unsetCustomWaitMotionDone()
waitMotionDone(motion_time: float = 30.0, timeout: float = 30.0)
waitMotionDone2(req_time: float = 30.0, timeout: float = 30.0)
waitMotionDone3(req_time: float = 30.0, timeout: float = 30.0)
waitMotionDone4(req_time: float = 30.0, timeout: float = 30.0)