-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexuro.cfg
171 lines (152 loc) · 3.93 KB
/
exuro.cfg
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
166
167
168
169
170
171
[arduino]
#
# port - the file path to access the serial port for communications
# with the arduino
#
# reset_time - how long in seconds to wait for the arduino to reset
# when there's a communications failure.
#
# baud - communication speed used when talking with the arduino
#
port = /dev/ttyACM0
reset_time = 2.0
#baud = 9600
baud = 57600
[kinect]
#
# height - the distance in meters from the kinect sensor to the floor.
#
# x - resolution width of the image and depth arrays
#
# y - resolution height of the image and depth arrays
#
# hfield - horizontal field of view
#
# vfield - vertical field of view
#
height = 1.686
x = 640
y = 480
hfield = 57
vfield = 43
[left eye]
#
# active - flag indicating if the left eye is currently online
#
# horizontal - the arduino port used to control the left eye
# horizontal servo.
#
# vertical - the arduino port used to control the left eye
# vertical servo.
#
# offset - the distance in meters from the center axis to the center
# of the eye.
#
# height - the distance in meters from the center of the eye to the
# floor.
#
# hmin - minimum allowed value for the left eye horizontal movement
#
# hmax - maximum allowed value for the left eye horizontal movement
#
# horient - looking out from the eye's point of view, horient
# describes what happens to the hoizontal servo when moving to the
# hmin position. 1 indicates that it moves to the right, -1 indicates
# that it moves to the left.
#
# vmin - minimum allowed value for the left eye vertical movement
#
# vmax - maximum allowed value for the left eye vertical movement
#
# vorient - looking out from the eye's point of view, vorient
# describes what happens to the vertical servo when moving to the vmin
# position. 1 indicates that it moves up, -1 indicates that it moves
# down.
#
active = True
horizontal = 10
vertical = 9
hmin = 20
hmax = 160
horient = -1
vmin = 85
vmax = 160
vorient = 1
offset = -0.10636
height = 1.753
[right eye]
#
# active - flag indicating if the right eye is currently online
#
# horizontal - the arduino port used to control the right eye
# horizontal servo.
#
# vertical - the arduino port used to control the right eye vertical
# servo.
#
# offset - the distance in meters from the center axis to the center
# of either eye.
#
# height - the distance in meters from the center of an eye to the
# floor.
#
# hmin - minimum allowed value for the left eye horizontal movement
#
# hmax - maximum allowed value for the left eye horizontal movement
#
# horient - looking out from the eye's point of view, horient
# describes what happens to the hoizontal servo when moving to the
# hmin position. 1 indicates that it moves to the right, -1 indicates
# that it moves to the left.
#
# vmin - minimum allowed value for the left eye vertical movement
#
# vmax - maximum allowed value for the left eye vertical movement
#
# vorient - looking out from the eye's point of view, vorient
# describes what happens to the vertical servo when moving to the vmin
# position. 1 indicates that it moves up, -1 indicates that it moves
# down.
#active = True
active = False
horizontal = 12
vertical = 11
hmin = 40
hmax = 170
horient = -1
vmin = 30
vmax = 160
vorient = -1
offset = 0.10636
height = 1.753
[servo]
#
# pause - time in seconds before sending the next servo command
#
# limit_watch - if true, when the the servo is to be moved more than
# the min or max reset the value to the min or max. when false, raise
# ValueError.
#
pause = 0.1
#limit_watch = True
limit_watch = False
[general]
#
# debug - boolean to turn on / off debugging
#
debug = True
#debug = False
[keys]
#
# consumer_key - twitter consumer key
#
# consumer_secret - twitter consumer secret
#
# access_key - twitter access key
#
# access_secret - twitter access secret
#
consumer_key = MISSING
consumer_secret = MISSING
access_key = MISSING
access_secret = MISSING