Search found 4 matches

by Russ1
Tue Apr 08, 2008 5:13 am
Forum: User Modules
Topic: KS0713 GLCD module - doesn't support 128x64 screens?
Replies: 6
Views: 5124

Thanks! I have been studying all the GLCD modules, and I've converted everything except the "strobe enable pin" sub. I don't know what that does or how to deal with it. Here is what it looks like with the KS0108 (which has 2 CS lines): Inline Sub StrobeEN() EN = 1 DelayUS(1) EN = 0 End Sub And here ...
by Russ1
Mon Apr 07, 2008 8:29 pm
Forum: User Modules
Topic: KS0713 GLCD module - doesn't support 128x64 screens?
Replies: 6
Views: 5124

That's what I'm using! That's were I copied the above code from. But the single CS line is confusing me. How can it support 128x64 with one chip? I thought each chip controlled 128x32, so you need to use two in union to create 128x64 screens.
by Russ1
Mon Apr 07, 2008 9:49 am
Forum: User Modules
Topic: KS0713 GLCD module - doesn't support 128x64 screens?
Replies: 6
Views: 5124

Here's the datasheet for the glcd I'm using: http://www.crystalfontz.com/products/12864ap/datasheets/136/CFAX12864AP1TFH.pdf The two chip select lines have me confused :oops:. The KS0713 module only accounts for one select line: Module KS0713 // import the graphics module... #DEFINE GLCD_PIXEL_01 #D...
by Russ1
Mon Apr 07, 2008 9:32 am
Forum: User Modules
Topic: KS0713 GLCD module - doesn't support 128x64 screens?
Replies: 6
Views: 5124

KS0713 GLCD module - doesn't support 128x64 screens?

I'm using a KS0713 controlled glcd with 128x64 resolution. I'm assuming it has two on-board chips, because it has two chip select lines - CS1B and CS2. But the KS0713 module only has one chip select option.

What do I do?