I2C LCD

Dependencies:   TextLCD mbed

Fork of I2C-LCD by Oscar de Jesus Vasquez

IIC-LCDisplay

here you can see my hardware: /media/uploads/schlaumaier54/dscn2996.jpg Detail with the IIC-Hardware: /media/uploads/schlaumaier54/dscn2994.jpg

And here a PDF dokument:

/media/uploads/schlaumaier54/iic_lcdisplays_mit_quellcode.pdf

Neumaier Feb. 2018

Files at this revision

API Documentation at this revision

Comitter:
schlaumaier54
Date:
Thu Feb 08 15:14:11 2018 +0000
Parent:
0:376d7a150177
Commit message:
LCD Displays with I2C (IIC)-bus and IC PCF8574. It is possible for running different formats: 16x2; 16x4 20x2; 40x2 LCD-Controller HD44...

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 376d7a150177 -r b51c02181e1c main.cpp
--- a/main.cpp	Wed Dec 03 03:48:48 2014 +0000
+++ b/main.cpp	Thu Feb 08 15:14:11 2018 +0000
@@ -1,20 +1,41 @@
+
+/*
+Programm für eine IIC LC-Display mit verschiedenen Formaten wie 16x2 16x4 20x4
+Dieses Programm funktioniert mit einen
+Adapter mit aufgelötetem Poti
+nicht mit Poti zum auf die Seite klappen
+G.Neumaier Feb 2018 getestet
+*/
+
 #include "mbed.h"
 #include "TextLCD.h"
-//Incluye resistencias de 2.2K en los pines de i2c a 3.3
- 
-
 
+float mess0;
 // I2C Communication
-I2C i2c_lcd(p28,p27); // SDA, SCL
- 
-TextLCD_I2C lcd(&i2c_lcd, 0x4E, TextLCD::LCD16x2, TextLCD::HD44780); // I2C bus, PCF8574 Slaveaddress, LCD Type, Device Type 
+I2C i2c_lcd(PB_9,PB_8); // SDA, SCL  Nucleo F103RB Board
+TextLCD_I2C lcd(&i2c_lcd, 0x4E, TextLCD::LCD20x4, TextLCD::HD44780); // I2C bus, PCF8574 Slaveaddress, LCD Type, Device Type
+//LCD Type possible for example: LCD16x2, LCD20x4
+//!!Adress here is 0x4E normal adress 0x27, but thats the same, you have to shift left
+//  Adress-shift:    0100 1110     <-   0010 0111 (0x27)
+
+AnalogIn ana_A0(A0);      //same as Pin PA_0
 
-
-int main() 
+int main()
 {
-lcd.setMode(TextLCD::DispOn); //DispOff, DispOn
-lcd.setBacklight(TextLCD::LightOff);//LightOff, LightOn
-lcd.setCursor(TextLCD::CurOff_BlkOff);//CurOff_BlkOff, CurOn_BlkOff, CurOff_BlkOn, CurOn_BlkOn
-lcd.printf("Oscar de Jesus \n Vasquez");
- 
- }
\ No newline at end of file
+    lcd.setMode(TextLCD::DispOn); //DispOff, DispOn
+    lcd.setBacklight(TextLCD::LightOff);//LightOff, LightOn ->!LightOff->on!
+    lcd.setCursor(TextLCD::CurOff_BlkOff);//CurOff_BlkOff, CurOn_BlkOff, CurOff_BlkOn, CurOn_BlkOn
+
+//example for a display with 16x4 signs, a 16x2 display show you only two rows(Zeile) 
+    while(1) {
+        lcd.printf("Gerhard Neumaier\n" );   //   \n will produce newcolumn
+        lcd.printf("  Offenburg \n" );       //   \n will produce newcolumn
+        // lcd.printf("Number: %d-\n", 1265);   // dezimal number
+        lcd.setAddress(2, 3);//column(Spalte), row (Zeile) beginning by0
+        mess0 = ana_A0.read(); // Converts and read the analog input value (value from 0.0 to 1.0)
+        mess0 = mess0*3.3;
+        lcd.printf("Volt:%.3f\n", mess0);  //float number with 3signs behind comma
+        //lcd.putc('-'); //one sign
+        wait_ms(300);
+    }
+}
\ No newline at end of file