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:
2:f496f85ce6f2
Parent:
1:18cd1c4212c3
Child:
3:414f98234c94
diff -r 18cd1c4212c3 -r f496f85ce6f2 AQM1602.hpp
--- a/AQM1602.hpp	Tue Jun 09 09:29:34 2015 +0000
+++ b/AQM1602.hpp	Mon Jun 15 05:26:21 2015 +0000
@@ -12,7 +12,7 @@
 //      I2C2   PB_3(D3)           PB_10(D6)
 //      I2C3   PB_4(D5) or PC_9   PA_8(D7)
 //
-//  2014/06/09, Copyright (c) 2015 MIKAMI, Naoki
+//  2014/06/15, Copyright (c) 2015 MIKAMI, Naoki
 //-------------------------------------------------------
 
 #ifndef AQM1602I2C_HPP
@@ -51,7 +51,7 @@
         void WriteString(const string str) { WriteString(str.c_str()); }
         
         // Write string from specified position
-        void WriteStringXY(const char str[], uint8_t x, uint8_t);
+        void WriteStringXY(const char str[], uint8_t x, uint8_t y);
         void WriteStringXY(const string str, uint8_t x, uint8_t y)
         { WriteStringXY(str.c_str(), x, y); }