An I2C text LCD library for Displaytronic ACM1602NI-FLW-FBW-M01

Dependents:   ACM1602NI_Demo ROBOT_v01 ROBOT_v02 Boku-Transmit ... more

Revision:
4:33a8ca14e0e0
Parent:
3:bac80efb323e
Child:
5:c1dbbc2af9dd
--- a/ACM1602NI.h	Mon May 13 13:04:06 2013 +0000
+++ b/ACM1602NI.h	Sat Dec 14 14:45:38 2013 +0000
@@ -20,17 +20,21 @@
 #include "mbed.h"
 
 /** An I2C text LCD library for Displaytronic ACM1602NI-FLW-FBW-M01.
+ * The device does not work with default I2C library due to its slow I2C responce.
+ * This library adds some extra waits so that the device can answer to the I2C commands.
  * The interface is basically the same as TextLCD by Simon Ford.
  *
  * @code
  * #include "mbed.h"
  * #include "ACM1602NI.h"
- * 
+ *
+ * // p9: sda, p10: scl
  * I2C i2c(p9, p10);
  * ACM1602NI lcd(i2c);
  *
  * int main() {
  *     lcd.printf("Hello, World!\n");
+ *     lcd.printf("ACM1602NI\n");
  * }
  * @endcode
  */