upm  0.5.1
Sensor/Actuator repository for libmraa (v0.9.1)
 All Data Structures Files Functions Variables Enumerations Enumerator Macros Groups Pages
Public Member Functions
GroveButton Class Reference

API for the Grove Button. More...

Detailed Description

Basic UPM module for the 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;
grovebutton.jpg

Public Member Functions

 GroveButton (unsigned int pin)
 
 ~GroveButton ()
 
std::string name ()
 
int value ()
 
void installISR (mraa::Edge level, void(*isr)(void *), void *arg)
 
void uninstallISR ()
 
- 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 ( )

Gets the name of the sensor

Returns
Name of this sensor
int value ( )

Gets the value from the GPIO pin

Returns
Value from the GPIO pin
void installISR ( mraa::Edge  level,
void(*)(void *)  isr,
void *  arg 
)

Installs an interrupt service routine (ISR) to be called when the button is activated or deactivated.

Parameters
fptrPointer to a function to be called on interrupt
argPointer to an object to be supplied as an argument to the ISR.

Here is the call graph for this function:

void uninstallISR ( )

Uninstalls the previously installed ISR

Here is the caller graph for this function:

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: