An I2C text LCD library for Displaytronic ACM1602NI-FLW-FBW-M01 MOD by Zak

Dependents:   mbed_XBus_Test

Fork of ACM1602NI by Takuo WATANABE

Files at this revision

API Documentation at this revision

Comitter:
sawa
Date:
Wed Nov 05 06:33:04 2014 +0000
Parent:
8:661827681a12
Commit message:
Add one line to show cursor when called locate function.

Changed in this revision

ACM1602NI.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/ACM1602NI.cpp	Sat Feb 15 13:48:55 2014 +0000
+++ b/ACM1602NI.cpp	Wed Nov 05 06:33:04 2014 +0000
@@ -72,6 +72,7 @@
 void ACM1602NI::locate(int column, int row) {
     _column = column;
     _row = row;
+    writeCommand(address(column, row));
 }
 
 int ACM1602NI::_putc(int value) {