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.
main.cpp
00001 #include "mbed.h" 00002 #include "imu.h" 00003 00004 DigitalOut mbled1(LED1); 00005 Serial pc(USBTX, USBRX); 00006 00007 IMU imu; 00008 00009 int main() 00010 { 00011 pc.baud(115200); 00012 wait(2); 00013 imu.zeroGyroZ(); 00014 imu.startPolling(); 00015 00016 while(1) { 00017 wait(0.05); 00018 pc.printf("%.2f\n", imu.getDegZ()); 00019 } 00020 }
Generated on Tue Jul 26 2022 07:09:54 by
