Source code for xamla_motion.data_types.move_gripper_result

# move_gripper_results.py
#
# Copyright (c) 2018, Xamla and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

#!/usr/bin/env python3

from control_msgs.msg import GripperCommandResult


[docs]class MoveGripperResult(object): """ Class which represents the result of a gripper action """ def __init__(self, position: float, reached_goal: float, stalled: bool, effort: float): self.__position = position self.__reached_goal = reached_goal self.__stalled = stalled self.__effort = effort @classmethod def from_gripper_command_action_result(cls, msg): return cls(msg.position, msg.reached_goal, msg.stalled, msg.effort) @property def position(self): """ position : float The current gripper gap size (in meters) """ return self.__position @property def reached_goal(self): """ reached_goal : bool True iff the gripper position has reached the commanded setpoint """ return self.__reached_goal @property def stalled(self): """ stalled : bool True iff the gripper is exerting max effort and not moving """ return self.__stalled @property def effort(self): """ effort : float The current effort exerted (in Newtons) """ return self.__effort