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: C12832_lcd LM75B MMA7660 WiflyInterface libxively mbed-rtos mbed
Fork of IOT-Project-LED-ControlTelnet by
app_board_io.cpp
00001 #include "app_board_io.h" 00002 #include "C12832_lcd.h" 00003 00004 extern C12832_LCD lcd; 00005 00006 extern "C" void lcd_printf( const char* fmt, ... ) 00007 { 00008 char buffer[ 64 ]; 00009 00010 va_list ap; 00011 va_start( ap, fmt ); 00012 vsnprintf( buffer, 64, fmt, ap ); 00013 va_end( ap ); 00014 00015 lcd.cls(); 00016 lcd.locate( 0, 3 ); 00017 lcd.printf( buffer ); 00018 //wait( 1.0 ); 00019 }
Generated on Wed Jul 13 2022 23:14:01 by
