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

C++ API for the RFR359F based Grove Distance Interrupter. More...

Detailed Description

UPM module for the Grove Distance Interrupter. The sensitivity can be adjusted with the potentiometer on the sensor module. It has a range of approximately 4 inches and a fast response time.

rfr359f.jpg
// Instantiate an RFR359F digital pin D2
// This was tested on the Grove IR Distance Interrupter
upm::RFR359F* dInterruptor = new upm::RFR359F(2);
// The range appears to be about 4 inches, depending on adjustment
while (shouldRun)
{
if (dInterruptor->objectDetected())
cout << "Object detected" << endl;
else
cout << "Area is clear" << endl;
usleep(100000); // 100ms
}

Public Member Functions

 RFR359F (int pin)
 
 ~RFR359F ()
 
bool objectDetected ()
 

Constructor & Destructor Documentation

RFR359F ( int  pin)

Grove Distance Interrupter constructor

Parameters
pindigital pin to use
~RFR359F ( )

RFR359F Destructor

Member Function Documentation

bool objectDetected ( )

Get the status of the pin, true means object detected

Returns
true if the sensor detected an object

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