Parallel LCD library  0.5
Display driver for character LCD screens based on Hitachi HD44780 (or compatible) chipsets
Functions
lcdParallel_cursor.c File Reference

Display driver for character LCD screens based on Hitachi HD44780 (or compatible) chipsets, which are found in most text-based LCDs. The library works with either 4 or 8 data lines in addition to the rs, and enable lines. More...

#include "lcdParallel.h"

Functions

void lcdParallel_noCursor (lcdParallel *device)
 Turns the cursor off. More...
 
void lcdParallel_cursor (lcdParallel *device)
 Turns the cursor on. More...
 
void lcdParallel_noBlink (lcdParallel *device)
 Makes the cursor solid (no blinking). More...
 
void lcdParallel_blink (lcdParallel *device)
 Makes the cursor blink. More...
 

Detailed Description

Display driver for character LCD screens based on Hitachi HD44780 (or compatible) chipsets, which are found in most text-based LCDs. The library works with either 4 or 8 data lines in addition to the rs, and enable lines.

Author
Matthew Matz, Jeff Martin
Version
0.5

Function Documentation

◆ lcdParallel_blink()

void lcdParallel_blink ( lcdParallel *  device)

Makes the cursor blink.

Parameters
*deviceDevice pointer returned by the lcdParallel_init or _init8 function.

◆ lcdParallel_cursor()

void lcdParallel_cursor ( lcdParallel *  device)

Turns the cursor on.

Parameters
*deviceDevice pointer returned by the lcdParallel_init or _init8 function.

◆ lcdParallel_noBlink()

void lcdParallel_noBlink ( lcdParallel *  device)

Makes the cursor solid (no blinking).

Parameters
*deviceDevice pointer returned by the lcdParallel_init or _init8 function.

◆ lcdParallel_noCursor()

void lcdParallel_noCursor ( lcdParallel *  device)

Turns the cursor off.

Parameters
*deviceDevice pointer returned by the lcdParallel_init or _init8 function.