This repository was archived by the owner on Jun 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKangaroo.cs
More file actions
240 lines (202 loc) · 7.68 KB
/
Copy pathKangaroo.cs
File metadata and controls
240 lines (202 loc) · 7.68 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
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
using System;
using Microsoft.SPOT;
using Microsoft.SPOT.Hardware;
using System.IO.Ports;
using GT = Gadgeteer;
using GTM = Gadgeteer.Modules;
namespace GR.BR
{
enum mode
{
moteur1 = 0x31, moteur2 = 0x32, drive = 0x44, turn = 0x54
};
enum unite
{
mm = 5, cm = 56, m = 562, degre = 79, kmh = 1000//20000
};
enum vitesse
{
ralenti = 500, premiere = 1500, deuxieme = 3000, troisieme = 4000, vitesseRotationMax = 750, vitesseRotationMin = 500
};
class CKangaroo
{
SerialPort m_port;
public CKangaroo(int numPort)
{
Debug.Print("test kangaroo");
string COMPort = GT.Socket.GetSocket(numPort, true, null, null).SerialPortName;
m_port = new SerialPort(COMPort, 9600, Parity.None, 8, StopBits.One);
Debug.Print("serial port ok");
m_port.ReadTimeout = 500;
m_port.WriteTimeout = 500;
m_port.Open();
}
public bool start(mode m)
{
String commande;
byte[] buffer = new byte[100];
bool retour = false;
buffer[0] = (byte)m;
commande = BitConverter.ToChar(buffer, 0).ToString() + ",start\r\n";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
if (m_port.IsOpen)
{
m_port.Write(buffer, 0, commande.Length);
retour = true;
}
return retour;
}
public bool resetCodeur()
{
bool retour = false;
String commande;
byte[] buffer = new byte[100];
if (m_port.IsOpen)
{
start(mode.drive);
commande = "D, UNITS 1696 mm = 128 lines";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
m_port.Write(buffer, 0, commande.Length);
start(mode.drive);
commande = "D,p0s0\r\n";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
m_port.Write(buffer, 0, commande.Length);
start(mode.turn);
commande = "T, UNITS 360 degrees = 37 lines";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
m_port.Write(buffer, 0, commande.Length);
start(mode.turn);
commande = "T,p0s0\r\n";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
m_port.Write(buffer, 0, commande.Length);
}
return retour;
}
public bool init()
{
bool retour = false;
String commande;
byte[] buffer = new byte[100];
if (m_port.IsOpen)
{
start(mode.drive);
commande = "D, UNITS 1696 mm = 256 lines";// = "D, UNITS 1696 mm = 128 lines";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
m_port.Write(buffer, 0, commande.Length);
start(mode.drive);
commande = "D,p0s0\r\n";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
m_port.Write(buffer, 0, commande.Length);
start(mode.turn);
commande = "T, UNITS 360 degrees = 74 lines";//"T, UNITS 360 degrees = 37 lines";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
m_port.Write(buffer, 0, commande.Length);
start(mode.turn);
commande = "T,p0s0\r\n";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
m_port.Write(buffer, 0, commande.Length);
}
return retour;
}
//retourne un code erreur
//0 pas d'erreur
// cette fonction semble ne pas marcher !! index out of range dans la boucle du tableau taille...
public int getPosition(mode m, ref int position)
{
String commande, sPosition, sErreur;
byte[] reponse = new byte[100];
char[] tempo = new char[10];
int codeErreur = 0;
byte[] buffer = new byte[100];
if (m_port.IsOpen)
{
buffer[0] = (byte)m;
commande = BitConverter.ToChar(buffer, 0).ToString() + ",getp\r\n";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
int t = commande.Length;
m_port.Write(buffer, 0, commande.Length);
int i = 0;
do
{
reponse[i++] = (byte)m_port.ReadByte();
} while (reponse[i - 1] != '\n' && i < 99);
reponse[i] = (byte)'\0';
if (reponse[2] != 'E')
{
int j = 0;
int taille = 0;
do
{
} while (reponse[taille++] != 0x00);
taille--;
// Debug.Print("reponse[taille] " + reponse[taille]);
for (i = 3; i < taille - 2; i++)
{
// Debug.Print("j " + j);
tempo[j++] = (char)reponse[i];
}
sPosition = new string(tempo);
// Debug.Print("reponse[2] != 'E'" + sPosition);
position = Convert.ToInt32(sPosition);
}
else
{
tempo[0] = (char)reponse[2];
tempo[1] = (char)reponse[3];
sErreur = new string(tempo);
Debug.Print("else" + sErreur);
codeErreur = Convert.ToInt32(sErreur, 16);
}
}
return codeErreur;
}
public bool allerEn(int distance, int speed, unite u)
{
String commande;
bool retour = false;
byte[] buffer = new byte[100];
distance = (int)(5.695 * distance);// 6.5 *
init();
start(mode.drive);
speed = speed * (int)unite.kmh;//* (int)unite.kmh;
if (m_port.IsOpen)
{
commande = "D,p" + distance.ToString() + "s" + speed.ToString() + "\r\n";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
m_port.Write(buffer, 0, commande.Length);
}
return retour;
}
public bool Tourner(double angle)
{
String commande;
bool retour = false;
byte[] buffer = new byte[100];
angle =(int) (angle * 14.05);
init();
start(mode.turn);
if (m_port.IsOpen)
{
commande = "T,p" + ((int)angle).ToString() + "s" + 500 + "\r\n";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
m_port.Write(buffer, 0, commande.Length);
retour = true;
}
return retour;
}
public bool powerdown(mode m)
{
String commande;
bool retour = false;
byte[] buffer = new byte[100];
if (m_port.IsOpen)
{
commande = m.ToString() + ",powerdown\r\n";
buffer = System.Text.Encoding.UTF8.GetBytes(commande);
m_port.Write(buffer, 0, commande.Length);
retour = true;
}
return retour;
}
}
}