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

C++ API for the BISS0001 Motion Sensor. More...

Detailed Description

UPM module for the BISS0001 Motion Sensor

// Instantiate a Grove Motion sensor on GPIO pin D2
upm::BISS0001* motion = new upm::BISS0001(2);
while (shouldRun)
{
bool val = motion->value();
if (val)
cout << "Detecting moving object";
else
cout << "No moving objects detected";
cout << endl;
sleep(1);
}

Public Member Functions

 BISS0001 (int pin)
 
 ~BISS0001 ()
 
bool value ()
 

Constructor & Destructor Documentation

BISS0001 ( int  pin)

BISS0001 motion sensor constructor

Parameters
pindigital pin to use
~BISS0001 ( )

BISS0001 Destructor

Member Function Documentation

bool value ( )

Get the motion value from the sensor

Returns
the motion reading

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