Library for LCD ACM1602NI connected using I2C interface on Nucleo F401/411. Nucleo F401/411RE で使える I2C 接続の LCD ACM1602NI 用のライブラリ.

Dependents:   ACM1602NI_NucleoF4_Demo ACM1602NI_NucleoF4_Demo

Files at this revision

API Documentation at this revision

Comitter:
CQpub0Mikami
Date:
Sun Dec 14 08:19:21 2014 +0000
Parent:
2:56a2f5e674e4
Commit message:
4

Changed in this revision

ACM1602NI.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/ACM1602NI.cpp	Sun Dec 14 07:51:08 2014 +0000
+++ b/ACM1602NI.cpp	Sun Dec 14 08:19:21 2014 +0000
@@ -66,7 +66,7 @@
     bool Acm1602Ni::LcdTx(uint8_t cmdData, uint8_t data)
     {
         if (!Start()) return false;
-        // defines king of "data" in next statement
+        // defines kind of "data" in next statement
         TxDR(cmdData);
         TxDR(data);
         wait_us(500);   // indispensable
@@ -115,4 +115,3 @@
         return true;
     }
 }
-