-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhead_wobbler.py
More file actions
executable file
·165 lines (136 loc) · 5.34 KB
/
Copy pathhead_wobbler.py
File metadata and controls
executable file
·165 lines (136 loc) · 5.34 KB
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
# Copyright (c) 2013-2015, Rethink Robotics
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the Rethink Robotics nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
import argparse
import random
import getch
import rospy
import baxter_interface
import xdisplay_image
from baxter_interface import CHECK_VERSION
class Wobbler(object):
def __init__(self):
"""
'Wobbles' the head
"""
self._done = False
self._head = baxter_interface.Head()
# verify robot is enabled
# print("Getting robot state... ")
# self._rs = baxter_interface.RobotEnable(CHECK_VERSION)
# self._init_state = self._rs.state().enabled
# print("Enabling robot... ")
# self._rs.enable()
# print("Running. Ctrl-c to quit")
# def clean_shutdown(self):
# """
# Exits example cleanly by moving head to neutral position and
# maintaining start state
# """
# print("\nExiting example...")
# if self._done:
# self.set_neutral()
# if not self._init_state and self._rs.state().enabled:
# print("Disabling robot...")
# self._rs.disable()
def set_neutral(self):
"""
Sets the head back into a neutral pose
"""
self._head.set_pan(0.0)
def look_right(self):
self._head.set_pan(-1.57)
def look_45(self):
self._head.set_pan(-1.57/2)
def look_left(self):
self._head.set_pan(1.57)
def wobble(self):
# self.set_neutral()
"""
Performs the wobbling
"""
self._head.command_nod()
command_rate = rospy.Rate(1)
control_rate = rospy.Rate(100)
start = rospy.get_time()
print "press Esc to start experiment"
wobble = True
try:
while wobble == True:
angle = random.uniform(-0.7, 0.7)
while (not rospy.is_shutdown() and
not (abs(self._head.pan() - angle) <=
baxter_interface.HEAD_PAN_ANGLE_TOLERANCE)):
self._head.set_pan(angle, speed=0.03, timeout=0)
control_rate.sleep()
nod = random.randint(1,1000)
if nod % 4 == 0:
self._head.command_nod()
command_rate.sleep()
# if getch.kbhit():
except KeyboardInterrupt:
self.set_neutral()
# wobble == False
# break
self._done = True
rospy.signal_shutdown("Example finished.")
# def search(self):
# """RSDK Head Example: Wobbler
# Nods the head and pans side-to-side towards random angles.
# Demonstrates the use of the baxter_interface.Head class.
# """
# arg_fmt = argparse.RawDescriptionHelpFormatter
# parser = argparse.ArgumentParser(formatter_class=arg_fmt,
# description=main.__doc__)
# parser.parse_args(rospy.myargv()[1:])
# # print("Initializing node... ")
# # rospy.init_node("rsdk_head_wobbler")
# wobbler = Wobbler()
# # rospy.on_shutdown(wobbler.clean_shutdown)
# print("Wobbling... ")
# wobbler.wobble()
# print("Done.")
def main():
"""RSDK Head Example: Wobbler
Nods the head and pans side-to-side towards random angles.
Demonstrates the use of the baxter_interface.Head class.
"""
arg_fmt = argparse.RawDescriptionHelpFormatter
parser = argparse.ArgumentParser(formatter_class=arg_fmt,
description=main.__doc__)
parser.parse_args(rospy.myargv()[1:])
print("Initializing node... ")
rospy.init_node("rsdk_head_wobbler", disable_signals=True)
xdisplay_image.send_image("SadNEBlue.jpg")
wobbler = Wobbler()
# rospy.on_shutdown(wobbler.clean_shutdown)
print("Wobbling... ")
wobbler.wobble()
wobbler.set_neutral()
print("Done.")
if __name__ == '__main__':
main()