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.
main.cpp
00001 #include "mbed.h" 00002 #include "MobileLCD.h" 00003 00004 MobileLCD lcd(p5, p6, p7, p8, p9); 00005 00006 int main() { 00007 lcd.background(0x0000FF); 00008 lcd.cls(); 00009 lcd.fill(2, 51, 128, 10, 0x00FF00); 00010 lcd.fill(50, 1, 10, 128, 0xFF0000); 00011 lcd.locate(0,3); 00012 lcd.printf("Hello World!"); 00013 for(int i=0; i<130; i++) { 00014 lcd.pixel(i, 80 + sin((float)i / 5.0)*10, 0x000000); 00015 } 00016 }
Generated on Sat Jul 16 2022 10:13:01 by
1.7.2