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.
Dependents: TD1_exo1 TD1_exe1_suite TP3_exo1 TP3_exo2 ... more
Diff: lib_LCD_i2c_SPTLYI.cpp
- Revision:
- 9:0acc7e2330c6
- Parent:
- 8:71a280580031
- Child:
- 10:246c6f2dc45b
--- a/lib_LCD_i2c_SPTLYI.cpp Mon Jan 30 12:30:45 2017 +0000
+++ b/lib_LCD_i2c_SPTLYI.cpp Mon Jan 30 13:11:56 2017 +0000
@@ -13,19 +13,20 @@
* #include "mbed.h"
* #include "lib_LCD_i2c_SPTLYI.h"
*
-* LCD_I2C LCD(p28, p27, p26, 0x7C); //sda, scl, rst, only 4 slave address 0x7C 0x7D 0x7E 0x7F
-*
+* 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);
-* }
-* }
+* while(1)
+* {
+* for(int i = 0; i < 9999; i++)
+* {
+* LCD.clear();
+* LCD.print(i);
+* wait(0.25);
+* }
+* }
* }
* @endcode
* @file lib_LCD_i2c_SPTLYI.cpp