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

C++ API for the Grove Water Sensor. More...

Detailed Description

UPM module for the Grove Water Sensor

// Instantiate a Grove Water sensor on digital pin D2
while (shouldRun)
{
bool val = water->isWet();
if (val)
cout << "Sensor is wet." << endl;
else
cout << "Sensor is dry." << endl;
sleep(1);
}

Public Member Functions

 GroveWater (int pin)
 
 ~GroveWater ()
 
bool isWet ()
 

Constructor & Destructor Documentation

GroveWater ( int  pin)

Grove digital water sensor constructor

Parameters
pindigital pin to use
~GroveWater ( )

GroveWater Destructor

Member Function Documentation

bool isWet ( )

Get the water (wet/not wet) value from the sensor

Returns
True if the sensor is wet, false otherwise

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