| aLCDx_Cmd | Index |
Definition:
Parameters:
| a | - | The byte to write to the LCD device. |
Return Value:
Description:
This routine writes a command byte to an LCD display device. The LCD must have an IIC interface. The user must define a value called ALCD_ADDR before including the aLCDx.tea file. This value is the IIC address of the LCD display. The IIC baud rate may need to be lowered to achieve reliable communication with the LCD display. See the cmdVAL_SET or aPortIICBaud documentation for details.
This function works with LCDs that expect a 0x01 byte before a command byte, such as the DS-LCDD2 from Total Robots Ltd.
Example:
#define ALCD_ADDR 92
#include <aLCDx.tea> /* after the define */
void main() {
aLCDx_Cmd(0x01);
}
This would clear the LCD display.
Related: