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.
init_state.cpp
00001 #include "system_states.hpp" 00002 #include "display_manager.hpp" 00003 00004 void InitState::enterState() { 00005 DisplayManager *display = system()->display(); 00006 display->clear(); 00007 display->hideCursor(); 00008 display->writeStatus("DTMF-Kit v1.0"); 00009 display->writeText(__DATE__ " / " __TIME__); 00010 wait(2); 00011 } 00012 00013 void InitState::exitState() { 00014 DisplayManager *display = system()->display(); 00015 display->clear(); 00016 display->hideCursor(); 00017 }
Generated on Wed Jul 13 2022 16:23:43 by
 1.7.2