2016-09-12 15:25:45 -07:00
|
|
|
//Modified: Abhishek Malik <abhishek.malik@intel.com>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "moisture.h"
|
|
|
|
|
2016-09-19 15:45:22 -07:00
|
|
|
#include "upm_utilities.h"
|
|
|
|
|
2016-09-12 15:25:45 -07:00
|
|
|
int main()
|
|
|
|
{
|
2016-09-19 15:45:22 -07:00
|
|
|
moisture_context dev = moisture_init(14);
|
|
|
|
int val;
|
|
|
|
while(1){
|
|
|
|
if(moisture_get_moisture(dev, &val) != UPM_SUCCESS){
|
|
|
|
printf("Failed to get any values from the sensor\n");
|
|
|
|
}
|
|
|
|
printf("Moisture Value: %d\n", val);
|
|
|
|
upm_delay(1);
|
|
|
|
}
|
|
|
|
moisture_close(dev);
|
2016-09-12 15:25:45 -07:00
|
|
|
|
2016-09-19 15:45:22 -07:00
|
|
|
return 0;
|
|
|
|
}
|