naoto tanaka / TextLCD_HelloWorld

Dependencies:   TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

Files at this revision

API Documentation at this revision

Comitter:
NT32
Date:
Sun May 24 08:11:04 2015 +0000
Parent:
2:ad0b044d0a10
Child:
4:7ad4177061bb
Commit message:
i2c ??? LCD ?? ???

Changed in this revision

TextLCD.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
mbed.bld Show diff for this revision Revisions of this file
mbed.lib Show annotated file Show diff for this revision Revisions of this file
--- a/TextLCD.lib	Sat Dec 04 11:31:07 2010 +0000
+++ b/TextLCD.lib	Sun May 24 08:11:04 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/simon/code/TextLCD/#e4cb7ddee0d3
+http://mbed.org/users/simon/code/TextLCD/#308d188a2d3a
--- a/main.cpp	Sat Dec 04 11:31:07 2010 +0000
+++ b/main.cpp	Sun May 24 08:11:04 2015 +0000
@@ -1,10 +1,76 @@
-// Hello World! for the TextLCD
-
 #include "mbed.h"
 #include "TextLCD.h"
 
-TextLCD lcd(p15, p16, p17, p18, p19, p20); // rs, e, d4-d7
+I2CSlave i2cslave(dp5, dp27);
+
+DigitalOut led1(LED1);
+DigitalOut led2(LED2);
+
+TextLCD lcd(dp17, dp18, dp25, dp10, dp26, dp28, TextLCD::LCD20x4); // rs, e, d4-d7
+
 
 int main() {
-    lcd.printf("Hello World!\n");
-}
+    char str[20];
+        float SystemVoltage, AverageCellVoltage, MaxCellVoltage, MinimumCellVoltage,
+    SystemCurrent, Motor1Current, Motor2Current, Motor3Current,
+    Remain, PowerConsumption, IntegralPowerConsumption, IntegralCurrent;
+    
+    int MaxCellNumber, MinimumCellNumber;
+    int32_t cellvol[12], mincell, maxcell;
+    float realcellvol;  /* real number of cell voltage */
+
+    char rbuf[64];
+    char i2cbuf[32] = {0};
+
+    SystemVoltage = 120.5;      //%4.1f システム電圧
+    AverageCellVoltage = 3.123; //%4.3f 平均セル電圧
+    MaxCellVoltage = 1.234;     //%4.3f 
+    MinimumCellVoltage = 0.123; //%4.3f
+    MaxCellNumber = 5;          //%1d
+    MinimumCellNumber = 3;      //%1d
+    SystemCurrent = 138.1235;   //%3.0f
+    Motor1Current = 11.1245;    //%3.0f
+    Motor2Current = 22.1245;    //%3.0f
+    Motor3Current = 33.1245;    //%3.0f
+    Remain = 85.435;            //%3.0f
+    PowerConsumption = 12.54;   //%4.2f
+    IntegralPowerConsumption = 1.54; //%3.2f
+    IntegralCurrent = 43.21;    //%4.2f
+    
+    lcd.cls();
+    lcd.locate(0, 0);
+    lcd.locate(0, 1);
+    lcd.printf("%4.3fV", AverageCellVoltage);
+    lcd.locate(0, 2);
+    lcd.printf("%4.3fV%d", MaxCellVoltage, MaxCellNumber);
+    lcd.locate(0, 3);
+    lcd.printf("%4.3fV%d", MinimumCellVoltage, MinimumCellNumber);
+    lcd.locate(8, 0);
+    lcd.printf("%3.0fA", SystemCurrent);
+    lcd.locate(8, 1);
+    lcd.printf("%3.0fA", Motor1Current);
+    lcd.locate(8, 2);
+    lcd.printf("%3.0fA", Motor2Current);
+    lcd.locate(8, 3);
+    lcd.printf("%3.0fA", Motor3Current);
+    lcd.locate(16, 0);
+    lcd.printf("%3.0fA", Remain);
+    lcd.locate(13, 1);
+    lcd.printf("%4.2fkW", PowerConsumption);
+    lcd.locate(13, 2);
+    lcd.printf("%3.2fkWh", IntegralPowerConsumption);
+    lcd.locate(13, 3);
+    lcd.printf("%4.2fAh", IntegralCurrent);
+    
+    i2cslave.address(0x33);
+    i2cslave.frequency(100000);
+    
+    while(1){
+        if(i2cslave.receive() != I2CSlave::NoData){
+            i2cslave.read(i2cbuf, 7);
+            lcd.locate(0, 0);
+            led1 != led1;
+            lcd.printf("%s", i2cbuf);
+        }
+    }
+}
\ No newline at end of file
--- a/mbed.bld	Sat Dec 04 11:31:07 2010 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/e2ac27c8e93e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.lib	Sun May 24 08:11:04 2015 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/#dbbf35b96557