sakura.io Evalution board's example.

Dependencies:   AQM0802A BME280 MPU9250_SPI SakuraIO gps mbed

Fork of SakuraIO_Evaluation_Board_Standard by SAKURA Internet

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers sensors.h Source File

sensors.h

00001 typedef struct {
00002     float temperature;
00003     float pressure;
00004     float humidity;
00005 } BME280Data;
00006 
00007 typedef struct {
00008     float temperature;
00009     float accelerometer[3];
00010     float gyroscope[3];
00011     float magnetometer[3];
00012 } MPU9250Data;
00013 
00014 typedef struct {
00015     BME280Data bme280;
00016     MPU9250Data mpu9250;
00017 } SensorData;