upm
0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
|
C++ API for the RPR220 based Grove IR Reflective Sensor. More...
UPM module for the Grove IR Reflective Sensor. The sensitivity can be adjusted with the potentiometer on the sensor module. It has a range of approximately 15mm, and a fast response time.
It detects high contrast dark areas on a light background.
This module allows the user to determine the current status (black detected or not). Additionally, if desired, an Interrupt Service Routine (ISR) can be installed that will be called when black is detected. Either method can be used, depending on your use case.
Public Member Functions | |
RPR220 (int pin) | |
~RPR220 () | |
bool | blackDetected () |
void | installISR (void(*isr)(void *), void *arg) |
void | uninstallISR () |
bool blackDetected | ( | ) |
Get the status of the pin, true means black detected
void installISR | ( | void(*)(void *) | isr, |
void * | arg | ||
) |
Install an Interrupt Service Routine (ISR) to be called when black is detected
fptr | function pointer to function to be called on interrupt |
arg | pointer to an object that will be supplied as an arguement to the ISR. |
void uninstallISR | ( | ) |
Uninstall the previously installed Interrupt Service Routine (ISR)