Sensor Box version 090715 17:06
Dependencies: MMA8451Q mbed nRF24L01P
Revision 2:3779f28a6bf0, committed 2015-07-09
- Comitter:
- eleim
- Date:
- Thu Jul 09 19:03:22 2015 +0000
- Parent:
- 1:00312af3c20e
- Child:
- 3:391141bdd69a
- Commit message:
- 090715 20:03;
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Thu Jul 09 17:16:39 2015 +0000
+++ b/main.cpp Thu Jul 09 19:03:22 2015 +0000
@@ -44,7 +44,14 @@
temp_data.pop_front();
pir_data.pop_front();
printf("Light reading: %f\n\r", light);
- printf("Vector elem: %f\n\r", light_data.front());
+ printf("Light list element : %f\n\r", light_data.back());
+
+ printf("Temperature reading: %f\n\r", temp);
+ printf("Temperature list element : %f\n\r", temp_data.back());
+
+ printf("Temperature reading: %f\n\r", light);
+ printf("Pir reading: %f\n\r", pir_data.back());
+
}