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

C++ API for Grove button. More...

Detailed Description

Very basic UPM module for Grove button

// Create the button object using GPIO pin 0
// Read the input and print, waiting one second between readings
while( 1 ) {
std::cout << button->name() << " value is " << button->value() << std::endl;
sleep(1);
}
// Delete the button object
delete button;

Public Member Functions

 GroveButton (unsigned int pin)
 
 ~GroveButton ()
 
std::string name ()
 
int value ()
 
- Public Member Functions inherited from Grove
std::string name ()
 

Additional Inherited Members

- Protected Attributes inherited from Grove
std::string m_name
 

Constructor & Destructor Documentation

GroveButton ( unsigned int  pin)

Grove button constructor

Parameters
gpiopin to use

Grove button destructor

Member Function Documentation

std::string name ( )

Get name of sensor

Returns
the name of this sensor
int value ( )

Get value from GPIO pin

Returns
the value from the GPIO pin
Inheritance diagram for GroveButton:
Inheritance graph
[legend]
Collaboration diagram for GroveButton:
Collaboration graph
[legend]

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