Maker Pro
Maker Pro

4x8 or 4x10 character LCD?

?

_

Jan 1, 1970
0
Are these made? If not, available surplus?

Package size cannot be changed and will not take typical LCD's of 2 x 16/20
(or larger).

Don't want graphic lcd if possible - too much uC oomph and coding needed, I
think.
 
L

linnix

Jan 1, 1970
0
Are these made? If not, available surplus?

Package size cannot be changed and will not take typical LCD's of 2 x 16/20
(or larger).

Don't want graphic lcd if possible - too much uC oomph and coding needed, I
think.

How many do you need?
 
?

_

Jan 1, 1970
0
Depending on the particular controller for a graphic LCD, that might not be
the case... we're presently using a 120x32 unit (turned into 20x4 characters)
where the controller organizes the memory as 4 "pages" (rows) of 120 bytes...
and each byte you send ends up displayed "verticallly" (as a column), with the
pixels turned on or off based on which bits are set in the byte (as you'd
expect). Although you do need to keep a font around (just as, e.g., a big
array if you're using C), the actual code that deals with keeping track of
cursor positions and turning ASCII into bitmaps something like 100 lines of
C -- I wrote and tested it in a couple of hours. While strictly speaking it
does require more uC "oomph" -- you're sending six bytes to the controller for
each character rather than 1 -- it's an utterly trivial amount of CPU time in
either case.

(Granted, if you want to start taking advantage of the graphic LCD and draw
circles or whatever, surve, that's more time and code... but if you're just
looking to use a graphic LCD as a text-output device, the point is that it can
still be very fast and easy to do.)

Limits on memory and chip speed (for extremely long battery life) make text
mode much more appealing.

How big is your 120x32 unit? I am looking for something about 1.5 inches
square; could be a bit taller than wide but about that size max.
 
M

Martin Griffith

Jan 1, 1970
0
Are these made? If not, available surplus?

Package size cannot be changed and will not take typical LCD's of 2 x 16/20
(or larger).

Don't want graphic lcd if possible - too much uC oomph and coding needed, I
think.
Anything interesting here?
http://www.varitronix.us.com/?pid=16
They do one small display


martin
 
L

linnix

Jan 1, 1970
0
Hi there,




This is 2 1/8" x 1 1/18" x 1/4", although the active display area is ~2"x3/4".
It's a custom LCD with a milspec temperature range (read: not at all cheap);
the controller is an ST7565P, which seems relatively popular.

Does it really work at 200C? Or just survive it?
 
D

Don McKenzie

Jan 1, 1970
0
_ said:
Are these made? If not, available surplus?

Package size cannot be changed and will not take typical LCD's of 2 x 16/20
(or larger).

Don't want graphic lcd if possible - too much uC oomph and coding needed, I
think.

may be some answers here for you:
http://www.dontronics-shop.com/Micro-LCD-p-1-c-263.html

Cheers Don...


--
Don McKenzie

Site Map: http://www.dontronics.com/sitemap
E-Mail Contact Page: http://www.dontronics.com/email

Intelligent 2.83" AMOLED with touch screen for micros:
http://www.dontronics-shop.com/product.php?productid=16699
 
Top