sensor_stop()

Stop streaming data from a sensor

Synopsis:

#include <sensor/sensor_api.h>
sensor_error_t sensor_stop(sensor_handle_t handle,
                           struct timespec *time)

Arguments:

handle
The handle that's returned from calling the sensor_open() function.
time
Optional absolute time at which to stop streaming; if set to NULL, will stop right away.

Library:

libsensor

Description:

After streaming has been stopped, no more data will be received from the sensor.

Returns:

SENSOR_EOK when the function successfully completes, otherwise another sensor_error_t value that provides the reason that the call failed.