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: DigitDisplay mbed
DisplayManager.h
00001 #ifndef DISPLAY_MANAGER_H 00002 #define DISPLAY_MANAGER_H 00003 00004 #include "mbed.h" 00005 #include "DigitDisplay.h" 00006 00007 class DisplayManager { 00008 public: 00009 DisplayManager(PinName clk, PinName dio); 00010 ~DisplayManager(); 00011 00012 void showMessage(char* message, int len); 00013 void clear(); 00014 00015 private: 00016 uint8_t convert(uint8_t value); 00017 DigitDisplay* display; 00018 }; 00019 00020 #endif
Generated on Wed Jul 13 2022 00:59:41 by
1.7.2