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.
Homepage
- include "mbed.h"
- include "TI_MPU6050.h"
Example¶
include the mbed library with this snippet
TI_MPU6050 mpu6050;
DigitalOut led1(LED1);
int main() {
mpu6050.setSleepEnabled(false);
while(1) {
if (mpu6050.isHorizontal()) {
led1 = 1;
} else {
led1 = 0;
}
int verticalAngle = mpu6050.getVerticalAngle();
printf("verticalAngle is %d\n\r", verticalAngle);
}
}