Touch Display
Gary&Loren
Posts: 8
in BASIC Stamp
Are there any affordable touch displays that work with the homework board (https://www.parallax.com/product/555-28188)? I was looking at this one (http://www.amazon.com/Touch-Screen-Socket-Arduino-Module/dp/B00UAA2XIC/ref=sr_1_fkmr2_2?ie=UTF8&qid=1435937909&sr=8-2-fkmr2&keywords=2.8"+Inch+TFT+LCD+Display+Touch+Screen+Module+with+SD+Slot+For+Arduino+UNO+F5), but I wasn't sure if it would work.
Comments
I think touchscreens capable or working with the Basic Stamp would need to be relatively smart and take care of most of the overhead to drive the screen on its own. I think these smarter touchscreens are likely to cost more than the inexpensive one you linked to.
I searched for "touch screen Basic Stamp" using Rich's Google search page but I didn't find any promising links.
Adafruit sells a bunch of different touchscreens which can be controlled with SPI but I don't know if there is any example code to use these screens with the Basic Stamp.
Above all, do not try to use one with asynchronous serial communication with Stamp because you will almost certainly not be able to respond quickly enough for reliable two-way communication.
If you do not require a touch-screen, the 128x128 pixel from Parallax works fine with Stamp, especially the more powerful versions.
Edit: Actually, the 128x128 from parallax won't work with basic stamp if you need to read back pixels or do anything else that involves two-way communication. It just responds too quickly for you to set up to read its response. EndEdit
I hadn't thought about the ADC requirement. I'd think one's favorite two channel (or more) ADC chip could be used to read these.
While I think it should be possible to use the Adafruit screens with a Basic Stamp, I'm not sure how easy this would be. I'd think controlling the display would be very taxing for the Stamp (and the person programming the Stamp).