TTP229 16 Channel Digital Capacitive Switch Touch

Hi guys. I just bought Arduino TTP229 16 Channel Digital Capacitive Switch Touch and cant find neather librarie nor test code. can any one help?

Were you able to find anything about this? I am trying to find a way to connect only I2C connections only.

They have sold dozens of these on eBay, me included, with vague references to Arduino. I cannot find any specific info as to hookup or library or example for arduino. There is a datasheet for the ic and a schematic here... TTP229 Capacitive Touch Sensor Module (16 channels) | Open ImpulseOpen Impulse but I don't see how it connects to the arduino and theres no library besides. Anyone get all 16 keys working?

Here is the datasheet:

Here is my simple Example to read the Module using SDD and SCL (this is not I2C!).

Reading_TP229_Capacitive_TouchKeyboard.ino (882 Bytes)

Also check out this post: Wiring and using the 16 channel digital touch sensor keyboard [TTP229-BSF]? - #2 by Stumpy842 - General Electronics - Arduino Forum

Uses external interrupt so no need to constantly poll the device.

try the sketch on this page....

domoticx.com/arduino-modules-keypad-4x4-aanraakgevoelig-ttp229/

Apparently, the "DV" line is the "Data Valid" line and it is an output which I suppose could be used to generate an interrupt on the Arduino if you connect it to pin D2 or D3 (the interrupt input lines). I have a TTP226 8 Channel version of the board which I'll try to get going today. With the 16 input version you will likely have to use the 6 analog input lines as well as 10 of the digital input lines to handle the 16 switch output lines. This is in addition to D2 (or D3) as the interrupt input line (tied to the DV output of the capacitive keypad). Since it requires so many I/O pins which is considered a valuable resource, might need to use a couple 8-bit PISO shift registers to latch the output of the keypad and shift it all into a single digital input pin on the Arduino. I suppose you could also do a I2C interface, but I have not done one of them before. Going with a pair of PISO shift registers which likely will require a couple control lines as well would likely result in an interface more like the SPI (like as what you'd end up with interfacing a 1602 LCD display using a 74LS595). Seems easier to me than going I2C.