Class library for LCD character display ACM1602NI using I2C on Nucleo. Nucleo 用 I2C 接続の LCD キャラクタ・ディスプレー ACM1602Ni 用のクラス・ライブラリ.

Dependents:   UIT2_VariableFIR_LPFHPF UIT2_VariableFIR_LPF UIT2_InputSW_LCD ADDA_Prototype_PollingSW ... more

Revision:
2:0936ba74019a
Parent:
1:7c6b2df4e60b
Child:
5:b4f73f5851fb
--- a/ACM1602NI.cpp	Sat Nov 08 09:28:45 2014 +0000
+++ b/ACM1602NI.cpp	Thu Nov 13 04:49:38 2014 +0000
@@ -1,7 +1,7 @@
 //-------------------------------------------------------
 //  Class for LCD, ACM1602Ni
 //
-//  2014/10/14, Copyright (c) 2014 MIKAMI, Naoki
+//  2014/11/13, Copyright (c) 2014 MIKAMI, Naoki
 //-------------------------------------------------------
 
 #include "ACM1602NI.hpp"
@@ -43,7 +43,7 @@
         return ok;
     }
 
-    // Write string from specified position
+    // Write string
     void Acm1602Ni::WriteString(const char str[])
     {
         for (int n=0; n<16; n++)
@@ -116,3 +116,4 @@
     }
 }
 
+