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.
Fork of lab1 by
main.cpp
00001 #include "mbed.h" 00002 #include "C12832.h" 00003 00004 00005 C12832 lcd(p5, p7, p6, p8, p11); 00006 00007 int main() 00008 { 00009 int j=0; 00010 lcd.cls(); 00011 lcd.locate(0,3); 00012 lcd.printf("mbed application board!"); 00013 00014 while(true) { // this is the third thread 00015 lcd.locate(0,15); 00016 lcd.printf("Counting : %d",j); 00017 j++; 00018 wait(1.0); 00019 } 00020 }
Generated on Tue Jul 12 2022 12:10:49 by
