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

C++ API for the Grove Line Finder sensor. More...

Detailed Description

UPM module for the Grove Line Finder sensor. It outputs a digital signal indicating whether it is detecting black on a white background, or white on a black background.

// Instantiate a Grove Line Finder sensor on digital pin D2
// check every second for the presence of white detection
while (shouldRun)
{
bool val = finder->whiteDetected();
if (val)
cout << "White detected." << endl;
else
cout << "Black detected." << endl;
sleep(1);
}

Public Member Functions

 GroveLineFinder (int pin)
 
 ~GroveLineFinder ()
 
bool whiteDetected ()
 
bool blackDetected ()
 

Constructor & Destructor Documentation

GroveLineFinder ( int  pin)

Grove Line Finder digital sensor constructor

Parameters
pindigital pin to use

GroveLineFinder Destructor

Member Function Documentation

bool whiteDetected ( )

Determine whether white has been detected

Returns
True if white is being detected
bool blackDetected ( )

Determine whether black has been detected

Returns
True if black is being detected

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