2010-07-09 01:44:54 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2010-08-19 19:21:01 +02:00
|
|
|
#include <string.h>
|
2010-07-09 01:44:54 +02:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <cutils/log.h>
|
|
|
|
|
|
|
|
#include <hardware/sensors.h>
|
|
|
|
|
|
|
|
char const* getSensorName(int type) {
|
|
|
|
switch(type) {
|
|
|
|
case SENSOR_TYPE_ACCELEROMETER:
|
|
|
|
return "Acc";
|
|
|
|
case SENSOR_TYPE_MAGNETIC_FIELD:
|
|
|
|
return "Mag";
|
|
|
|
case SENSOR_TYPE_ORIENTATION:
|
|
|
|
return "Ori";
|
|
|
|
case SENSOR_TYPE_PROXIMITY:
|
|
|
|
return "Prx";
|
|
|
|
case SENSOR_TYPE_TEMPERATURE:
|
|
|
|
return "Tmp";
|
|
|
|
case SENSOR_TYPE_LIGHT:
|
|
|
|
return "Lux";
|
|
|
|
}
|
|
|
|
return "ukn";
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
struct sensors_poll_device_t* device;
|
|
|
|
struct sensors_module_t* module;
|
|
|
|
|
|
|
|
err = hw_get_module(SENSORS_HARDWARE_MODULE_ID, (hw_module_t const**)&module);
|
|
|
|
if (err != 0) {
|
|
|
|
printf("hw_get_module() failed (%s)\n", strerror(-err));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sensor_t const* list;
|
|
|
|
int count = module->get_sensors_list(module, &list);
|
|
|
|
for (int i=0 ; i<count ; i++) {
|
|
|
|
printf("%s\n"
|
|
|
|
"\tvendor: %s\n"
|
|
|
|
"\tversion: %d\n"
|
|
|
|
"\thandle: %d\n"
|
|
|
|
"\ttype: %d\n"
|
|
|
|
"\tmaxRange: %f\n"
|
|
|
|
"\tresolution: %f\n"
|
|
|
|
"\tpower: %f mA\n",
|
|
|
|
list[i].name,
|
|
|
|
list[i].vendor,
|
|
|
|
list[i].version,
|
|
|
|
list[i].handle,
|
|
|
|
list[i].type,
|
|
|
|
list[i].maxRange,
|
|
|
|
list[i].resolution,
|
|
|
|
list[i].power);
|
|
|
|
}
|
|
|
|
|
2010-07-16 03:29:03 +02:00
|
|
|
sensors_event_t buffer[16];
|
2010-07-09 01:44:54 +02:00
|
|
|
|
|
|
|
err = sensors_open(&module->common, &device);
|
|
|
|
if (err != 0) {
|
|
|
|
printf("sensors_open() failed (%s)\n", strerror(-err));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-07-21 03:01:19 +02:00
|
|
|
for (int i=0 ; i<count ; i++) {
|
|
|
|
err = device->activate(device, list[i].handle, 0);
|
|
|
|
if (err != 0) {
|
|
|
|
printf("deactivate() for '%s'failed (%s)\n",
|
|
|
|
list[i].name, strerror(-err));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-09 01:44:54 +02:00
|
|
|
for (int i=0 ; i<count ; i++) {
|
|
|
|
err = device->activate(device, list[i].handle, 1);
|
|
|
|
if (err != 0) {
|
|
|
|
printf("activate() for '%s'failed (%s)\n",
|
|
|
|
list[i].name, strerror(-err));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
device->setDelay(device, list[i].handle, 10000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
int n = device->poll(device, buffer, 16);
|
|
|
|
if (n < 0) {
|
|
|
|
printf("poll() failed (%s)\n", strerror(-err));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("read %d events:\n", n);
|
|
|
|
for (int i=0 ; i<n ; i++) {
|
2010-07-16 03:29:03 +02:00
|
|
|
const sensors_event_t& data = buffer[i];
|
|
|
|
|
|
|
|
if (data.version != sizeof(sensors_event_t)) {
|
|
|
|
printf("incorrect event version (version=%d, expected=%d",
|
|
|
|
data.version, sizeof(sensors_event_t));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-07-21 03:01:19 +02:00
|
|
|
switch(data.type) {
|
2010-07-09 01:44:54 +02:00
|
|
|
case SENSOR_TYPE_ACCELEROMETER:
|
|
|
|
printf("sensor=%s, time=%lld, value=<%5.1f,%5.1f,%5.1f>\n",
|
2010-07-21 03:01:19 +02:00
|
|
|
getSensorName(data.type),
|
2010-07-16 03:29:03 +02:00
|
|
|
data.timestamp,
|
2010-07-09 01:44:54 +02:00
|
|
|
data.acceleration.x,
|
|
|
|
data.acceleration.y,
|
|
|
|
data.acceleration.z);
|
|
|
|
break;
|
|
|
|
case SENSOR_TYPE_MAGNETIC_FIELD:
|
|
|
|
printf("sensor=%s, time=%lld, value=<%5.1f,%5.1f,%5.1f>\n",
|
2010-07-21 03:01:19 +02:00
|
|
|
getSensorName(data.type),
|
2010-07-16 03:29:03 +02:00
|
|
|
data.timestamp,
|
2010-07-09 01:44:54 +02:00
|
|
|
data.magnetic.x,
|
|
|
|
data.magnetic.y,
|
|
|
|
data.magnetic.z);
|
|
|
|
break;
|
|
|
|
case SENSOR_TYPE_ORIENTATION:
|
|
|
|
printf("sensor=%s, time=%lld, value=<%5.1f,%5.1f,%5.1f>\n",
|
2010-07-21 03:01:19 +02:00
|
|
|
getSensorName(data.type),
|
2010-07-16 03:29:03 +02:00
|
|
|
data.timestamp,
|
2010-07-09 01:44:54 +02:00
|
|
|
data.orientation.azimuth,
|
|
|
|
data.orientation.pitch,
|
|
|
|
data.orientation.roll);
|
|
|
|
break;
|
|
|
|
case SENSOR_TYPE_PROXIMITY:
|
|
|
|
printf("sensor=%s, time=%lld, value=%f\n",
|
2010-07-21 03:01:19 +02:00
|
|
|
getSensorName(data.type),
|
2010-07-16 03:29:03 +02:00
|
|
|
data.timestamp,
|
2010-07-09 01:44:54 +02:00
|
|
|
data.distance);
|
|
|
|
break;
|
|
|
|
case SENSOR_TYPE_TEMPERATURE:
|
|
|
|
printf("sensor=%s, time=%lld, value=%f\n",
|
2010-07-21 03:01:19 +02:00
|
|
|
getSensorName(data.type),
|
2010-07-16 03:29:03 +02:00
|
|
|
data.timestamp,
|
2010-07-09 01:44:54 +02:00
|
|
|
data.temperature);
|
|
|
|
break;
|
|
|
|
case SENSOR_TYPE_LIGHT:
|
|
|
|
printf("sensor=%s, time=%lld, value=%f\n",
|
2010-07-21 03:01:19 +02:00
|
|
|
getSensorName(data.type),
|
2010-07-16 03:29:03 +02:00
|
|
|
data.timestamp,
|
2010-07-09 01:44:54 +02:00
|
|
|
data.light);
|
|
|
|
break;
|
|
|
|
default:
|
2010-07-21 03:01:19 +02:00
|
|
|
printf("sensor=%d, time=%lld, value=<%f,%f,%f>\n",
|
|
|
|
data.type,
|
2010-07-16 03:29:03 +02:00
|
|
|
data.timestamp,
|
2010-07-09 01:44:54 +02:00
|
|
|
data.acceleration.x,
|
|
|
|
data.acceleration.y,
|
|
|
|
data.acceleration.z);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} while (1); // fix that
|
|
|
|
|
|
|
|
|
|
|
|
for (int i=0 ; i<count ; i++) {
|
|
|
|
err = device->activate(device, list[i].handle, 0);
|
|
|
|
if (err != 0) {
|
|
|
|
printf("deactivate() for '%s'failed (%s)\n",
|
|
|
|
list[i].name, strerror(-err));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
err = sensors_close(device);
|
|
|
|
if (err != 0) {
|
|
|
|
printf("sensors_close() failed (%s)\n", strerror(-err));
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|