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: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
led.h
00001 #ifndef LED_H 00002 #define LED_H 00003 00004 #include "LCD_DISCO_F429ZI.h" 00005 00006 enum LedDirection {LEFT, RIGHT}; 00007 00008 class Led { 00009 00010 private: 00011 LCD_DISCO_F429ZI lcd; 00012 char ucServoPos; 00013 void Step (enum LedDirection Direction); 00014 void On(unsigned char ucLedIndeks); 00015 00016 public: 00017 Led( void ); 00018 void StepLeft(void); 00019 void StepRight(void); 00020 }; 00021 00022 #endif
Generated on Mon Aug 1 2022 00:15:39 by
