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: lib_LCD_i2c_SPTLYI mbed
main.cpp
00001 #include "mbed.h" 00002 #include "lib_LCD_i2c_SPTLYI.h" 00003 00004 LCD_I2C LCD; 00005 //LCD_I2C LCD(p28, p27, p26, 0x7C); //sda, scl, rst, only 4 slave address 0x7C 0x7D 0x7E 0x7F 00006 00007 int main() 00008 { 00009 while(1) 00010 { 00011 for(int i = 0; i < 9999; i++) 00012 { 00013 LCD.clear(); 00014 LCD.print(i); 00015 wait(0.25); 00016 } 00017 } 00018 }
Generated on Thu Jul 21 2022 21:47:09 by
1.7.2