-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathQtrAnalog.cs
377 lines (347 loc) · 13.4 KB
/
QtrAnalog.cs
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Device.Adc;
using System.Device.Gpio;
namespace Iot.Device.QtrSensors
{
/// <summary>
/// QTR Pololu Reflectance Analog Sensor.
/// </summary>
public class QtrAnalog : QtrBase, IDisposable
{
/// <summary>
/// The default noise threshold is set to 5%.
/// </summary>
public const double DefaultNoiseThreshold = 0.05;
private readonly AdcChannel[] _qtrSensors;
private readonly GpioPin[] _emiters;
private GpioController _gpio;
private AdcController _adc;
private bool _shouldDisposeGpio;
private EmitterSelection _emitterSelection;
private PinValue _emitterValue;
private CalibrationData[] _calibOn;
private CalibrationData[] _calibOff;
private bool _isDisposed = false;
private double _lastPosition;
/// <summary>
/// Gets or sets the noise threshold.
/// </summary>
public double NoiseThreshold { get; set; } = DefaultNoiseThreshold;
/// <summary>
/// Gets or sets the Emitter selection.
/// </summary>
public override EmitterSelection EmitterSelection
{
get => _emitterSelection;
set
{
_emitterSelection = value;
if (_emiters.Length == 0)
{
// No pin, we don't have anything to do here
return;
}
else if (_emiters.Length == 1)
{
switch (_emitterSelection)
{
case EmitterSelection.None:
// If none, then switch of regardless of the pin values
_emiters[0].Write(PinValue.Low);
break;
case EmitterSelection.Even:
case EmitterSelection.Odd:
case EmitterSelection.All:
// Sets to the pin value
_emiters[0].Write(_emitterValue);
break;
default:
break;
}
}
else
{
switch (_emitterSelection)
{
case EmitterSelection.None:
// If none, then switch of regardless of the pin values
_emiters[0].Write(PinValue.Low);
_emiters[1].Write(PinValue.Low);
break;
case EmitterSelection.Even:
// If none, then switch of regardless of the pin values
_emiters[0].Write(_emitterValue);
break;
case EmitterSelection.Odd:
_emiters[1].Write(_emitterValue);
break;
case EmitterSelection.All:
_emiters[0].Write(_emitterValue);
_emiters[1].Write(_emitterValue);
break;
default:
break;
}
}
}
}
/// <summary>
/// Gets or sets the EmiterValue.
/// </summary>
public override PinValue EmitterValue
{
get => _emitterValue;
set
{
_emitterValue = value;
// Force the refresh of the emmiter pins
EmitterSelection = _emitterSelection;
}
}
/// <summary>
/// Initializes a new instance of the <see cref="QtrAnalog"/> class.
/// </summary>
/// <param name="sensors">Array of Adc channels.</param>
/// <param name="emmiters">Gpio emmiter pins. Array of 0 = no emmiter managed here, 1 = common emmiter, 2 = one for even one for odds.</param>
/// <param name="gpioController">A GPIO controller.</param>
/// <param name="adcController">An ADC controller.</param>
/// <param name="shouldDisposeo">Tru to dispose GPIO controller.</param>
public QtrAnalog(int[] sensors, int[] emmiters, GpioController gpioController = null, AdcController adcController = null, bool shouldDisposeo = false)
{
if (emmiters.Length > 2)
{
throw new ArgumentException(nameof(emmiters));
}
_shouldDisposeGpio = gpioController == null || shouldDisposeo;
_gpio = gpioController ?? new ();
_adc = adcController ?? new ();
_qtrSensors = new AdcChannel[sensors.Length];
for (int i = 0; i < _qtrSensors.Length; i++)
{
_qtrSensors[i] = _adc.OpenChannel(sensors[i]);
}
_emiters = new GpioPin[emmiters.Length];
for (int i = 0; i < _emiters.Length; i++)
{
_emiters[i] = _gpio.OpenPin(emmiters[i], PinMode.Output);
_emiters[i].Write(PinValue.Low);
}
_emitterValue = PinValue.Low;
}
/// <summary>
/// Calibrates the sensors.
/// </summary>
/// <param name="iteration">Number of iterations.</param>
/// <param name="emitterOn">True to set the emitters on.</param>
/// <returns>Calibration data.</returns>
public override CalibrationData[] Calibrate(int iteration, bool emitterOn)
{
PinValue oldEmit = _emitterValue;
EmitterSelection oldSection = EmitterSelection;
if (emitterOn)
{
_calibOn = _calibOn ?? new CalibrationData[_qtrSensors.Length];
_emitterValue = PinValue.High;
EmitterSelection = EmitterSelection.All;
for (int i = 0; i < _calibOn.Length; i++)
{
_calibOn[i] = new CalibrationData()
{
MaximumValue = _adc.MinValue,
MinimumValue = _adc.MaxValue
};
}
}
else
{
_calibOff = _calibOff ?? new CalibrationData[_qtrSensors.Length];
_emitterValue = PinValue.Low;
EmitterSelection = EmitterSelection.All;
for (int i = 0; i < _calibOff.Length; i++)
{
_calibOff[i] = new CalibrationData()
{
MaximumValue = _adc.MinValue,
MinimumValue = _adc.MaxValue
};
}
}
int val;
for (int i = 0; i < iteration; i++)
{
for (int qtr = 0; qtr < _qtrSensors.Length; qtr++)
{
val = _qtrSensors[qtr].ReadValue();
if (emitterOn)
{
_calibOn[qtr].MaximumValue = _calibOn[qtr].MaximumValue < val ? val : _calibOn[qtr].MaximumValue;
_calibOn[qtr].MinimumValue = _calibOn[qtr].MinimumValue > val ? val : _calibOn[qtr].MinimumValue;
}
else
{
_calibOff[qtr].MaximumValue = _calibOff[qtr].MaximumValue < val ? val : _calibOff[qtr].MaximumValue;
_calibOff[qtr].MinimumValue = _calibOff[qtr].MinimumValue > val ? val : _calibOff[qtr].MinimumValue;
}
}
}
_emitterValue = oldEmit;
EmitterSelection = oldSection;
return emitterOn ? _calibOn : _calibOff;
}
/// <summary>
/// Resets the calibration.
/// </summary>
/// <param name="emitterOn">True to reset the emitters on.</param>
public override void ResetCalibration(bool emitterOn)
{
if (emitterOn)
{
_calibOn = null;
}
else
{
_calibOff = null;
}
}
/// <summary>
/// Returns the values in a ration from 0.0 to 1.0.
/// </summary>
/// <returns>An array of raw values.</returns>
public override double[] ReadRatio()
{
var raws = ReadRaw();
double[] ratios = new double[raws.Length];
int min;
int max;
int deno;
for (int i = 0; i < ratios.Length; i++)
{
if (((_emitterSelection == EmitterSelection.All) && (_emitterValue == PinValue.High)) ||
((_emitterSelection == EmitterSelection.Odd) && (_emitterValue == PinValue.High) && (i % 2 == 1)) ||
((_emitterSelection == EmitterSelection.Even) && (_emitterValue == PinValue.High) && (i % 2 == 0)))
{
if (_calibOn != null)
{
min = _calibOn[i].MinimumValue;
max = _calibOn[i].MaximumValue;
deno = max - min;
if (deno != 0)
{
ratios[i] = (raws[i] - min) / deno;
ratios[i] = ratios[i] < 0 ? 0 : ratios[i];
ratios[i] = ratios[i] > 1 ? 1 : ratios[i];
}
}
else
{
ratios[i] = raws[i] / _adc.MaxValue;
}
}
else
{
if (_calibOff != null)
{
min = _calibOff[i].MinimumValue;
max = _calibOff[i].MaximumValue;
deno = max - min;
if (deno != 0)
{
ratios[i] = (raws[i] - min) / deno;
ratios[i] = ratios[i] < 0 ? 0 : ratios[i];
ratios[i] = ratios[i] > 1 ? 1 : ratios[i];
}
}
else
{
ratios[i] = raws[i] / _adc.MaxValue;
}
}
}
return ratios;
}
/// <summary>
/// Reads the values as Raw values.
/// </summary>
/// <returns>An array of raw values.</returns>
public override double[] ReadRaw()
{
double[] vals = new double[_qtrSensors.Length];
for (int i = 1; i <= SamplesPerSensor; i++)
{
for (int qtr = 0; qtr < _qtrSensors.Length; qtr++)
{
vals[qtr] = ((vals[qtr] * (i - 1)) + _qtrSensors[qtr].ReadValue()) / i;
}
}
return vals;
}
/// <summary>
/// Reads the position of the line from -1.0 to 1.0, 0 is centered. -1 means full left, +1 means full right, 0 means centered.
/// By convention, full left is the sensor 0 and full right is the last sensor.
/// If no position is found, the last position will be returned.
/// </summary>
/// <param name="blackLine">True for a black line, false for a white line.</param>
/// <returns>The position between -1.0 and 1.0.</returns>
public override double ReadPosition(bool blackLine = true)
{
var ratios = ReadRatio();
double pos = 0;
double ratio;
for (int i = 0; i < ratios.Length; i++)
{
// Only take what is not noisy
if (ratios[i] > NoiseThreshold)
{
ratio = blackLine ? ratios[i] : 1 - ratios[i];
pos += (i + 1) * ratio;
}
}
// Normalize it
pos = (pos / ratios.Length) - 1;
// Check if the last read is still valid as -1 will just give full left and is the default value if no line is detected
if (pos == -1)
{
if (_lastPosition < (1 / (ratios.Length - 1) - 1))
{
_lastPosition = -1;
}
else if (_lastPosition > 1 - (1 / (ratios.Length - 1)))
{
_lastPosition = 1;
}
return _lastPosition;
}
_lastPosition = pos;
return pos;
}
/// <inheritdoc/>
public void Dispose()
{
if ((_emiters != null) && !_isDisposed)
{
for (int i = 0; i < _emiters.Length; i++)
{
_gpio.ClosePin(_emiters[i].PinNumber);
_emiters[i] = null;
}
}
if (_shouldDisposeGpio)
{
_gpio?.Dispose();
_gpio = null;
}
if ((_qtrSensors != null) && !_isDisposed)
{
// No dispose but setting it to null
for (int i = 0; i < _qtrSensors.Length; i++)
{
_qtrSensors[i] = null;
}
_adc = null;
}
_isDisposed = true;
}
}
}