Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ public interface AlexanderVersionInterface extends RobotVersion
AlexanderJointMap getJointMap();

boolean hasNubHands(RobotSide side);

boolean hasCycloidHands(RobotSide side);

AlexanderSensorInformation getSensorInformation();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,18 @@ public boolean hasNubHands(RobotSide side)
}
}

@Override
public boolean hasCycloidHands(RobotSide side)
{
switch (this)
{
case V1_FULL_ROBOT:
return true;
default:
return false;
}
}

@Override
public AlexanderSensorInformation getSensorInformation()
{
Expand Down
Loading