summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2013-04-17 13:11:10 +0100
committerStefan Schmidt <s.schmidt@samsung.com>2013-04-18 15:50:40 +0100
commit1316de8fd3afbe067ffdfc31900c76640b252e12 (patch)
tree8db189913f9c7e0ad88d68d40e73046700f807a3
parent0d078be2078445e621311b17a2056825996846d9 (diff)
downloadefl-1316de8fd3afbe067ffdfc31900c76640b252e12.tar.gz
eeze/sensor: Add temperature sensor to my testing code
-rw-r--r--src/bin/eeze/eeze_sensor_test.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/bin/eeze/eeze_sensor_test.c b/src/bin/eeze/eeze_sensor_test.c
index 56eae9f850..dcf6991e87 100644
--- a/src/bin/eeze/eeze_sensor_test.c
+++ b/src/bin/eeze/eeze_sensor_test.c
@@ -141,7 +141,19 @@ main(void)
else
printf("Could not find a light sensor!\n");
- printf("=== Test snyc read update: ===\n");
+ sens = eeze_sensor_new(EEZE_SENSOR_TYPE_TEMPERATURE);
+ if (sens)
+ {
+ if (!eeze_sensor_x_get(sens, &x)) printf("fail get x\n");
+ if (!eeze_sensor_accuracy_get(sens, &acc)) printf("fail get accuracy\n");
+ if (!eeze_sensor_timestamp_get(sens, &timestamp)) printf("fail get timestamp\n");
+ printf("Temperature output: accuracy %i, temperature %f °C at time: %f\n", acc, x, timestamp);
+ eeze_sensor_free(sens);
+ }
+ else
+ printf("Could not find a temperature sensor!\n");
+
+ printf("=== Test sync read update: ===\n");
/* Get updated values on a sensor. This readout is synchronous. This way we
* can force a read out of the physical sensor instead of using the cached
* values. Depending on the hardware this can take a long time. If you don't have special