59 lines
1.8 KiB
Python
59 lines
1.8 KiB
Python
|
#!/usr/bin/env python3
|
||
|
# Copyright (c) 2021 Franka Emika GmbH
|
||
|
#
|
||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
# you may not use this file except in compliance with the License.
|
||
|
# You may obtain a copy of the License at
|
||
|
#
|
||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||
|
#
|
||
|
# Unless required by applicable law or agreed to in writing, software
|
||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
# See the License for the specific language governing permissions and
|
||
|
# limitations under the License.
|
||
|
|
||
|
import rclpy
|
||
|
from rclpy import Parameter
|
||
|
from rclpy.node import Node
|
||
|
from sensor_msgs.msg import JointState
|
||
|
|
||
|
|
||
|
class FakeGripperStatePublisher(Node):
|
||
|
|
||
|
def __init__(self):
|
||
|
super().__init__('fake_gripper_state_publisher')
|
||
|
self.publisher_ = self.create_publisher(JointState, '~/joint_states', 1)
|
||
|
timer_period = 0.1 # seconds
|
||
|
|
||
|
self.declare_parameter('joint_names', Parameter.Type.STRING_ARRAY)
|
||
|
self.joint_names = (
|
||
|
self.get_parameter('joint_names').get_parameter_value().string_array_value
|
||
|
)
|
||
|
|
||
|
assert len(self.joint_names) == 2
|
||
|
self.timer = self.create_timer(timer_period, self.publish_state)
|
||
|
|
||
|
def publish_state(self):
|
||
|
joint_states = JointState()
|
||
|
joint_states.header.stamp = self.get_clock().now().to_msg()
|
||
|
joint_states.name = self.joint_names
|
||
|
joint_states.position = [0.035, 0.035]
|
||
|
joint_states.velocity = [0.0, 0.0]
|
||
|
joint_states.effort = [0.0, 0.0]
|
||
|
self.publisher_.publish(joint_states)
|
||
|
|
||
|
|
||
|
def main(args=None):
|
||
|
rclpy.init(args=args)
|
||
|
|
||
|
state_publisher = FakeGripperStatePublisher()
|
||
|
|
||
|
rclpy.spin(state_publisher)
|
||
|
state_publisher.destroy_node()
|
||
|
rclpy.shutdown()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|