I2C 接続の LCD AQM1602XA-RN-GBW 用のライブラリ. Library for LCD 1602XA-RN-GBW connected using I2C interface.

Dependents:   UIT2_MovingAv_Intr UIT2_VariableFIR UIT2_VowelSynthesizer UIT2_ALE_LeakyLMS ... more

Revision:
9:74a845df6e7a
Parent:
8:854c244a7863
Child:
10:6e6c0f24e81f
--- a/AQM1602.cpp	Thu Jan 14 05:55:06 2016 +0000
+++ b/AQM1602.cpp	Fri Apr 01 04:26:30 2016 +0000
@@ -2,7 +2,7 @@
 //  Class for LCD, AQM1602XA-RN-GBW
 //      Do not use mbed Rev.109, using Nucleo-F401/441
 //
-//  2016/01/14, Copyright (c) 2015 MIKAMI, Naoki
+//  2016/04/01, Copyright (c) 2016 MIKAMI, Naoki
 //-------------------------------------------------------
 
 #include "AQM1602.hpp"
@@ -38,12 +38,12 @@
 
     // Write string from specified position
     void Aqm1602::WriteStringXY(const char str[],
-                                 uint8_t x, uint8_t y)
+                                uint8_t x, uint8_t y)
     {
         SetXY(x, y);
         WriteString(str);
     }
-    
+
     // Clear of specified line
     void Aqm1602::ClearLine(uint8_t line)
     {