test_publisher_twist_sine.py
Go to the documentation of this file.
00001 #!/usr/bin/env python
00002 #
00003 # Copyright 2017 Fraunhofer Institute for Manufacturing Engineering and Automation (IPA)
00004 #
00005 # Licensed under the Apache License, Version 2.0 (the "License");
00006 # you may not use this file except in compliance with the License.
00007 # You may obtain a copy of the License at
00008 #
00009 #   http://www.apache.org/licenses/LICENSE-2.0
00010 #
00011 # Unless required by applicable law or agreed to in writing, software
00012 # distributed under the License is distributed on an "AS IS" BASIS,
00013 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014 # See the License for the specific language governing permissions and
00015 # limitations under the License.
00016 
00017 
00018 import rospy
00019 import math
00020 from geometry_msgs.msg import Twist
00021 
00022 def velPub():
00023   rospy.init_node("test_publisher_vel", anonymous=True)
00024 
00025   pub_vel = rospy.Publisher("twist_controller/command_twist", Twist, queue_size=1)
00026   rospy.sleep(1.0)
00027 
00028   freq = 100.0
00029   r = rospy.Rate(freq)
00030   
00031   joint_idx = 1
00032 
00033   a = 0.05#2.0
00034   b = 0.1 * (2.0*math.pi/freq)
00035   c = -math.pi/2.0
00036   d = a
00037   i = 0.0
00038   
00039   vel_msg = Twist()
00040 
00041   while not rospy.is_shutdown():
00042     vel = a*math.sin(b*i+c) + d
00043     #print("vel: ", vel)
00044     vel_msg.angular.z = vel
00045     pub_vel.publish(vel_msg)
00046     i += 1.0
00047     r.sleep()
00048 
00049 if __name__ == '__main__':
00050   try:
00051       velPub()
00052   except rospy.ROSInterruptException: pass


cob_twist_controller
Author(s): Felix Messmer , Marco Bezzon , Christoph Mark , Francisco Moreno
autogenerated on Thu Jun 6 2019 21:19:26