EDF - OnePIC MCU
v1.1.0
|
![]() |
Functions | |
void | LCDStrobeEnable (void) |
toggles enable pin for LCD sample pins | |
void | LCDLowNibPut (uint8_t data) |
bit-bang lower nibble | |
void | LCDDataPut (unsigned char data) |
bit-bang upper nibble to LCD | |
void | LCDCommand (unsigned char command) |
writing to the internals of the LCD | |
void | LCDPut (unsigned char character) |
write a single data byte to the LCD | |
void | LCDInit (void) |
Initilize the LCD. | |
void | LCDUpdate (void) |
Update the LCD using LCDBuffer[0] and LCDBuffer[1]. | |
Variables | |
char | LCDBuffer [LCD_LINES][LCD_LINE_LENGTH] |
void LCDCommand | ( | unsigned char | command | ) |
writing to the internals of the LCD
command | LCD command |
Definition at line 82 of file OnePIC_lcd.c.
void LCDDataPut | ( | unsigned char | data | ) |
bit-bang upper nibble to LCD
data | byte to write |
Definition at line 54 of file OnePIC_lcd.c.
void LCDInit | ( | void | ) |
Initilize the LCD.
Definition at line 119 of file OnePIC_lcd.c.
void LCDLowNibPut | ( | uint8_t | data | ) |
bit-bang lower nibble
data | byte to write |
Definition at line 37 of file OnePIC_lcd.c.
void LCDPut | ( | unsigned char | character | ) |
write a single data byte to the LCD
character | character to write |
Definition at line 92 of file OnePIC_lcd.c.
void LCDUpdate | ( | void | ) |
Update the LCD using LCDBuffer[0] and LCDBuffer[1].
Definition at line 163 of file OnePIC_lcd.c.