Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
MPU9250/sample.txt
- Committer:
- taknokolat
- Date:
- 2019-02-06
- Revision:
- 0:eae101ae93c0
File content as of revision 0:eae101ae93c0:
//This is a sample code to get pitch, roll, yaw in degree from MPU9250;
/*
#include "mbed.h"
#include "MPU9250.h"
Serial pc(SERIAL_TX,SERIAL_RX);
MPU9250 mpu9250(pinSDA,pinSCL,&pc);
int main(void){
float degrees[3];
mpu9250.Initialize();
while(1){
mpu9250.sensingPostureAngle(degrees);
Serial.printf("pitch:%f, roll:%f, yaw,%f\n",degrees[0],degrees[1],degrees[2]);
}
}
*/