Water: Removed grove dependency

* Renamed all files from grovewater to water
    * Replaced all instances of grovewater with water
    * Updated all CMake files

Signed-off-by: Sisinty Sasmita Patra <sisinty.s.patra@intel.com>
This commit is contained in:
Sisinty Sasmita Patra
2016-09-13 15:03:26 -07:00
committed by Noel Eck
parent e9b0deaf75
commit ddab71e896
16 changed files with 54 additions and 54 deletions

View File

@ -147,7 +147,7 @@ add_example (ehr)
add_example (ta12200)
add_example (grovelinefinder)
add_example (vdiv)
add_example (grovewater)
add_example (water)
add_example (guvas12d)
add_example (mpr121)
add_example (yg1006)

View File

@ -25,7 +25,7 @@
#include <unistd.h>
#include <iostream>
#include <signal.h>
#include "grovewater.hpp"
#include "water.hpp"
using namespace std;
@ -43,8 +43,8 @@ int main ()
signal(SIGINT, sig_handler);
//! [Interesting]
// Instantiate a Grove Water sensor on digital pin D2
upm::GroveWater* water = new upm::GroveWater(2);
// Instantiate a Water sensor on digital pin D2
upm::Water* water = new upm::Water(2);
while (shouldRun)
{