I currently have a Mega2560 with the LCD4884 Shield. The Shield is good for putting out text and simple pixel images. But I am wondering if there is something that has a full range of colours that would work with the Arduino? The screen size would only have to be a few inches in size.
|
There are actually several shields that have color screens on them. Many of the shields are just regular mini TFT displays, however there are also touch screen ones. Here is one from Adafruit that includes a MicroSD holder and a Joystick. Here is one from Radio Shack that features a 2.8 inch screen with touch capabilities As far as screen size, many of the screens are only about an 1 inch across, however the biggest I have ever been able to find are 2.8 in. |
|||||||||||||||||
|
There's also a 2.2" Adafruit TFT. The nice things about the Adafruit displays are: i) library support for both the display and the graphics core library. So it's easy to get it up and running. The built in frame buffer reduces resource requirements on Arduino. |
|||
|
Another very cool screen is the official Arduino TFT LCD Screen. (Datasheet if you're curious.) It's a 1.77" screen, with a resolution of 160x128. It has a micro-SD slot in it, which is easily accessible. It is a color screen, with up to 18 bit per pixel. The extremely nice thing with this screen is that since it's officially supported, you don't need to do anything extra to support it. The official Arduino TFT library works perfectly with it. However, according to Jameco:
So beside that minor fix, everything should be easy and quick to work with. This page has some code samples which should make it easy to work with. |
|||
|