Lcd003 light on
johnproko
Posts: 121
Hello everyone and Merry Christmas!
I have a BS2 with the board, and except of the BoeBot im totally a rookie.
My problem is an Lcd003. Does anyone have some examples?
The one that i found at parallax website is just the basics. I read that it has a light but cannot find anywhere the demo code. To be honest i pulled the ground cable and the lcd started blinking, its fine though.
I also would like to ask what are all those pins at the right?
Probably im way over my head.
Thank you in advance.
p.s.
pics are from http://www.robot-electronics.co.uk/htm/Lcd03tech.htm
and the basic code im using for the screen is:
' {$STAMP BS2}
' {$PBASIC 2.5}
lcd PIN 6
lcdbaud CON 84
lcdcls CON $0C
lcdlighton CON $11
lcdlightoff CON $15
lcdon CON $16
HIGH 6
PAUSE 100
SEROUT lcd, lcdbaud, [lcdon]
PAUSE 1000
SEROUT lcd, lcdbaud, [lcdlighton]
PAUSE 150
SEROUT lcd, lcdbaud, [lcdcls]
PAUSE 1500
I have a BS2 with the board, and except of the BoeBot im totally a rookie.
My problem is an Lcd003. Does anyone have some examples?
The one that i found at parallax website is just the basics. I read that it has a light but cannot find anywhere the demo code. To be honest i pulled the ground cable and the lcd started blinking, its fine though.
I also would like to ask what are all those pins at the right?
Probably im way over my head.
Thank you in advance.
p.s.
pics are from http://www.robot-electronics.co.uk/htm/Lcd03tech.htm
and the basic code im using for the screen is:
' {$STAMP BS2}
' {$PBASIC 2.5}
lcd PIN 6
lcdbaud CON 84
lcdcls CON $0C
lcdlighton CON $11
lcdlightoff CON $15
lcdon CON $16
HIGH 6
PAUSE 100
SEROUT lcd, lcdbaud, [lcdon]
PAUSE 1000
SEROUT lcd, lcdbaud, [lcdlighton]
PAUSE 150
SEROUT lcd, lcdbaud, [lcdcls]
PAUSE 1500
Comments