Shop OBEX P1 Docs P2 Docs Learn Events
KS0108 Graphics Display — Parallax Forums

KS0108 Graphics Display

TimHTimH Posts: 48
edited 2014-09-10 06:40 in Propeller 1
I've started to play around with a KS0108 graphics display.
I wired the circuit as per the Demo_Lcd_KS0108V1.3 and all works as expected.
My problem is the demo has too much going on and I'm having a hard time understanding how the code is working.
Is there a very simple demo for this display - say just draw a line or box or simple text.
I think, if I can understand that I may be able to work thru the more complicated demo.

Comments

  • Erik FriesenErik Friesen Posts: 1,071
    edited 2014-09-09 17:01
    Its been a long time since I used that, but it will be something including:

    text.start
    text.out(0) 'clear screen
    text.str("Hello world")

    see out function for misc usage, setting draw location ,etc.

    example,
    text.out($0A)
    text.out(64)
    sets X location to 64
  • TimHTimH Posts: 48
    edited 2014-09-10 06:40
    Thanks Erik - I will give that a try

    Tim
Sign In or Register to comment.