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 "SerialGraphicLCD.h" 00003 00004 SerialGraphicLCD lcd(p26, p25); 00005 00006 int main() { 00007 lcd.baud(115200); 00008 while (1) { 00009 lcd.clear(); 00010 lcd.rect(3, 3, 20, 20); 00011 lcd.printf("Hello World!"); 00012 lcd.pixel(14, 35, true); 00013 lcd.pixel(16, 36, true); 00014 lcd.pixel(18, 37, true); 00015 lcd.pos(4, 1); 00016 lcd.printf("Hi"); 00017 lcd.circle(50, 20, 20, true); 00018 lcd.posXY(50, 20); 00019 lcd.printf("Howdy"); 00020 lcd.line(0, 0, 25, 25, true); 00021 wait(2); 00022 } 00023 } 00024
Generated on Sat Jul 30 2022 01:16:35 by
 1.7.2
 1.7.2