]> defiant.homedns.org Git - ros_roboint.git/blob - scripts/robo_explorer.py
"laser" scan to 30 points
[ros_roboint.git] / scripts / robo_explorer.py
1 #!/usr/bin/env python
2 import roslib; roslib.load_manifest('roboint')
3 import rospy
4 import tf
5 from math import sin, cos, pi
6 from geometry_msgs.msg import Twist, TransformStamped, Point32
7 from sensor_msgs.msg import LaserScan
8 from nav_msgs.msg import Odometry
9 from roboint.msg import Motor
10 from roboint.msg import Inputs
11
12
13 class RoboExplorer:
14         def __init__(self):
15                 rospy.init_node('robo_explorer')
16
17                 self.wheel_dist = 0.188 # 18.8cm
18                 self.wheel_size = 0.052*0.5 # 5.2cm; gear ration=0.5
19                 self.speed = (0, 0)
20                 self.x = 0
21                 self.y = 0
22                 self.alpha = 0
23                 self.last_in = None
24                 self.tf_broadcaster = tf.TransformBroadcaster()
25                 self.last_time = rospy.Time.now()
26                 self.input_count = 0
27                 self.x_last = 0
28                 self.y_last = 0
29                 self.alpha_last = 0
30
31                 self.pub_motor = rospy.Publisher("ft/set_motor", Motor)
32                 self.pub_scan = rospy.Publisher("scan", LaserScan)
33                 self.pub_odom = rospy.Publisher("odom", Odometry)
34                 
35                 rospy.Subscriber("cmd_vel", Twist, self.cmdVelReceived)
36                 rospy.Subscriber("ft/get_inputs", Inputs, self.inputsReceived)
37
38                 rospy.spin()
39
40         def inputsReceived(self, msg):
41                 current_time = rospy.Time.now()
42                 self.input_count+=1
43
44                 self.update_odometry(msg, current_time)
45                 if self.input_count >= 10:
46                         self.input_count = 0
47                         self.send_odometry(msg, current_time)
48                         self.send_laser_scan(msg, current_time)
49
50         def update_odometry(self, msg, current_time):
51                 in_now = msg.input[1:3]
52                 if self.last_in is not None:
53                         in_diff = [abs(a - b) for a, b in zip(in_now, self.last_in)] # get changed inputs
54                         # fix in_diff from actual motor direction
55                         if self.speed[0] < 0:
56                                 in_diff[0] = -in_diff[0]
57                         elif self.speed[0] == 0:
58                                 in_diff[0] = 0
59                         if self.speed[1] < 0:
60                                 in_diff[1] = -in_diff[1]
61                         elif self.speed[1] == 0:
62                                 in_diff[1] = 0
63
64                         dist_dir = (in_diff[1] - in_diff[0])*self.wheel_size*pi/8 # steps_changed in different direction => m
65                         delta_alpha = dist_dir/self.wheel_dist
66
67                         dist = (in_diff[0] + in_diff[1])/2.0*self.wheel_size*pi/8 # steps_changed same direction => m
68
69                         delta_x = cos(self.alpha + delta_alpha/2)*dist
70                         delta_y = sin(self.alpha + delta_alpha/2)*dist
71
72                         self.alpha += delta_alpha
73                         if self.alpha > 2*pi:
74                                 self.alpha -= 2*pi
75                         elif self.alpha < -2*pi:
76                                 self.alpha += 2*pi
77                         self.x += delta_x
78                         self.y += delta_y
79
80                 self.last_in = in_now
81
82         def send_odometry(self, msg, current_time):
83                 # speeds
84                 dt = (current_time - self.last_time).to_sec()
85                 vx = (self.x - self.x_last) / dt
86                 vy = (self.y - self.y_last) / dt
87                 valpha = (self.alpha - self.alpha_last) / dt
88                 self.last_time = current_time
89                 self.x_last = self.x
90                 self.y_last = self.y
91                 self.alpha_last = self.alpha
92
93                 # since all odometry is 6DOF we'll need a quaternion created from yaw
94                 odom_quat = tf.transformations.quaternion_from_euler(0, 0, self.alpha)
95
96                 # first, we'll publish the transform over tf
97                 self.tf_broadcaster.sendTransform((self.x, self.y, 0.0), odom_quat, current_time, "base_link", "odom")
98
99                 # next, we'll publish the odometry message over ROS
100                 odom = Odometry()
101                 odom.header.stamp = current_time
102                 odom.header.frame_id = "/odom"
103
104                 # set the position
105                 odom.pose.pose.position.x = self.x
106                 odom.pose.pose.position.y = self.y
107                 odom.pose.pose.position.z = 0.0
108                 odom.pose.pose.orientation.x = odom_quat[0]
109                 odom.pose.pose.orientation.y = odom_quat[1]
110                 odom.pose.pose.orientation.z = odom_quat[2]
111                 odom.pose.pose.orientation.w = odom_quat[3]
112
113                 # set the velocity
114                 odom.child_frame_id = "base_link"
115                 odom.twist.twist.linear.x = vx
116                 odom.twist.twist.linear.y = vy
117                 odom.twist.twist.angular.z = valpha
118
119                 # publish the message
120                 self.pub_odom.publish(odom)
121                 
122         def send_laser_scan(self, msg, current_time):
123                 # first, we'll publish the transform over tf
124                 self.tf_broadcaster.sendTransform((0.06, 0.0, 0.0), (0.0, 0.0, 0.0, 1.0), current_time, "scan", "base_link")
125
126                 # actually ultra sonic range finder
127                 num_points = 30
128                 opening_angle = 30*pi/180 # each side
129                 scan = LaserScan()
130                 scan.header.stamp = current_time
131                 scan.header.frame_id = "/scan"
132                 scan.angle_min = -opening_angle
133                 scan.angle_max = opening_angle
134                 scan.angle_increment = (2*opening_angle)/num_points
135                 scan.time_increment = 0.1/num_points
136                 scan.range_min = 0.0
137                 scan.range_max = 4.0
138                 for i in range(num_points):
139                         scan.ranges.append(msg.d1/100.0)
140                 #scan.intensities.append(0.5)
141                 #scan.intensities.append(1.0)
142                 #scan.intensities.append(0.5)
143                 self.pub_scan.publish(scan)
144
145         # test with rostopic pub -1 cmd_vel geometry_msgs/Twist '[0, 0, 0]' '[0, 0, 0]'
146         def cmdVelReceived(self, msg):
147                 trans = msg.linear.x
148                 rot = msg.angular.z # rad/s
149
150                 # handle rotation as offset to speeds
151                 speed_offset = (rot * self.wheel_dist)/2.0 # m/s
152
153                 # handle translation
154                 speed_l = 0
155                 wish_speed_left = trans - speed_offset
156                 if abs(wish_speed_left) > 1.7/64.3:
157                         speed_l = 64.3*abs(wish_speed_left) - 1.7
158                         if wish_speed_left < 0:
159                                 speed_l*=-1
160                 speed_r = 0
161                 wish_speed_right = trans + speed_offset
162                 if abs(wish_speed_right) > 1.7/64.3:
163                         speed_r = 64.3*abs(wish_speed_right) - 1.7
164                         if wish_speed_right < 0:
165                                 speed_r*=-1
166
167                 # check limits
168                 if speed_l < -7: speed_l = -7
169                 elif speed_l > 7: speed_l = 7
170                 if speed_r < -7: speed_r = -7
171                 elif speed_r > 7: speed_r = 7
172
173                 outmsg = Motor()
174                 outmsg.num = 1
175                 outmsg.speed = round(speed_l)
176                 self.pub_motor.publish(outmsg)
177                 
178                 outmsg = Motor()
179                 outmsg.num = 2
180                 outmsg.speed = round(speed_r)
181                 self.pub_motor.publish(outmsg)
182
183                 self.speed = (speed_l, speed_r)
184
185 if __name__ == '__main__':
186         RoboExplorer()