Has anyone used this with their prop? (terminal display)
turbosupra
Posts: 1,088
Or anything like it?
I'd like to have something a little closer to the terminal windows application, rather than the 4 line LCD that Parallax sells. Having a handheld terminal piece of hardware with the ability to send a DTR command and CLS command would be ideal actually.
http://www.ebay.com/itm/USB-2-8-TFT-LCD-module-LCD-sys-info-display-temperature-fan-AIDA64-LCD-Smartie-/121004607232
I'd like to have something a little closer to the terminal windows application, rather than the 4 line LCD that Parallax sells. Having a handheld terminal piece of hardware with the ability to send a DTR command and CLS command would be ideal actually.
http://www.ebay.com/itm/USB-2-8-TFT-LCD-module-LCD-sys-info-display-temperature-fan-AIDA64-LCD-Smartie-/121004607232
Comments
the one you linked to has a usb-interface 320x240 pixels and colors
Serial RS232 would be much easier for the prop.
I did a quick research at parallax and sparkfun
parallax has this one http://parallax.com/product/28080
sparkfun https://www.sparkfun.com/products/11677
found this at ebay SPI-serial interface.
I haven't done much with SPI yet. So maybe somebody with SPI-experience can chime in and write a guess about how
much effort it would be to write the SPI-driver?
http://www.ebay.com/itm/2-4-240x320-SPI-TFT-LCD-Serial-Port-Module-3-3V-PBC-Adapter-Micro-SD-ILI9341-/321496984303?pt=LH_DefaultDomain_0&hash=item4adab6aaef
best regards
Stefan
Any special reason not to use something like these? They work great with composite video objects in OBEX.
http://www.ebay.com/itm/5-Inch-TFT-LCD-Car-Rear-View-Camera-DVD-VCR-Auto-Color-Monitor-2-Video-Input-/300935364518?pt=LH_DefaultDomain_0&hash=item4611253fa6
http://www.ebay.com/itm/LCD-Car-Reverse-Rearview-Monitor-Color-Camera-DVD-VCR-Remote-Control-4-3-TFT-/380973730791?pt=LH_DefaultDomain_0&hash=item58b3cdcbe7
These aren't color but for $5 I think they're a great deal.
I show one being powered from a Prop's I/O pin in this thread. There's also a link to the product in that thread.
Rayman makes and sells boards for some nice screens. Here's a link to his website: http://www.rayslogic.com/
I used one of his touchscreens in my robot remote project.
Small TVs with composite input is another option. One problem with using a video display is they tend to use a lot of memory. I often end up using a second Prop as a graphics slave if the program doesn't have enough extra memory to support a video driver.
Edit: The link User Name provided is a good example of a display which uses composite video.
I'm looking for something cheap and plug and play as I'm trying to debug something and do not want to have to debug the debugger so that I can do what I originally intended.
I would also like one that does not need an additional cog, on top of the full duplex serial method needing a cog ... is this possible?
Is full duplex serial sending the debug information?
Debug screens with the least overhead for the Prop will likely be a screen which accepts serial input. A terminal window on a PC is is my usual debug screen.
Alternatively you could use a second Propeller to receive serial data from the first Prop and output text to a TV or VGA monitor. Phil has code to use with the Propeller Backpack which acts as a display for data received over a serial connection.
BTW, it is not clear what your "does not need an additional cog, on top of the full duplex serial method needing a cog" discussion is really pointing to as a problem. There are 4 port serial objects if that helps that allow rx/tx on 4 sets of pins that require only 1 cog.
I'm about out of COG's or am out for this project (I have to double check) so using a cog for serial debugging, a cog for FDS and a cog for a video driver is not ideal.
I'm not opposed to touch screen, especially if it is tried and true.
if you just need some debugtext how about a 4 Lines
I don't think anything exists that satisfies your requirements. You either spend at least one extra cog (and lots of memory) on VGA display or you get a much simpler display. If you have SPI devices on your system already, an SPI display would work great since it can share the bus.
Just to clarify, you're in Spin/PASM right, not C/C++?
I take it the serial debugging you're doing is at the PC?
The driver used for serial debugging could be used to output data to a display. A second Propeller and a TV could act as a terminal window.
Do they sell it stateside and did you happen to see how much it was? I couldn't find the price with a quick google search.
I'm using 115200, and right now debugging to a laptop while driving, but that's not ideal.