pyicub.controllers package

Submodules

pyicub.controllers.gaze module

Module: gaze.py

This module provides a GazeController class to manage the gaze control of a robot using YARP. It includes functionalities to control gaze direction, block and clear eye and neck movements, and set parameters for gaze control.

class pyicub.controllers.gaze.GazeControllerPolyDriver(robot)

Bases: object

Manages the YARP PolyDriver for the gaze controller.

__pid__

Process ID (unique identifier).

Type:

str

__props__

Properties for the YARP PolyDriver.

Type:

yarp.Property

__driver__

The YARP PolyDriver instance.

Type:

yarp.PolyDriver

property properties

Returns the properties of the YARP PolyDriver.

Returns:

yarp.Property – The properties of the YARP PolyDriver.

getDriver()

Returns the YARP PolyDriver instance.

Returns:

yarp.PolyDriver – The YARP PolyDriver instance.

class pyicub.controllers.gaze.GazeController(robot, logger)

Bases: object

Manages the gaze control of a robot using YARP.

__logger__

Logger instance for logging information.

Type:

Logger

__driver__

Instance of GazeControllerPolyDriver to manage the YARP PolyDriver.

Type:

GazeControllerPolyDriver

__mot_id__

Motion ID counter.

Type:

int

__IGazeControl__

Interface for gaze control.

Type:

IGazeControl

isValid()

Checks if the PolyDriver is valid.

Returns:

bool – True if the PolyDriver is valid, False otherwise.

init()

Initializes the gaze control interface and stops any ongoing control.

property PolyDriver

Returns: yarp.PolyDriver: The YARP PolyDriver instance.

property IGazeControl

Returns: IGazeControl: The gaze control interface.

blockEyes(vergence)

Blocks the eyes at the specified vergence.

Parameters:

vergence (float) – The vergence angle to block the eyes at.

blockNeck()

Blocks the neck movements.

clearEyes()

Clears the eye movements.

clearNeck()

Clears the neck movements.

lookAtAbsAngles(azi, ele, ver, waitMotionDone=True, timeout=0.0)

Commands the gaze controller to look at the specified absolute angles.

Parameters:
  • azi (float) – Azimuth angle in degrees.

  • ele (float) – Elevation angle in degrees.

  • ver (float) – Vergence angle in degrees.

  • waitMotionDone (bool, optional) – If True, the method will wait until the motion is completed.

  • timeout (float, optional) – Maximum time to wait for the motion to complete, in seconds. A value of 0.0 means no timeout.

lookAtRelAngles(azi, ele, ver, waitMotionDone=True, timeout=0.0)

Directs the gaze to the specified relative angles.

Parameters

azifloat

The azimuth angle in degrees.

elefloat

The elevation angle in degrees.

verfloat

The vergence angle in degrees.

waitMotionDonebool, optional

If True, the method waits until the motion is completed (default is True).

timeoutfloat, optional

The maximum time to wait for the motion to complete in seconds (default is 0.0, which means no timeout).

Returns

None

lookAtFixationPoint(x, y, z, waitMotionDone=True, timeout=0.0)

Directs the gaze to a specified fixation point in 3D space.

Parameters

xfloat

The x-coordinate of the fixation point.

yfloat

The y-coordinate of the fixation point.

zfloat

The z-coordinate of the fixation point.

waitMotionDonebool, optional

If True, the method waits until the motion is completed (default is True).

timeoutfloat, optional

The maximum time to wait for the motion to complete in seconds (default is 0.0).

Returns

None

reset()

Reset the gaze controller by clearing the eyes and neck positions.

This method calls clearEyes to reset the eye positions and clearNeck to reset the neck positions.

setParams(neck_tt, eyes_tt)
Parameters:
  • neck_tt (float) – Trajectory time for the neck.

  • eyes_tt (float) – Trajectory time for the eyes.

setTrackingMode(mode)
Parameters:

mode (bool) – True to enable tracking mode, False to disable.

waitMotionDone(period=0.1, timeout=0.0)
Parameters:
  • period (float) – Period to check the motion status.

  • timeout (float) – Timeout for waiting for the motion to complete.

Returns:

bool – True if the motion completed, False otherwise.

waitMotionOnset(speed_ref=0, period=0.1, max_attempts=50)

pyicub.controllers.position module

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.

class pyicub.controllers.position.ICUB_PARTS

Bases: object

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)

Bases: object

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)

Bases: object

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)

Bases: object

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)

Bases: object

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)

Module contents