Mangue Baja LCD example (default and I2C) for stm32.

Dependencies:   TextLCD SDFileSystem1

Files at this revision

API Documentation at this revision

Comitter:
einsteingustavo
Date:
Wed Sep 21 22:52:09 2022 +0000
Parent:
1:17cdefd2840d
Commit message:
2022 Commit

Changed in this revision

SDFileSystem1.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 17cdefd2840d -r d40e91c72c0b SDFileSystem1.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SDFileSystem1.lib	Wed Sep 21 22:52:09 2022 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/danilloaguiar/code/SDFileSystem1/#8f71c6827f24
diff -r 17cdefd2840d -r d40e91c72c0b main.cpp
--- a/main.cpp	Fri Aug 02 00:30:08 2019 +0000
+++ b/main.cpp	Wed Sep 21 22:52:09 2022 +0000
@@ -4,13 +4,14 @@
 DigitalOut myled(PC_13);
 
 
-/*//I2C Communication
+//I2C Communication
 I2C i2c_lcd(PB_9, PB_8); // SDA, SCL
 TextLCD_I2C lcd(&i2c_lcd, 0x4E, TextLCD::LCD16x2, TextLCD::HD44780); // I2C bus, PCF8574 Slaveaddress, LCD Type, Device Type 
-*/
 
+/*
 //Default LCD Communication
 TextLCD lcd(PA_5, PA_6, PA_7, PA_8, PA_9, PA_10); // rs, e, d4, d5, d6, d7
+*/
 
 int main() 
 {