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:
10:49e6a8f8fe4f
Parent:
9:8894909e18d7
Child:
12:b7c761c179c9
--- a/ACM1602NI.hpp	Thu Apr 16 08:49:04 2015 +0000
+++ b/ACM1602NI.hpp	Mon Jul 06 08:15:02 2015 +0000
@@ -11,7 +11,7 @@
 //      I2C2   PB_3(D3)           PB_10(D6)
 //      I2C3   PB_4(D5) or PC_9   PA_8(D7)
 //
-//  2015/04/16, Copyright (c) 2015 MIKAMI, Naoki
+//  2015/07/06, Copyright (c) 2015 MIKAMI, Naoki
 //-------------------------------------------------------
 //  I2C_TypeDef: See stm32f401xe.h on following URL
 //  http://mbed.org/users/mbed_official/code/mbed/file/
@@ -37,7 +37,7 @@
                   bool blink = false);      // blink:   off
 
         // Return false if LCD is not connected
-        bool GetOk() { return connected_; }
+        bool IsConnected() { return connected_; }
 
         // All clear
         bool Clear();