-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrobotCommand.cpp
78 lines (75 loc) · 1.84 KB
/
robotCommand.cpp
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
#include <stdlib.h>
#include <stdio.h>
#include <iostream.h>
#include "Robot.h"
#include "37e12reqs.h"
int main(int argc, char **argv)
{
Robot r;
char in = 'c';
char in2 = 'c';
char port;
while(in != 'q') {
printf("speed: %i, ISO_out: 0x%x, ISO_in: 0x%x\n", r.getSpeed(), r.getIsoOuts(), r.getIsoIns());
printf("m: move, o:outputs, i:inputs, q:quit\n");
cin >> in;
switch ( in )
{
case 'm':
printf("w:faster s:slower a:lefter d:righter\n");
cin >> in2;
switch ( in2 )
{
case 'w':
r.goFaster();
break;
case 's':
r.goSlower();
break;
case 'a':
r.goLeft();
break;
case 'd':
r.goRight();
break;
default:
break;
}
break;
case 'o':
printf("What ISO? (0-7)\n");
/**
* optoIso
*
printf("What ISO? (0-7)\n");
cin >> port;
printf("o:on f:off\n");
cin >> in2;
switch ( in2 )
{
case 'o':
r.turnIsoOutOn(atoi(&port));
break;
case 'f':
r.turnIsoOutOff(atoi(&port));
break;
default:
break;
}
*/
case 'i':
/**
* optoIso
*
printf("What ISO? (0-7)\n");
cin >> port;
r.getIsoIn(atoi(&port));
*/
case 'q':
break;
default:
break;
}
r.move();
}
}