2020-10-27 20:08:07 +01:00
|
|
|
; HD44780 20x4 characters LCD display driver
|
|
|
|
; @author Daniele Verducci
|
2020-10-26 22:05:03 +01:00
|
|
|
|
2020-10-27 22:27:39 +01:00
|
|
|
; variables
|
|
|
|
;lcd_cur_x: EQU DRV_VAR_SPACE
|
|
|
|
;lcd_cur_y: lcd_cur_x + 1
|
2020-10-24 23:30:50 +02:00
|
|
|
|
2020-10-27 20:08:07 +01:00
|
|
|
; functions
|
2020-10-24 23:30:50 +02:00
|
|
|
|
|
|
|
lcd_init:
|
|
|
|
;reset procedure
|
2020-10-26 22:05:03 +01:00
|
|
|
ld a,0x38
|
2020-10-24 23:30:50 +02:00
|
|
|
out (LCD_INSTR_REG),a
|
2020-10-26 22:05:03 +01:00
|
|
|
ld a,0x08
|
2020-10-24 23:30:50 +02:00
|
|
|
out (LCD_INSTR_REG),a
|
2020-10-26 22:05:03 +01:00
|
|
|
ld a,0x01
|
2020-10-24 23:30:50 +02:00
|
|
|
out (LCD_INSTR_REG),a
|
|
|
|
|
|
|
|
;init procedure
|
2020-10-26 22:05:03 +01:00
|
|
|
ld a,0x38
|
2020-10-24 23:30:50 +02:00
|
|
|
out (LCD_INSTR_REG),a
|
2020-10-26 22:05:03 +01:00
|
|
|
ld a,0x0F
|
2020-10-24 23:30:50 +02:00
|
|
|
out (LCD_INSTR_REG),a
|
|
|
|
|
|
|
|
ret
|
|
|
|
|
2020-10-26 22:05:03 +01:00
|
|
|
; Writes text starting from current cursor position
|
|
|
|
; @param BC Pointer to a null-terminated string first character
|
2020-10-27 20:08:07 +01:00
|
|
|
lcd_print:
|
2020-10-24 23:30:50 +02:00
|
|
|
ld a, (bc) ; bc is the pointer to passed string's first char
|
|
|
|
cp 0 ; compare A content with 0 (subtract 0 from value and set zero flag Z if result is 0)
|
|
|
|
ret z ; if prev compare is true (Z flag set), string is finished, return
|
|
|
|
out (LCD_DATA_REG),a ; output char
|
|
|
|
inc bc ; increment bc to move to next char
|
2020-10-27 20:08:07 +01:00
|
|
|
|
|
|
|
jp lcd_print
|
2020-10-24 23:30:50 +02:00
|
|
|
|
2020-10-26 22:05:03 +01:00
|
|
|
; Set cursor position
|
|
|
|
; @param B X-axis position (0 to 19)
|
|
|
|
; @param C Y-axis position (0 to 3)
|
|
|
|
lcd_locate:
|
2020-10-27 22:27:39 +01:00
|
|
|
ld a,0xFE
|
|
|
|
out (LCD_INSTR_REG),a ; warns the lcd microcontroller that a command is coming
|
|
|
|
ld a,0xA8
|
|
|
|
out (LCD_INSTR_REG),a ; place cursor to first char of second line
|
2020-10-26 22:05:03 +01:00
|
|
|
ret
|
|
|
|
|
|
|
|
; Clears the screen
|
|
|
|
lcd_cls:
|
|
|
|
ld a,0x01
|
|
|
|
out (LCD_INSTR_REG),a ; clear display
|
|
|
|
ld a,0x02
|
|
|
|
out (LCD_INSTR_REG),a ; cursor to home (top left)
|
|
|
|
ret
|