mirror of
https://github.com/eclipse/upm.git
synced 2025-07-03 02:11:15 +03:00
C examples: move mraa_init() calls out of C examples and into C drivers.
Signed-off-by: Jon Trulson <jtrulson@ics.com>
This commit is contained in:
@ -8,16 +8,9 @@
|
||||
#include "tsl2561.h"
|
||||
|
||||
#include "upm_utilities.h"
|
||||
#include "mraa.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
if (mraa_init() != MRAA_SUCCESS)
|
||||
{
|
||||
perror("Failed to initialize mraa\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
tsl2561_context dev = tsl2561_init(0, TSL2561_Address, GAIN_0X, INTEGRATION_TIME1_101MS);
|
||||
float abc = 0;
|
||||
if(tsl2561_get_lux(dev, &abc) != UPM_SUCCESS){
|
||||
|
Reference in New Issue
Block a user