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: AdaFruit_RGBLCDShield MCP23017 mbed RTclock
Fork of MCP_test by
TitleModule.h
00001 #ifndef __TITLEMODULE_H__ 00002 #define __TITLEMODULE_H__ 00003 00004 #include "module.h" 00005 #include "RTclock.h" 00006 00007 class TitleModule 00008 : public Module 00009 { 00010 public: 00011 TitleModule 00012 ( 00013 Serial & in_cDisplay, 00014 RTclock & in_cRTclock 00015 ); 00016 virtual ~TitleModule(); 00017 00018 virtual bool canRefresh() { return true; } 00019 virtual void show(bool in_bRefresh); 00020 00021 protected: 00022 RTclock & m_cRTclock; 00023 tm m_sLastTM; 00024 }; 00025 00026 #endif /* __TITLEMODULE_H__ */
Generated on Thu Jul 14 2022 00:55:23 by
1.7.2
