-
Categories
-
Platforms
-
Content
Define what a "serial screen" is.Has anyone here ever used a serial screen?
Yes that's right, 8pin cable to be precise您是说要沿一条线连续地馈送图形数据?
I would like to use a smaller screen, similar to the size of a mobile phone screen, to create a console to control my mcuI used to often use VT100 & VT220s. Are these serial screens?
I've used SPI-connected LCD displays, on Raspberry pis & such. Is that the sort of thing you mean?
I think it could be called a uart screen.
UART protocol is way too slow for transmitting display data. Usually terminals like the ones mentioned here (VT100...) are used via UART.think it could be called a uart screen.
Yes.Has anyone here ever used a serial screen?
Each of us has knowledge according to our experience & learning so some have seen limitations that don't affect all applications. Traditional UARTs tend to be slow for good reasons. Displays now need more data & hence higher data rates for good reasons.The only need for a parallel protocol would be a high speed camera, monitors would never need it because we only see at about ~60hz.
.Do you realize that VGA, HDMI, display port, even classic over-the-air TV etc. all use a kind of serial protocol?
Hello Ratstar,The only need for a parallel protocol would be a high speed camera, monitors would never need it because we only see at about ~60hz.
Actually I only need this LCD to support the touch, I just want to design a simple button so I don't have too many requirements for graphics, colours, animations.It does. if youve got a 1000x1000 screen it only takes 60 megahertz to hit every pixel 60 times a second, so its easily done with one wire. If you had a 10,000x10,000 screen, then it would be 6,000 megahertz, out of the range of cheap transistors, but I guess professional ones could do it.
If u wanted every led a separate wire, then you could get 1 million FPS, with a megahert, maybe that would be good for some parallel optical delay line memory? But other than that, pretty superfluous just for an ordinary monitor.
Is it a touch screen?Actually I only need this LCD to support the touch, I just want to design a simple button so I don't have too many requirements for graphics, colours, animations.
Actually I only need this LCD to support the touch, I just want to design a simple button so I don't have too many requirements for graphics, colours, animations.
I've been reading some tutorials online over the last few days and I'm going to use arduino and stone lcd for my project.You might want to look at an Arduino approach.
Clone Arduino boards work fine and help keep the cost down.
There would be plenty of circuits and advice out there for a basic touch screen running on I2c with library support also to get you started.
Just what you intend to display is unknown but you will get some ideas and experience in the Arduino forums.
Thank you very much for the pointersBest to get yourself some gear and get your feet wet, so-to-speak.
Better to get hands on and try to avoid copy and paste of the code.
Read it up by all means but you will learn a lot more if you try to write the code yourself.
If you get stumped you can always go back and read it up once again.
Touch screens might be a bit ambitious to begin with.
Try getting familiar with the way the programming works with other hardware as well.
Switches, LED's, servos ...