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

Dependencies:   TextLCD SDFileSystem1

Revision:
2:d40e91c72c0b
Parent:
1:17cdefd2840d
--- 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() 
 {