Contents
[hide]- 1 LCD
- 1.1 LCD_Init
- 1.2 LCD_CmdWrite
- 1.3 LCD_Clear
- 1.4 LCD_GoToLine
- 1.5 LCD_GoToNextline
- 1.6 LCD_SetCursor
- 1.7 LCD_DisplayChar
- 1.8 LCD_DisplayString
- 1.9 LCD_ScrollMessage
- 1.10 LCD_DisplayDecimalNumber
- 1.11 LCD_DisplayHexNumber
- 1.12 LCD_DisplayBinaryNumber
- 1.13 LCD_DisplayFloatNumber
- 1.14 LCD_Printf
- 1.15 Usage Guide
LCD
LCD_Init
{{#Widget:LibTable}}Defination | void LCD_Init ( uint8_t var_lcdMode_u8, uint8_t var_lcdNoOfLines_u8, uint8_t var_MaxCharsPerLine_u8) |
Input Arguments | *uint8_t: required Mode 4/8-bit *uint8_t: Number of lines of LCD *uint8_t: Number of Chars per line |
Return Value | none |
Description | This function is used to initialize the lcd. It initializes the LCD for selected mode(4/8-bit) and Type(16x2/16x1 etc) |
Usage | LCD_Init(8,2,16) //Initialize 2x16 LCD in 8-bit Mode LCD_Init(4,2,16) //Initialize 2x16 LCD in 4-bit Mode LCD_Init(4,4,16) //Initialize 4x16 LCD in 8-bit Mode |
LCD_CmdWrite
{{#Widget:LibTable}}Defination | void LCD_CmdWrite( uint8_t var_lcdCmd_u8) |
Input Arguments | 8-bit command supported by LCD. |
Return Value | none |
Description | This function sends a command to LCD. Some of the commonly used commands are defined in lcd.h. For more commands refer the data sheet. The behaviour is undefined if unsupported commands are sent. |
Usage |
LCD_CmdWrite(0x0c); //Sets display On and Cursor Off LCD_CmdWrite(CMD_DISPLAY_ON_CURSOR_OFF); //Recommended |
LCD_Clear
{{#Widget:LibTable}}Defination | void LCD_Clear() |
Input Arguments | none. |
Return Value | none. |
Description | This function clears the LCD and moves the cursor to beginning of first line |
Usage |
LCD_Clear(); // Clears the lcd and sets the cursor to beginning of the first line. |
LCD_GoToLine
{{#Widget:LibTable}}Defination | void LCD_GoToLine(uint8_t var_lineNumber_u8) |
Input Arguments | uint8_t: Line number to move the cursor. |
Return Value | none |
Description | This function moves the Cursor to beginning of the specified line. If the requested line number is out of range, it will not move the cursor. Note: The line numbers run from 1 to Maxlines.
|
Usage |
LCD_GoToLine(1); //Moves the cursor to beginning of first line LCD_GoToLine(E_LcdLineOne); //Recommended usage |
LCD_GoToNextline
{{#Widget:LibTable}}Defination | void LCD_GoToNextLine() |
Input Arguments | none |
Return Value | none |
Description | This function moves the Cursor to beginning of the next line. If the cursor is on last line and NextLine command is issued then it will move the cursor to first line. |
Usage |
LCD_GoToNextline(); //Moves the cursor to beginning of next line. |
LCD_SetCursor
{{#Widget:LibTable}}Defination | void LCD_SetCursor(char var_lineNumber_u8,char var_charNumber_u8) |
Input Arguments |
|
Return Value | none |
Description | This function moves the Cursor to specified position.
|
Usage |
LCD_SetCursor(1,10); //Moves the cursor to 1st line 11th char. LCD_SetCursor(5,10); //No action taken as line 5 is out of range |
LCD_DisplayChar
{{#Widget:LibTable}}Defination | void LCD_DisplayChar( char var_lcdData_u8) |
Input Arguments | uint8_t: ASCII value of the char to be displayed. |
Return Value | none |
Description | This function sends a character to be displayed on LCD. Any valid ascii value can be passed to display the respective character |
Usage |
LCD_DisplayChar(65); //Displays 'A' on LCD |
LCD_DisplayString
{{#Widget:LibTable}}Defination | void LCD_DisplayString(char *ptr_stringPointer_u8) |
Input Arguments | char*:String(Address of the string) to be displayed. |
Return Value | none |
Description | This function is used to display the ASCII string on the lcd. |
Usage |
|
LCD_ScrollMessage
{{#Widget:LibTable}}Defination | void LCD_ScrollMessage(uint8_t var_lineNumber_u8, char *ptr_msgPointer_u8) |
Input Arguments |
|
Return Value | none |
Description | This function scrolls the given message on the specified line. If the specified line number is out of range then the message will be scrolled on first line.
|
Usage |
LCD_ScrollMessage(" Welcome to embedded programming "); |
LCD_DisplayDecimalNumber
{{#Widget:LibTable}}Defination | void LCD_DisplayNumber(uint32_t var_DecNumber_u32, uint8_t var_numOfDigitsToDisplay_u8 ) |
Input Arguments |
|
Return Value | none |
Description | This function is used to display a max of 10digit decimal number. 2nd parameter specifies the number of digits from the right side to be displayed The output for the input combinations is as below
|
Usage |
uint32_t decNumber = 123456; |
LCD_DisplayHexNumber
{{#Widget:LibTable}}Defination | void LCD_DisplayHexNumber(uint32_t var_hexNumber_u32, uint8_t var_numOfDigitsToDisplay_u8) |
Input Arguments |
|
Return Value | none |
Description | This function is used to display a max of 10digit hex number. 2nd parameter specifies the number of digits from the right side to be displayed . The output for the input combinations is as below
|
Usage |
uint32_t hexNumber = 0x123456; |
LCD_DisplayBinaryNumber
{{#Widget:LibTable}}Defination | void LCD_DisplayBinaryNumber(uint32_t var_binNumber_u32, uint8_t var_numOfBitsToDisplay_u8) |
Input Arguments |
|
Return Value | none |
Description | This function is used to display the binary equivalent of the given number. 2nd parameter specifies the number of LSB to be displayed . The output for the input combinations is as below
|
Usage |
uint32_t Number = 0xABCD; |
LCD_DisplayFloatNumber
{{#Widget:LibTable}}Defination | void LCD_DisplayFloatNumber(float var_floatNum_f32) |
Input Arguments | float: Number to be displayed on the LCD. |
Return Value | none |
Description | This function is used to display a floating point number. It supports 6digits of precision.
|
Usage |
float Number = 1234.5678; |
LCD_Printf
{{#Widget:LibTable}}Defination | void LCD_Printf(const char *argList, ...) |
Input Arguments | variable length arguments similar to printf |
Return Value | none |
Description | This function is similar to printf function in C. It takes the arguments with specified format and displays accordingly .
The supported format specifiers are as below.
|
Usage |
|
Usage Guide
- /* Program to demonstrate the LCD library usage*/
- #include"lcd.h"
- #include"delay.h"
- int main()
- {
- char a_displayMsg_u8[]={"Good Morning"};
- char var_lcdData_u8='A';
- uint16_t var_number_u16= 1234u;
- LCD_Init(8,2,16);
- LCD_ScrollMessage(0," Program to illustrate the lcd library usage ");
- LCD_Clear();
- LCD_DisplayString("Hello, world"); /* Display the specified Message */
- LCD_GoToNextLine();
- LCD_DisplayString(a_displayMsg_u8); /* Display the message stored in a string */
- DELAY_sec(2);
- LCD_Clear();
- LCD_DisplayString("Display Char\n");
- LCD_DisplayChar('X'); /* Display the specified Ascii character */
- LCD_DisplayChar(var_lcdData_u8); /* Display the char stored in a variable */
- DELAY_sec(2);
- LCD_Clear();
- LCD_DisplayString("D:");
- LCD_DisplayDecimalNumber(1234,5); /* Display the specified digits of a number */
- LCD_DisplayString(" H:");
- LCD_DisplayHexNumber(0xABCD,5); /* Note here the num=1234, and digitsToDisplay=5 */
- LCD_GoToNextLine(); /* The number displayed on LCD will be as below*/
- LCD_DisplayBinaryNumber(0xABCD,16); /* dec=01234, hex=0ABCD,
- bin=1010101111001101*/
- DELAY_sec(2);
- LCD_Clear();
- LCD_Printf("D=%d H=%x \n%b",var_number_u16,var_number_u16,var_number_u16);
- DELAY_sec(2);
- LCD_Clear();
- LCD_Printf("Enjoy Embedded \nProgramming");
- while(1);
- return 0;
- }