Added initial interfaces and some sensors implementing them

Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
Mihai Stefanescu
2018-06-12 18:46:49 +03:00
committed by Mihai Tudor Panu
parent 6bf21a23e7
commit f035470822
102 changed files with 1183 additions and 182 deletions

View File

@@ -62,7 +62,7 @@ getLightSensor()
int
main()
{
upm::ILightSensor* lightSensor = getLightSensor();
/*upm::ILightSensor* lightSensor = getLightSensor();
if (lightSensor == NULL) {
std::cout << "Light sensor not detected" << std::endl;
return 1;
@@ -77,7 +77,7 @@ main()
}
upm_delay(1);
}
delete lightSensor;
delete lightSensor;*/
return 0;
}