avr: updated display message.

This commit is contained in:
Martin Preuss
2024-09-05 23:41:48 +02:00
parent 090917ea09
commit 5e4ca45443

View File

@@ -18,6 +18,8 @@
; - when writing a byte to a position (e.g. page 0, column 0)
; - writing to chip RAM is done in columns
;
; text_xpos=(xpos*8), meaning max 16 chars per text line
;
; Page 0: col 0 col 1 ... col 127
; Row 0(LSB) 0/0 1/0 ... 127/0
; Row 1 0/1 1/1 ... 127/1
@@ -650,7 +652,7 @@ lcdInitCommandsBegin: ; 28 bytes
.db LCD_MODE_MULTICMD, 0xa8, ((LCD_PAGE_COUNT*8)-1), 0x8d, 0x14, 0xaf, 0xa1, 0xc8
lcdInitCommandsEnd:
lcdHelloMsg: .db "AqHOME 2023", 0
lcdHelloMsg: .db "AqHOME 2024", 0
; font taken from Tiny4kOLED (https://github.com/datacute/Tiny4kOLED/tree/master/src) by Stephen Denne (MIT license),