upm  0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
Public Member Functions | Protected Attributes

TTP223 Touch Detector sensor library. More...

Detailed Description

This touch sensor detects when a finger is near the metallic pad by a change in capacitance. It can replace a more traditional push button. The touch sensor can still function when placed under a non-metallic surface like glass or plastic.

// Create the TTP223 touch sensor object using GPIO pin 0
upm::TTP223* touch = new upm::TTP223(0);
// Check whether or not a finger is near the touch sensor and
// print accordingly, waiting one second between readings
while( 1 ) {
if ( touch->isPressed() ) {
std::cout << touch->name() << " is pressed" << std::endl;
} else {
std::cout << touch->name() << " is not pressed" << std::endl;
}
sleep(1);
}
// Delete the touch sensor object
delete touch;

Public Member Functions

 TTP223 (unsigned int pin)
 
 ~TTP223 ()
 
std::string name ()
 
int value ()
 
bool isPressed ()
 

Protected Attributes

std::string m_name
 name of this sensor
 
mraa_gpio_context m_gpio
 GPIO pin.
 

Constructor & Destructor Documentation

TTP223 ( unsigned int  pin)

TTP223 touch sensor constructor

Parameters
pinGPIO pin where sensor is connected
~TTP223 ( )

TTP223 destructor

Member Function Documentation

std::string name ( )

Return name of this sensor

Returns
the name of this sensor
int value ( )

Get value from GPIO pin

Returns
the value from the GPIO pin

Here is the caller graph for this function:

bool isPressed ( )

Returns whether or not the touch sensor is being touched

Returns
true if the touch sensor is being touched; false otherwise

Here is the call graph for this function:


The documentation for this class was generated from the following files: