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
Diff: main.cpp
- Revision:
- 0:78e51956ce26
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Jun 06 13:42:45 2017 +0000
@@ -0,0 +1,18 @@
+#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);
+ }
+ }
+}
\ No newline at end of file