-
Notifications
You must be signed in to change notification settings - Fork 0
/
teleop_twist_keyboard_IRISS.py
executable file
·167 lines (139 loc) · 3.53 KB
/
teleop_twist_keyboard_IRISS.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/usr/bin/env python
import roslib; roslib.load_manifest('teleop_twist_keyboard')
import rospy
from rospy import timer
from geometry_msgs.msg import Twist
import subprocess
import sys, select, termios, tty
msg = """
Reading from the keyboard and Publishing to Twist!
---------------------------
Moving around:
u i o
j k l
m , .
q/z : increase/decrease max speeds by 10%
w/x : increase/decrease only linear speed by 10%
e/c : increase/decrease only angular speed by 10%
anything else : stop
CTRL-C to quit
"""
moveBindings = {
'i':(1,0),
'o':(1,-1),
'j':(0,1),
'l':(0,-1),
'u':(1,1),
',':(-1,0),
'.':(-1,1),
'm':(-1,-1),
}
speedBindings={
'q':(1.1,1.1),
'z':(.9,.9),
'w':(1.1,1),
'x':(.9,1),
'e':(1,1.1),
'c':(1,.9),
}
def getKey():
tty.setraw(sys.stdin.fileno())
select.select([sys.stdin], [], [], 0)
key = sys.stdin.read(1)
termios.tcsetattr(sys.stdin, termios.TCSADRAIN, settings)
return key
def keyNoBlock():
tty.setcbreak(sys.stdin.fileno())
select.select([sys.stdin],[], [], 1)
#if(s == sys.stdin):
# global globalKey = sys.stdin.read(1)
# return true
key = sys.stdin.read(1)
termios.tcsetattr(sys.stdin, termios.TCSADRAIN, settings)
return key
speed = .5
turn = 0.05
globalKey = '['
def vels(speed,turn):
return "currently:\tspeed %s\tturn %s " % (speed,turn)
if __name__=="__main__":
settings = termios.tcgetattr(sys.stdin)
pub = rospy.Publisher('cmd_vel', Twist)
rospy.init_node('teleop_twist_keyboard_IRISS')
x = 0
th = 0
status = 14
key = '['
time = rospy.get_rostime()
print rospy.get_rostime()
random = 0
try:
print msg
print vels(speed, turn)
while(key != '\x03'):
while(key != '=' and key != '\x03'):
key = getKey()
print "Input Recieved: "+key
if key in moveBindings.keys():
x = moveBindings[key][0]
th = moveBindings[key][1]
elif key in speedBindings.keys():
speed = speed * speedBindings[key][0]
turn = turn * speedBindings[key][1]
print vels(speed,turn)
if (status == 14):
print msg
status = (status + 1) % 15
else:
x = 0
th = 0
if (key == '\x03'):
break
twist = Twist()
twist.linear.x = x*speed; twist.linear.y = 0; twist.linear.z = 0
twist.angular.x = 0; twist.angular.y = 0; twist.angular.z = th*turn
pub.publish(twist)
# time=time.time()
speed=.10
turn=.05
time = 0
#random = 0
#time = rospy.get_rostime()
newtime = time
print "beginning loop"
#while(key != '-' and key != '\x03'):
while(time < 80 and key != '\x03'):
# print msg
if (key == '\x03'):
break
else:
print "turn "+i
twist = Twist()
twist.linear.x = 0; twist.linear.y = 0; twist.linear.z = 0
twist.angular.x = 0; twist.angular.y = 0; twist.angular.z = turn
pub.publish(twist)
timer.sleep(.8)
time = time +1
#newtime = rospy.get_rostime()
print "loop ended"
twist = Twist()
twist.linear.x = 0; twist.linear.y = 0; twist.linear.z = 0
twist.angular.x = 0; twist.angular.y = 0; twist.angular.z = 0
pub.publish(twist)
print "Finished first round"
if (key == '\x03'):
break
else:
key = ' '
# SLEEP(5)
# wait(3000)#Assuming we can find a function that waits for 1 ms interval
except:
print random
print time
print e
finally:
twist = Twist()
twist.linear.x = 0; twist.linear.y = 0; twist.linear.z = 0
twist.angular.x = 0; twist.angular.y = 0; twist.angular.z = 0
pub.publish(twist)
termios.tcsetattr(sys.stdin, termios.TCSADRAIN, settings)