-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathensc-488.h
265 lines (250 loc) · 7.19 KB
/
ensc-488.h
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
//-----------------------------------------------------------------------------
// ensc-488.h
//
// This file provides basic interface to both
// (a) Powercube Scara robot hardware set up in ENSC-488 Lab, and
// (b) A graphics simulator of above hardware.
//
// For overview, the interface include the following functions:
// - bool DisplayConfiguration(JOINT &conf);
// - bool MoveToConfiguration(JOINT &conf, bool wait = false);
// - bool MoveWithConfVelAcc(JOINT &conf, JOINT &vel, JOINT &acc);
// - bool GetConfiguration(JOINT &conf);
// - bool GetState(JOINT &state);
// - bool ResetRobot();
// - void StopRobot();
// For more detailed descriptions, please read comments for each function.
//
// Revision History:
// - Oct 10, 2007,
// Version 0.1 released by Zhenwang Yao.
//
//-----------------------------------------------------------------------------
#define PI (3.1415926)
#define DEG2RAD(x) (x*PI/180.)
#define RAD2DEG(x) (x*180./PI)
#define MS2SEC(x) (x/1000.)
#define MM2M(x) (x/1000.)
#define M2MM(x) (x*1000.)
#pragma comment( lib, "PowerCubeSim.lib" )
typedef double JOINT[4];
//-----------------------------------------------------------------------------
//bool MoveToConfiguration(JOINT &conf, bool wait = false);
//
//Description:
// This function moves the robot to the desired configuration.
//
//Input Parameter:
// conf : Desired configuration
// wait : Whether to wait until the robot reach the desired configuration.
// wait = false, function return right away;
// wait = true, function will not return until the desired
// configuration is reached.
//
//Ouput Parameter:
// N/A
//
//Return Value:
// true, if success
// false, otherwise
//
//Validity:
// Hardware and simulation.
//
//-----------------------------------------------------------------------------
__declspec( dllimport) bool MoveToConfiguration(JOINT &conf, bool wait = false);
//-----------------------------------------------------------------------------
//bool MoveWithConfVelAcc(JOINT &conf, JOINT &vel, JOINT &acc);
//
//Description:
// This function moves the robot with the desired profile, namely to
// acheive the desired velocity/acceleration at the desired configuration.
//
//Input Parameter:
// conf: Desired configuration
// vel : Desired velocity
// acc : Desired acceleration
//
//Ouput Parameter:
// N/A
//
//Return Value:
// true, if success
// false, otherwise
//
//Validity:
// Hardware and simulation.
//
//-----------------------------------------------------------------------------
__declspec( dllimport) bool MoveWithConfVelAcc(JOINT &conf, JOINT &vel, JOINT &acc);
//-----------------------------------------------------------------------------
//bool GetConfiguration(JOINT &conf);
//
//Description:
// This function retrieves current robot configuration.
//
//Input Parameter:
// N/A
//
//Ouput Parameter:
// conf : Current robot configuration.
//
//Return Value:
// true, if success
// false, otherwise
//
//Validity:
// Hardware and simulation.
//
//-----------------------------------------------------------------------------
__declspec( dllimport) bool GetConfiguration(JOINT &conf);
//-----------------------------------------------------------------------------
//bool GetState(JOINT &state);
//
//Description:
// This function retrieves current state of the robot.
//
//Input Parameter:
// N/A
//
//Ouput Parameter:
// state : Current state for every joint.
// for detailed description about stateid, please refer to "stateid.h".
// Note that, the state should be a unsigned long integer for each joint,
// however for simplicity, double float is used in the argument,
// so you need to cast double to long before you can find out the ID.
//
//Return Value:
// true, if success
// false, otherwise
//
//Validity:
// Hardware and simulation.
//
//-----------------------------------------------------------------------------
__declspec( dllimport) bool GetState(JOINT &state);
//-----------------------------------------------------------------------------
//bool Grasp(bool close);
//
//Description:
// This function open or close the gripper.
//
//Input Parameter:
// close: close = true, close the gripper;
// close = false, open the gripper
//
//Ouput Parameter:
// N/A
//
//Return Value:
// true, if success
// false, otherwise
//
//Validity:
// Hardware and simulation.
//
//-----------------------------------------------------------------------------
__declspec( dllimport) bool Grasp(bool close);
//-----------------------------------------------------------------------------
//void StopRobot();
//
//Description:
// This function stops the robot movement.
//
//Input Parameter:
// N/A
//
//Ouput Parameter:
// N/A
//
//Return Value:
// N/A
//
//Validity:
// Hardware and simulation.
//
//-----------------------------------------------------------------------------
__declspec( dllimport) void StopRobot();
//-----------------------------------------------------------------------------
//bool ResetRobot();
//
//Description:
// This function reset the robot, after calling StopRobot().
// After StopRobot() is called, one can not more the robot before
// resettting the robot by calling this function.
//
//Input Parameter:
// N/A
//
//Ouput Parameter:
// N/A
//
//Return Value:
// N/A
//
//Validity:
// Hardware and simulation.
//
//-----------------------------------------------------------------------------
__declspec( dllimport) bool ResetRobot();
//-----------------------------------------------------------------------------
//bool DisplayConfiguration(JOINT &conf);
//
//Description:
// This function display the robot with given configuration.
//
//Input Parameter:
// conf : Given configuration
//
//Ouput Parameter:
// N/A
//
//Return Value:
// true, if success
// false, otherwise
//
//Validity:
// Simulation only.
//
//-----------------------------------------------------------------------------
__declspec( dllimport) bool DisplayConfiguration(JOINT &conf);
//-----------------------------------------------------------------------------
//void OpenMonitor();
//
//Description:
// This function open the monitor window.
//
//Input Parameter:
// N/A
//
//Ouput Parameter:
// N/A
//
//Return Value:
// N/A
//
//Validity:
// Hardware and Simulation.
//
//-----------------------------------------------------------------------------
__declspec( dllimport) void OpenMonitor();
//-----------------------------------------------------------------------------
//void CloseMonitor();
//
//Description:
// This function close the monitor window.
//
//Input Parameter:
// N/A
//
//Ouput Parameter:
// N/A
//
//Return Value:
// N/A
//
//Validity:
// Hardware and Simulation.
//
//-----------------------------------------------------------------------------
__declspec( dllimport) void CloseMonitor();