Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
lcd_init: mov dptr,#6000H
mov a,#38H ;init. LCD 2 lines,5x7 matrix
movx @dptr,a
call delay
mov a,#0CH ;LCD on, cursor on
movx @dptr,a
call delay
mov a,#01H ;clear LCD command
movx @dptr,a
call delay
mov a,#06H ;shift cursor right
movx @dptr,a
call delay
mov a,#0FH ;cursor: line 1, pos. 6
movx @dptr,a
call delay
mov a,#80H
movx @dptr,a
call delay
ret