NXP PCF8576 Universal LCD driver for low multiplex rates + GH08172 LCD library
Dependents: PCF8576_GH08172_test
Revision 1:427ffdda29a3, committed 2016-03-28
- Comitter:
- MACRUM
- Date:
- Mon Mar 28 12:47:02 2016 +0000
- Parent:
- 0:e62c6477b73b
- Commit message:
- Add comment
Changed in this revision
| PCF8576.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/PCF8576.h Mon Mar 28 12:40:44 2016 +0000
+++ b/PCF8576.h Mon Mar 28 12:47:02 2016 +0000
@@ -61,7 +61,7 @@
*
* @param sda SDA pin
* @param sdl SCL pin
- * @param addr slave address of the I2C peripheral (default: 0x70)
+ * @param addr Slave address of the I2C peripheral (default: 0x70)
*/
PCF8576(PinName sda, PinName scl, int addr = PCF8576_DEFAULT_SLAVE_ADDRESS);
@@ -70,7 +70,7 @@
* with specified address
*
* @param i2c_obj I2C object (instance)
- * @param addr slave address of the I2C-bus peripheral (default: 0x70)
+ * @param addr Slave address of the I2C-bus peripheral (default: 0x70)
*/
PCF8576(I2C &i2c_obj, int addr = PCF8576_DEFAULT_SLAVE_ADDRESS);
@@ -89,14 +89,14 @@
/**
* Print string
*
- * @param str poiner to print string
+ * @param str Poiner to print string
*/
void print(char *str);
/**
- * Print icon bar
+ * Print level-bar pictogram icon
*
- * @param level-bar pictogram icon from 0 (all off) to 0xF (all on)
+ * @param icon Level-bar pictogram icon from 0 (all off) to 0xF (all on)
*/
void icon(uint32_t icon);
Toyomasa Watarai
NXP PCF8576 Universal LCD driver