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
- Committer:
- YSI
- Date:
- 2017-06-06
- Revision:
- 0:78e51956ce26
File content as of revision 0:78e51956ce26:
#include "mbed.h"
#include "lib_LCD_i2c_SPTLYI.h"
LCD_I2C LCD;
//LCD_I2C LCD(p28, p27, p26, 0x7C); //sda, scl, rst, only 4 slave address 0x7C 0x7D 0x7E 0x7F
int main()
{
while(1)
{
for(int i = 0; i < 9999; i++)
{
LCD.clear();
LCD.print(i);
wait(0.25);
}
}
}