Shop OBEX P1 Docs P2 Docs Learn Events
Sparkfun Serial LCD Object — Parallax Forums

Sparkfun Serial LCD Object

Jay KickliterJay Kickliter Posts: 446
edited 2008-09-27 04:34 in Propeller 1
I was converting the Serial LCD object from the exchange for use with the Sparkfun Serial LCD, and came across this line in the CON block:


#$F8, LCD_CC0, LCD_CC1, LCD_CC2, LCD_CC3




What does "#$F8" mean?

And while I'm at it, has anyone made an interface object for the Sparkfun LCD already?

Comments

  • DufferDuffer Posts: 374
    edited 2008-09-27 04:34
    That statement is the same as:
    CON
     
    LCD_CC0 = $F8
    LCD_CC1 = $F9
    LCD_CC2 = $FA
    LCD_CC3 = $FB
     
    

    See Propeller Manual, Page 197
    Duffer
Sign In or Register to comment.