sakura.io Evalution board's example.

Dependencies:   AQM0802A BME280 MPU9250_SPI SakuraIO gps mbed

Fork of SakuraIO_Evaluation_Board_Standard by SAKURA Internet

sakura.io Evalution board's sample program. Collecting the onboard sensors(GPS, 9axis motion sensor, Environment sensor), send to sakura.io service.

Revision:
8:e92264bc120e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sensors.h	Mon Jul 30 13:20:37 2018 +0900
@@ -0,0 +1,17 @@
+typedef struct {
+    float temperature;
+    float pressure;
+    float humidity;
+} BME280Data;
+
+typedef struct {
+    float temperature;
+    float accelerometer[3];
+    float gyroscope[3];
+    float magnetometer[3];
+} MPU9250Data;
+
+typedef struct {
+    BME280Data bme280;
+    MPU9250Data mpu9250;
+} SensorData;