ttp223: Grove touch sensor and examples

Added support for the TTP223 touch detector-based sensors
(like the Grove touch sensor) with corresponding examples
in C++, JavaScript, and Python.

Signed-off-by: Sarah Knepper <sarah.knepper@intel.com>
This commit is contained in:
sknepper
2015-01-07 14:06:07 -08:00
committed by Sarah Knepper
parent 811b33936b
commit df4706e3b1
9 changed files with 299 additions and 0 deletions

10
src/ttp223/pyupm_ttp223.i Normal file
View File

@@ -0,0 +1,10 @@
%module pyupm_ttp223
%include "../upm.i"
%feature("autodoc", "3");
%include "ttp223.h"
%{
#include "ttp223.h"
%}