-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIQSTouchpad.cpp
536 lines (451 loc) · 16.1 KB
/
IQSTouchpad.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
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
#include "IQSTouchpad.h"
#include <Wire.h>
#include "I2CHelpers.h"
#include "IQSRegisters.h"
#include <vector>
#include "Finger.h"
#include <queue>
#include <functional>
#include "IQSQueue.h"
#include <Arduino.h>
std::vector<IQSTouchpad*> IQSTouchpad::_touchpads = std::vector<IQSTouchpad*>();
IQSTouchpad::IQSTouchpad(int PIN_RDY, int PIN_RST, int X_resolution, int Y_resolution, bool switch_xy_axis, bool flip_y, bool flip_x, int maxFingers, byte i2cAddress)
{
this->_PIN_RDY = PIN_RDY;
this->_PIN_RST = PIN_RST;
this->_i2cAddress = i2cAddress;
this->_initialized = false;
// queue settings writes
this->setResolution(X_resolution, Y_resolution);
this->setXYConfig0(true, switch_xy_axis, flip_y, flip_x);
this->setMaxFingers(maxFingers);
// set default read address
//this->_setDefaultReadAddress(IQSRegisters::SingleFingerGestures);
this->queueWrite(0x0675, 2, 0x000D);
}
void IQSTouchpad::queueRead(IQSRead read)
{
this->_readQueue.push(read);
}
void IQSTouchpad::queueRead(IQSRegister* reg, std::function<void(int, byte)> callback)
{
// define a lambda function that will take the i2cAddress, registerAddress, read value, and return code and pass only the read value and return code to the callback function
auto callbackWrapper = [callback](int i2cAddress, int registerAddress, int readValue, byte returnCode)
{
callback(readValue, returnCode);
};
// create a read object and add it to the queue
IQSRead newRead = {
this->_i2cAddress,
reg,
callbackWrapper
};
this->_readQueue.push(newRead);
}
void IQSTouchpad::queueRead(int registerAddress, int numBytes, std::function<void(int, int, byte)> callback, int dataType)
{
this->queueRead(registerAddress, numBytes, dataType, callback);
}
void IQSTouchpad::queueRead(int registerAddress, int numBytes, int dataType, std::function<void(int,int,byte)> callback)
{
// define a lambda function that will take the i2cAddress, registerAddress, read value, and return code and pass only the read value and return code to the callback function
auto callbackWrapper = [callback](int i2cAddress, int registerAddress, int readValue, byte returnCode)
{
callback(registerAddress, readValue, returnCode);
};
// create an IQSRegister object
IQSRegister* reg = new IQSRegister(registerAddress, numBytes, "", "", dataType);
// create a read object and add it to the queue
IQSRead newRead = {
this->_i2cAddress,
reg,
callbackWrapper
};
this->_readQueue.push(newRead);
}
void IQSTouchpad::queueWrite(IQSWrite write)
{
// refuse to write to the default read address register
/*
if (write.reg->getAddress() == IQSRegisters::DefaultReadAddress.getAddress())
{
// error code 7: refused
write.callback(this->_i2cAddress, write.reg->getAddress(), 7);
return;
}*/
this->_writeQueue.push(write);
}
void IQSTouchpad::queueWrite(IQSRegister* reg, int value)
{
// create a blank callback function
auto callbackWrapper = [](int i2cAddress, int registerAddress, byte returnCode)
{
};
// create a write object and add it to the queue
IQSWrite newWrite = {
this->_i2cAddress,
reg,
value,
callbackWrapper
};
this->_writeQueue.push(newWrite);
}
void IQSTouchpad::queueWrite(IQSRegister* reg, int value, std::function<void(int, byte)> callback)
{
// create a wrapper callback function
auto callbackWrapper = [callback](int i2cAddress, int registerAddress, byte returnCode)
{
callback(registerAddress, returnCode);
};
// create a write object and add it to the queue
IQSWrite newWrite = {
this->_i2cAddress,
reg,
value,
callbackWrapper
};
this->_writeQueue.push(newWrite);
}
void IQSTouchpad::queueWrite(int registerAddress, int numBytes, int value)
{
// create an IQSRegister object
IQSRegister* reg = new IQSRegister(registerAddress, numBytes, 'b', 0);
// create a blank callback function
auto callbackWrapper = [](int i2cAddress, int registerAddress, byte returnCode)
{
};
// create a write object and add it to the queue
IQSWrite newWrite = {
this->_i2cAddress,
reg,
value,
callbackWrapper
};
this->_writeQueue.push(newWrite);
}
void IQSTouchpad::queueWrite(int registerAddress, int numBytes, int value, std::function<void(int,byte)> callback)
{
// create an IQSRegister object
IQSRegister* reg = new IQSRegister(registerAddress, numBytes, 'b', 0);
// create a wrapper callback function
auto callbackWrapper = [callback](int i2cAddress, int registerAddress, byte returnCode)
{
callback(registerAddress, returnCode);
};
// create a write object and add it to the queue
IQSWrite newWrite = {
this->_i2cAddress,
reg,
value,
callbackWrapper
};
this->_writeQueue.push(newWrite);
}
void IQSTouchpad::_setDefaultReadAddress(IQSRegister* reg)
{
this->queueWrite(IQSRegisters::DefaultReadAddress, reg->getAddress());
}
void IQSTouchpad::setResolution(int x_res, int y_res)
{
auto callback_x = [this, x_res](int registerAddress, byte returnCode)
{
if (returnCode == 0)
{
this->_X_resolution = x_res;
}
};
auto callback_y = [this, y_res](int registerAddress, byte returnCode)
{
if (returnCode == 0)
{
this->_Y_resolution = y_res;
}
};
//this->queueWrite(IQSRegisters::XResolution, x_res, callback_x);
//this->queueWrite(IQSRegisters::YResolution, y_res, callback_y);
this->queueWrite(0x066E, 2, x_res, callback_x);
this->queueWrite(0x0670, 2, y_res, callback_y);
}
void IQSTouchpad::setXYConfig0(byte value)
{
//this->queueWrite(IQSRegisters::XYConfig0, value);
this->queueWrite(0x0669, 1, value);
}
void IQSTouchpad::setMaxFingers(int max_fingers)
{
auto callback = [this, max_fingers](int registerAddress, byte returnCode)
{
if (returnCode == 0)
{
this->_maxFingers = max_fingers;
}
};
//this->queueWrite(IQSRegisters::MaxMultiTouches, max_fingers, callback);
this->queueWrite(0x066A, 1, max_fingers, callback);
}
void IQSTouchpad::setXYConfig0(bool PALM_REJECT, bool SWITCH_XY_AXIS, bool FLIP_Y, bool FLIP_X)
{
byte value = 0;
value |= PALM_REJECT << 3;
value |= SWITCH_XY_AXIS << 2;
value |= FLIP_Y << 1;
value |= FLIP_X << 0;
this->setXYConfig0(value);
}
void IQSTouchpad::setReportRate(int report_rate_milliseconds, TouchpadMode mode)
{
// modes:
//
// Active Mode
// Idle Touch Mode
// Idle Mode
// LP1 Mode
// LP2 Mode
switch (mode)
{
case TouchpadMode::ACTIVE:
//this->queueWrite(IQSRegisters::ActiveModeReportRate, report_rate_milliseconds);
this->queueWrite(0x057A, 2, report_rate_milliseconds);
break;
case TouchpadMode::IDLE_TOUCH:
//this->queueWrite(IQSRegisters::IdleTouchModeReportRate, report_rate_milliseconds);
this->queueWrite(0x057C, 2, report_rate_milliseconds);
break;
case TouchpadMode::IDLE:
//this->queueWrite(IQSRegisters::IdleModeReportRate, report_rate_milliseconds);
this->queueWrite(0x057E, 2, report_rate_milliseconds);
break;
case TouchpadMode::LP1:
//this->queueWrite(IQSRegisters::LP1ModeReportRate, report_rate_milliseconds);
this->queueWrite(0x0580, 2, report_rate_milliseconds);
break;
case TouchpadMode::LP2:
//this->queueWrite(IQSRegisters::LP2ModeReportRate, report_rate_milliseconds);
this->queueWrite(0x0582, 2, report_rate_milliseconds);
break;
default:
break;
//throw std::invalid_argument("Invalid mode");
}
}
Finger IQSTouchpad::getFinger(int finger_index)
{
if (finger_index >= 5)
{
// invalid finger index, throw error
//throw std::invalid_argument("Invalid finger index");
return Finger(-1);
}
// get the finger
return this->_fingers[finger_index];
}
namespace IQSInterrupt
{
#ifdef ESP32
// ESP32 needs IRAM_ATTR
void IRAM_ATTR IQSInterruptHandler()
#endif
#ifdef NRF52_SERIES
void IQSInterruptHandler()
#endif
{
// loop through all the touchpads and find the one that triggered the interrupt
for (int i = 0; i < IQSTouchpad::_touchpads.size(); i++)
{
IQSTouchpad *touchpad = IQSTouchpad::_touchpads[i];
if (digitalRead(touchpad->PIN_RDY))
{
if (!touchpad->_ready)
{
touchpad->_ready = true;
}
}
}
}
}
void IQSTouchpad::reset()
{
// Reset the touchpad
digitalWrite(this->_PIN_RST, LOW);
delay(200);
digitalWrite(this->_PIN_RST, HIGH);
delay(200);
}
void IQSTouchpad::_begin()
{
// add this touchpad to the list of touchpads
IQSTouchpad::_touchpads.push_back(this);
pinMode(this->_PIN_RDY, INPUT);
pinMode(this->_PIN_RST, OUTPUT);
// reset the touchpad
this->reset();
// attach interrupt to RDY pin
attachInterrupt(digitalPinToInterrupt(this->_PIN_RDY), IQSInterrupt::IQSInterruptHandler, CHANGE);
}
void IQSTouchpad::begin()
{
Wire.begin();
this->_begin();
}
void IQSTouchpad::begin(uint32_t frequency)
{
Wire.begin();
Wire.setClock(frequency);
this->_begin();
}
void IQSTouchpad::endCommunicationWindow()
{
// end communication window
byte error = I2CHelpers::endCommunication(this->_i2cAddress);
}
void IQSTouchpad::update()
{
if (this->_ready)
{
if (this->_initialized)
{
// update all touch data
// this must be the first thing in the communication window, since
// it relies on using the default read address for faster communication
// mandatory reads
// the number of mandatory reads should be as small as possible
// since more reads increases the minimum achievable cycle time
/*
* Read the following registers:
* - Single touch gestures
* - Multi touch gestures
* - System info 0
* - System info 1
* - Number of fingers
*
* - Relative X (only valid if number of fingers = 1)
* - Relative Y (only valid if number of fingers = 1)
*
* - Then the data for each finger 0, 1, 2, 3, 4 (if present):
* - Absolute X
* - Absolute Y
* - Touch Strength
* - Touch Area
* - (Relative X is calculated from the previous Absolute X)
* - (Relative Y is calculated from the previous Absolute Y)
*
*/
// moreover, the touchpad must be initialized (the write queue
// has been cleared at least once) so that the default read address
// has been set
this->_readTouchData();
// check the queue for any pending reads, and apply all of them
while (!this->_readQueue.empty())
{
IQSRead read = this->_readQueue.front();
// read the value from the register
byte error;
int value = read.reg->read(read.i2cAddress, error);
read.callback(read.i2cAddress, read.reg->getAddress(), value, error);
// remove the read from the queue
this->_readQueue.pop();
}
}
// check the queue for any pending writes, and apply all of them
while (!this->_writeQueue.empty())
{
IQSWrite write = this->_writeQueue.front();
// write the value to the register
byte error = write.reg->write(write.i2cAddress, write.valueToWrite);
write.callback(write.i2cAddress, write.reg->getAddress(), error);
// remove the write from the queue
this->_writeQueue.pop();
}
// the touchpad must clear the write queue at least once
// before it is initialized
if (!this->_initialized)
{
// set the initialized flag
this->_initialized = true;
// set updated flag
this->_wasUpdated = false;
}
else
{
// set updated flag
this->_wasUpdated = true;
}
// end communication window
this->endCommunicationWindow();
// reset ready flag
this->_ready = false;
}
else
{
// set updated flag
this->_wasUpdated = false;
}
}
void IQSTouchpad::_readTouchData()
{
// perform a current address (default address) read
//
// if the touchpad is not initialized, this will fail
//
// this starts at address 0x000D and reads up to 44 bytes
// the number of bytes to read depends on the max finger setting
// 9 bytes for gestures and info, 7 bytes per finger
int bytes_to_read = 9 + 7 * this->_maxFingers;
byte error = I2CHelpers::readFromCurrentAddress(this->_i2cAddress, bytes_to_read, this->_finger_data_buffer);
if (error != 0) { return; }
int buffer_index = 0;
// the next byte is the single finger gestures
byte single_finger_gestures = this->_finger_data_buffer[buffer_index++];
this->_TAP = I2CHelpers::getBit(single_finger_gestures, 0);
this->_PRESS_AND_HOLD = I2CHelpers::getBit(single_finger_gestures, 1);
this->_SWIPE_X_POS = I2CHelpers::getBit(single_finger_gestures, 2);
this->_SWIPE_X_NEG = I2CHelpers::getBit(single_finger_gestures, 3);
this->_SWIPE_Y_POS = I2CHelpers::getBit(single_finger_gestures, 4);
this->_SWIPE_Y_NEG = I2CHelpers::getBit(single_finger_gestures, 5);
// the next byte is the multi finger gestures
byte multi_finger_gestures = this->_finger_data_buffer[buffer_index++];
this->_TWO_FINGER_TAP = I2CHelpers::getBit(multi_finger_gestures, 0);
this->_SCROLL = I2CHelpers::getBit(multi_finger_gestures, 1);
this->_ZOOM = I2CHelpers::getBit(multi_finger_gestures, 2);
// the next two bytes are system info
byte system_info_0 = this->_finger_data_buffer[buffer_index++]; // unused
byte system_info_1 = this->_finger_data_buffer[buffer_index++];
this->_TP_MOVEMENT = I2CHelpers::getBit(system_info_1, 0);
this->_PALM_DETECT = I2CHelpers::getBit(system_info_1, 1);
this->_TOO_MANY_FINGERS = I2CHelpers::getBit(system_info_1, 2);
this->_RR_MISSED = I2CHelpers::getBit(system_info_1, 3);
this->_SNAP_TOGGLE = I2CHelpers::getBit(system_info_1, 4);
this->_SWITCH_STATE = I2CHelpers::getBit(system_info_1, 5);
// the next byte is the number of fingers
this->_numFingers = this->_finger_data_buffer[buffer_index++];
// if the number of fingers is 0 or there are too many, we are done
if (this->_numFingers == 0 || this->_TOO_MANY_FINGERS)
{
// update all fingers to be inactive
for (int i = 0; i < 5; i++)
{
this->_fingers[i].update(false, 0, 0, 0, 0);
}
return;
}
// the next 4 bytes are relative X and Y for finger 1
// since we calculate this from the previous absolute X and Y,
// we don't need to read it
buffer_index += 4;
// the final chunk of the data is 7 bytes for each finger,
// 2 each for absolute X and Y, 2 for touch strength, and one for touch area
// update the data for each finger
for (int i = 0; i < this->_numFingers; i++)
{
int x = (this->_finger_data_buffer[buffer_index++] << 8) | this->_finger_data_buffer[buffer_index++];
int y = (this->_finger_data_buffer[buffer_index++] << 8) | this->_finger_data_buffer[buffer_index++];
int strength = (this->_finger_data_buffer[buffer_index++] << 8) | this->_finger_data_buffer[buffer_index++];
int area = this->_finger_data_buffer[buffer_index++];
this->_fingers[i].update(area > 0, x, y, strength, area);
}
// update all remaining fingers to be inactive
for (int i = this->_numFingers; i < 5; i++)
{
this->_fingers[i].update(false, 0, 0, 0, 0);
}
}