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.
Dependencies: BSP_DISCO_F429ZI GYRO_DISCO_F429ZI mbed
main.cpp
00001 #include "mbed.h" 00002 #include "GYRO_DISCO_F429ZI.h" 00003 00004 GYRO_DISCO_F429ZI gyro; 00005 00006 DigitalOut led1(LED1); 00007 00008 int main() 00009 { 00010 float GyroBuffer[3]; 00011 00012 printf("Gyroscope started\n"); 00013 00014 while(1) { 00015 // Read Gyroscope values 00016 gyro.GetXYZ(GyroBuffer); 00017 // Display values 00018 printf("X = %f\n", GyroBuffer[0]); 00019 printf("Y = %f\n", GyroBuffer[1]); 00020 printf("Z = %f\n", GyroBuffer[2]); 00021 printf("\033[3A"); // Moves cursor up x lines (x value is between [ and A) 00022 led1 = !led1; 00023 wait(1); 00024 } 00025 }
Generated on Tue Jul 12 2022 16:46:40 by
1.7.2