-
Notifications
You must be signed in to change notification settings - Fork 2
/
SinglePinCapacitiveSense.h
430 lines (331 loc) · 16.1 KB
/
SinglePinCapacitiveSense.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
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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
#ifndef SinglePinCapacitiveSense_h
#define SinglePinCapacitiveSense_h
// Copyright 2020 Anton Krug - MIT License
#include <Arduino.h>
#ifndef SINGLE_PIN_CAPACITIVE_SENSE_BLOCK_IRQ
#define SINGLE_PIN_CAPACITIVE_SENSE_BLOCK_IRQ 0
#endif
#ifndef SINGLE_PIN_CAPACITIVE_SENSE_DEFAULT_SAMPLING
// How often the pin will get sampled by default
#define SINGLE_PIN_CAPACITIVE_SENSE_DEFAULT_SAMPLING 16
#endif
#ifndef SINGLE_PIN_CAPACITIVE_SENSE_TIMEOUT
// When the sampler gives up, it needs to be equal or lower than 256 and lower
// than 65535/sampling (if SPC_VAL uint16_t is used). Giving it value too low
// might disregard genuine presses
#define SINGLE_PIN_CAPACITIVE_SENSE_TIMEOUT 255
#endif
#ifndef SINGLE_PIN_CAPACITIVE_SENSE_STREAK_COUNT
// How many same smallestMeasurement have to be in the row to consider for new
// measurementOffset (and it will take 4 measurements before any trigger can be
// detected)
#define SINGLE_PIN_CAPACITIVE_SENSE_STREAK_COUNT 8
#endif
#ifndef SINGLE_PIN_CAPACITIVE_SENSE_DEBOUNCE_COUNT
// The default value how many iterations it takes consider the state as stable
#define SINGLE_PIN_CAPACITIVE_SENSE_DEBOUNCE_COUNT 10
#endif
#ifndef SPC_VAL
// Decide what type the cumulative value will have, if taking small measurements
// and using low sampling count then uint16_t might be used. It will try to detect
// if 16-bit unsigned int is enough, or 32-bit has to be used.
#if (16 * SINGLE_PIN_CAPACITIVE_SENSE_TIMEOUT * SINGLE_PIN_CAPACITIVE_SENSE_DEFAULT_SAMPLING) > UINT16_MAX
#define SPC_VAL uint32_t // It might not fit into 16-bit so use 32-bit
#else
#define SPC_VAL uint16_t // Worst case scenario should fit into the 16-bit
#endif
#endif
// The class implementation and declaration have are in the same header because it's a templated class
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
class SinglePinCapacitiveSense {
public:
SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>(uint8_t samples, uint16_t pressThreshold);
SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>(uint8_t samples);
SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>();
bool IsValidConfig(uint8_t arduinoPin); // Check if the hard-coded values match with the Arduino pin values
SPC_VAL SampleAllSamples(void); // Just do a measurement of all this->samples samples
bool IsPressed(void); // Do measurement and decided if the sensor was pressed or not
bool IsPressedDebounced(); // Using the SINGLE_PIN_CAPACITIVE_SENSE_DEBOUNCE_COUNT as default
bool IsPressedDebounced(uint8_t count); // Using specified counter
SPC_VAL GetLastMeasurementRaw(void); // Return the value as measured
SPC_VAL GetLastMeasurementCalibrated(void); // Return the measured value - the measurementOffset (primitive high-pass filtering)
bool GetDebouncedState(void); // Return the stable state after the sensor was debounced
void Calibrate(void); // To reset the measurementOffset (normally invoked from the constructor)
private:
uint8_t samples; // How many samples to make
uint16_t pressThreshold; // How much the measurement has to be above the smallestMeasurement to count as press
SPC_VAL lastMeasurement; // Hold value of the last measurement done
SPC_VAL measurementOffset; // Keep track what was the smallest measurement which was measured consistently for many measurements
SPC_VAL smallestMeasurement; // Keep track what was the smallest measurement done so far (to calculated the GetLastMeasurementCalibrated()
uint8_t smallestMeasurementStreak; // How many of last measurements in the row were same as the smallest measurement
bool debouncedState; // The stable state after the sensor was debounced
void ConstructorCommon(void); // Prepare the pin and fields to expected state
uint16_t SampleOnce(void); // Will measure the capacity once
void SampleCleanup(void); // Has be invoked after the measurement is finished
};
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::SinglePinCapacitiveSense(uint8_t samples, uint16_t pressThreshold) {
this->samples = samples;
this->pressThreshold = pressThreshold;
this->ConstructorCommon();
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::SinglePinCapacitiveSense(uint8_t samples) {
this->samples = samples;
this->pressThreshold = this->samples; // To consider a press: lastMeasurement >= measurementOffset + sample
this->ConstructorCommon();
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::SinglePinCapacitiveSense() {
this->samples = SINGLE_PIN_CAPACITIVE_SENSE_DEFAULT_SAMPLING;
this->pressThreshold = this->samples; // To consider a press: lastMeasurement >= measurementOffset + sample
this->ConstructorCommon();
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
void SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::ConstructorCommon(void) {
this->Calibrate();
this->debouncedState = false;
// Should be safe even if IRQ happened between these two lines
*((volatile uint8_t *)PINx_ADDR+2) &= ~(1 << PIN_BIT); // PORTx Output will be LOW (Input to High-Z)
*((volatile uint8_t *)PINx_ADDR+1) |= 1 << PIN_BIT; // DDRx Switch to output
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
void SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::Calibrate(void) {
this->smallestMeasurement = UINT16_MAX;
this->measurementOffset = UINT16_MAX;
this->smallestMeasurementStreak = 0;
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
uint16_t SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::SampleOnce(void) {
// 16-bit counter concatinated from two 8-bit counters
uint8_t minor = 0; // Minor is expected to be 0-15
uint8_t major = 0; // Major should be capped with SINGLE_PIN_CAPACITIVE_SENSE_TIMEOUT
#if SINGLE_PIN_CAPACITIVE_SENSE_BLOCK_IRQ == 1
noInterrupts();
#endif
// Should be safe even if IRQ happened between these two lines
*((volatile uint8_t *)PINx_ADDR+1) &= ~(1 << PIN_BIT); // DDRx Set direction to input
*((volatile uint8_t *)PINx_ADDR+2) |= (1 << PIN_BIT); // PORTx Enable pull-up
// Reserve 15 registers as buffer
uint8_t b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, b10, b11, b12, b13, b14;
// http://ww1.microchip.com/downloads/en/devicedoc/atmel-0856-avr-instruction-set-manual.pdf
// https://www.microchip.com/webdoc/AVRLibcReferenceManual/inline_asm_1gcc_asm.html
// https://www.microchip.com/webdoc/AVRLibcReferenceManual/inline_asm_1io_ops.html
// http://www.ethernut.de/en/documents/arm-inline-asm.html
// https://stackoverflow.com/questions/3898435
// Sample the input 16 times in row, control logic is spread out so it will
// not create big jitter stall of sampling after 16 samples are taken
// but spread out and smaller stalls.
// IN is inert to SREG and we can spread the control logic between sampling
asm (
"sample%=: \n\t"
"in %[reg0], %[addr] \n\t"
"in %[reg1], %[addr] \n\t"
"in %[reg2], %[addr] \n\t"
"in %[reg3], %[addr] \n\t"
"inc %[major] \n\t" // Increment the major counter
"in %[reg4], %[addr] \n\t"
"in %[reg5], %[addr] \n\t"
"in %[reg6], %[addr] \n\t"
"in %[reg7], %[addr] \n\t"
"cpi %[major], %[major_max] \n\t" // Compare major counter with SINGLE_PIN_CAPACITIVE_SENSE_TIMEOUT
"in %[reg8], %[addr] \n\t"
"in %[reg9], %[addr] \n\t"
"in %[reg10], %[addr] \n\t"
"in %[reg11], %[addr] \n\t"
"breq timeout%= \n\t" // Branch if equal (major == SINGLE_PIN_CAPACITIVE_SENSE_TIMEOUT)
"in %[reg12], %[addr] \n\t"
"in %[reg13], %[addr] \n\t"
"in %[reg14], %[addr] \n\t"
"sbis %[addr], %[bit] \n\t" // Skip if bit in I/O is set, no need to read the sample into a register
"rjmp sample%= \n\t" // After 16 samples the pin was not set yet, so continue sampling
// This whole loop can sample 16 samples in 21 clocks (jump included) :
// 16 x 1clk samples, 3 x 1clk count logic, 1 x 2clk repeat jump.
// Averaging 1.3 clocks per sample (upto 4080 samples when SINGLE_PIN_CAPACITIVE_SENSE_TIMEOUT is 255 )
// TODO: Theoretically here the IRQs would be safe to be enabled
// Go through all 15 registers and count how long they were not set
// The binary search was tempting, but buffer is too small and caused
// a lot of jumping. And at this point we are not in the hurry anyway.
// This is not critical part of the sampling and binary search might have
// introduced bugs, hard readability and not easy to scale (if more/or less
// registers will be added to the buffer)
"sbrs %[reg7], %[bit] \n\t" // Do a half point check to know what halve to test
"rjmp middle7tree%= \n\t"
"sbrs %[reg0], %[bit] \n\t"
"inc %[minor] \n\t"
"sbrs %[reg1], %[bit] \n\t"
"inc %[minor] \n\t"
"sbrs %[reg2], %[bit] \n\t"
"inc %[minor] \n\t"
"sbrs %[reg3], %[bit] \n\t"
"inc %[minor] \n\t"
"sbrs %[reg4], %[bit] \n\t"
"inc %[minor] \n\t"
"sbrs %[reg5], %[bit] \n\t"
"inc %[minor] \n\t"
"sbrs %[reg6], %[bit] \n\t"
"inc %[minor] \n\t"
"rjmp end%= \n\t" // Finished with the first halve
"middle7tree%=: \n\t" // Starting second halve
"subi %[minor], -8 \n\t" // Add 8 for all the registers we skipped
"sbrs %[reg8], %[bit] \n\t"
"inc %[minor] \n\t"
"sbrs %[reg9], %[bit] \n\t"
"inc %[minor] \n\t"
"sbrs %[reg10], %[bit] \n\t"
"inc %[minor] \n\t"
"sbrs %[reg11], %[bit] \n\t"
"inc %[minor] \n\t"
"sbrs %[reg12], %[bit] \n\t"
"inc %[minor] \n\t"
"sbrs %[reg13], %[bit] \n\t"
"inc %[minor] \n\t"
"sbrs %[reg14], %[bit] \n\t"
"inc %[minor] \n\t"
"rjmp end%= \n\t" // Finished counting
// Major counter timeouted, return 0
"timeout%=: \n\t"
"clr %[major] \n\t" // clear major => eor major,major
// Return our regular major + minor results
"end%=:"
: [reg0] "=r"(b0),
[reg1] "=r"(b1),
[reg2] "=r"(b2),
[reg3] "=r"(b3),
[reg4] "=r"(b4),
[reg5] "=r"(b5),
[reg6] "=r"(b6),
[reg7] "=r"(b7),
[reg8] "=r"(b8),
[reg9] "=r"(b9),
[reg10] "=r"(b10),
[reg11] "=r"(b11),
[reg12] "=r"(b12),
[reg13] "=r"(b13),
[reg14] "=r"(b14),
[major] "+d"(major), // Have to use 'd' because I want to use CPI which only works on higher 16 registers
[minor] "+r"(minor) // Need + read/write for minor counter, but 'r' is enough for INC instruction
: [addr] "I"(PINx_ADDR - __SFR_OFFSET), // Same effect as _SFR_IO_ADDR(PINx_ADDR), changing absolute address to IO address
[bit] "I"(PIN_BIT), // 0..63 immediate is enough for a bit position
[major_max] "M"(SINGLE_PIN_CAPACITIVE_SENSE_TIMEOUT) // Needed 0..255 immediate for this constant
);
#if SINGLE_PIN_CAPACITIVE_SENSE_BLOCK_IRQ == 1
interrupts();
#endif
this->SampleCleanup();
return major << 4 | minor; // Minor counter is 0-15 so the major has to shift only by 4 bits
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
void SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::SampleCleanup(void) {
#if SINGLE_PIN_CAPACITIVE_SENSE_BLOCK_IRQ == 1
interrupts(); // Enabling interrupts in case they were not already, depending on version/variation of SampleOnce, this might happen
#endif
// Pulling down the residual capacity by setting pin to output low
// and waiting a moment to make sure it's drained. Should be safe even if IRQ happened in the middle
*((volatile uint8_t *)PINx_ADDR+2) &= ~(1 << PIN_BIT); // PORTx Disable pull-up input (output will be LOW)
*((volatile uint8_t *)PINx_ADDR+1) |= (1 << PIN_BIT); // DDRx Switch from input to output
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
SPC_VAL SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::SampleAllSamples(void) {
this->lastMeasurement = 0;
for (uint8_t sample=0; sample < this->samples; sample++) {
// Sample multiple times before returining acumulated result
this->lastMeasurement += this->SampleOnce();
}
// Update the smallest measurement if the currently last measurement is smaller
// but ingore the 0/timeout measurements
if (this->lastMeasurement < this->smallestMeasurement && this->lastMeasurement != 0) {
this->smallestMeasurement = this->lastMeasurement;
}
// Count how many measurements in the row are same or smaller than the smallest measurement
if (this->lastMeasurement == this->smallestMeasurement) {
this->smallestMeasurementStreak++;
} else {
this->smallestMeasurementStreak = 0;
}
// If enough of them were consistently low, consider it as the new offset
if (this->smallestMeasurementStreak > SINGLE_PIN_CAPACITIVE_SENSE_STREAK_COUNT) {
this->smallestMeasurementStreak = 0;
this->measurementOffset = this->smallestMeasurement;
}
return this->lastMeasurement;
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
bool SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::IsPressed(void) {
this->SampleAllSamples();
if (this->measurementOffset == UINT16_MAX) {
// If the pin is still calibrating, do not trigger any presses
return false;
} else {
if (this->lastMeasurement >= (this->pressThreshold + this->measurementOffset)) {
return true;
} else {
return false;
}
}
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
bool SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::GetDebouncedState(void) {
return this->debouncedState;
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
bool SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::IsPressedDebounced(uint8_t count) {
static uint8_t currentCount = 0;
static bool oldState = false;
bool currentState = this->IsPressed();
if (oldState != currentState) {
currentCount = 0;
} else {
if (currentCount > count) {
this->debouncedState = currentState;
} else {
currentCount++;
}
}
oldState = currentState;
return this->debouncedState;
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
bool SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::IsPressedDebounced(void) {
return this->IsPressedDebounced(SINGLE_PIN_CAPACITIVE_SENSE_DEBOUNCE_COUNT);
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
SPC_VAL SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::GetLastMeasurementRaw(void) {
return this->lastMeasurement;
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
SPC_VAL SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::GetLastMeasurementCalibrated(void) {
if (this->lastMeasurement < this->measurementOffset) {
// If the measured value is below our expected minimim, then do not return
// negative value and just return no press. (return type is unsigned anyway)
return 0;
} else {
return this->lastMeasurement - this->measurementOffset;
}
}
template<uintptr_t PINx_ADDR, uint8_t PIN_BIT>
bool SinglePinCapacitiveSense<PINx_ADDR, PIN_BIT>::IsValidConfig(uint8_t arduinoPin) {
bool status = true;
// Check pin's port base address
volatile uint8_t* port = portInputRegister(digitalPinToPort(arduinoPin));
if ((uintptr_t)port != PINx_ADDR) {
Serial.print(" PINx_ADDR should be ");
Serial.print((uint16_t)(uintptr_t)port);
Serial.print(".");
status = false;
}
// Check pin's bit
if (digitalPinToBitMask(arduinoPin) != 1 << PIN_BIT) {
Serial.print(" PIN_BIT should be ");
Serial.print(15 - __builtin_clz(digitalPinToBitMask(arduinoPin)));
Serial.print(".");
status = false;
}
// Both address and mask passed
if (status) {
Serial.print(" OK");
}
Serial.println();
return status;
}
#endif