Hello,
I'd like to know if the Raspberry Foundation is planning to make a new model of the 7 inch touch screen. The current one has a quite poor image quality compared to the current displays we find in products like smartphones, tablets and tactile laptops.
Problems sorted by importance from high to low, in my opinion :
- Poor viewing angles, especially vertical ones. Color shift is huge. Horizontal angles are okay-ish
- Low resolution. 800x480 is far from current standards
- Colors aren't very accurate and are produced by the use of a noticeable dithering
Is a new version planned for the future ? I plan to ship a product using the official 7 inch screen, but it feels a bit underwhelming for 2018 / 2019.
If i need to look for a separate LCD/touch screen, is there a way to connect it to the RPI with the same ribbon connector as the official screen ? It provides so much ease of integration, compared to a separate HDMI/USB touch screen that doesn't easily work in bare metal environment...
Re: New display with better quality possible ?
The Raspberry Pi Foundation never (almost never) share their product release road map. Odds are you won't find out until one goes on sale.
Electronic and Computer Engineer
Pi Interests: Home Automation, IOT, Python and Tkinter
Pi Interests: Home Automation, IOT, Python and Tkinter
-
- Posts: 25323
- Joined: Tue Mar 25, 2014 12:40 pm
- Location: Delightful Dorset
Re: New display with better quality possible ?
okenido wrote: ↑Tue Dec 18, 2018 2:17 pmHello,
I'd like to know if the Raspberry Foundation is planning to make a new model of the 7 inch touch screen. The current one has a quite poor image quality compared to the current displays we find in products like smartphones, tablets and tactile laptops.
Problems sorted by importance from high to low, in my opinion :
- Poor viewing angles, especially vertical ones. Color shift is huge. Horizontal angles are okay-ish
- Low resolution. 800x480 is far from current standards
- Colors aren't very accurate and are produced by the use of a noticeable dithering
Is a new version planned for the future ? I plan to ship a product using the official 7 inch screen, but it feels a bit underwhelming for 2018 / 2019.
If i need to look for a separate LCD/touch screen, is there a way to connect it to the RPI with the same ribbon connector as the official screen ? It provides so much ease of integration, compared to a separate HDMI/USB touch screen that doesn't easily work in bare metal environment...
If you have developed a product then use the CM3 with a custom baseboard so you can then choose a suitable Display....
The information is out there....you just have to let it in.
My other Linux machine is a ChromeBox
My other Linux machine is a ChromeBox
Re: New display with better quality possible ?
I've thought about the CM3 but unfortunately it's not very competitive price-wise, and designing a custom baseboard is far from easy (and adds additionnal cost). The problem here is getting a nice quality touch display and interfacing it with the RPI through its ribbon connector.
- RaTTuS
- Posts: 10710
- Joined: Tue Nov 29, 2011 11:12 am
- Location: North West UK
- Contact: Twitter YouTube
Re: New display with better quality possible ?
you can buy 10" hdmi touch screen for £90 ....
How To ask Questions :- http://www.catb.org/esr/faqs/smart-questions.html
WARNING - some parts of this post may be erroneous YMMV
1QC43qbL5FySu2Pi51vGqKqxy3UiJgukSX
Covfefe
WARNING - some parts of this post may be erroneous YMMV
1QC43qbL5FySu2Pi51vGqKqxy3UiJgukSX
Covfefe
-
- Posts: 14096
- Joined: Fri Mar 09, 2012 7:36 pm
- Location: Vallejo, CA (US)
Re: New display with better quality possible ?
The only hint that has ever been uttered (that I know of), was Eben Upton musing about following the 7" display with a 10" one. Given the trouble it took to get the 7" unit to market, I'm not surprised that the 10" has never appeared (much as I wish it would...I could use 2 or 3 of them). And there may be more interest in going smaller, rather than larger.
Part of what drove the choice of the current 7" display was it being "industrial grade" (decent service life, not meant to be replaced every year or two, like a cell phone) and being one that would stay in production for several years (again, unlike cell phone screens). See the issues with the Pi camera modules for reasons for those sorts of decisions.
As for screen resolution...there are limits to what can be handled by the VC4 over the DSI interface. IIRC, a limit of 720p has been mentioned, and that is still far below what current cell phones are using.
Part of what drove the choice of the current 7" display was it being "industrial grade" (decent service life, not meant to be replaced every year or two, like a cell phone) and being one that would stay in production for several years (again, unlike cell phone screens). See the issues with the Pi camera modules for reasons for those sorts of decisions.
As for screen resolution...there are limits to what can be handled by the VC4 over the DSI interface. IIRC, a limit of 720p has been mentioned, and that is still far below what current cell phones are using.
-
- Raspberry Pi Engineer & Forum Moderator
- Posts: 10318
- Joined: Wed Dec 04, 2013 11:27 am
- Location: ZZ9 Plural Z Alpha, aka just outside Cambridge.
Re: New display with better quality possible ?
60fps 720P 24bpp RGB pretty much maxes out the two exposed DSI lanes. (1.3Gbit/s ignoring blanking periods, and DSI can carry 1Gbit/s per lane).W. H. Heydt wrote: ↑Tue Dec 18, 2018 5:33 pmAs for screen resolution...there are limits to what can be handled by the VC4 over the DSI interface. IIRC, a limit of 720p has been mentioned, and that is still far below what current cell phones are using.
60fps 1080P 24bpp RGB requries just over 3Gbit/s, so at least 3 lanes (more likely 4).
Software Engineer at Raspberry Pi Trading. Views expressed are still personal views.
I'm not interested in doing contracts for bespoke functionality - please don't ask.
I'm not interested in doing contracts for bespoke functionality - please don't ask.
-
- Posts: 2462
- Joined: Tue Jun 30, 2015 1:35 pm
Re: New display with better quality possible ?
If you want to use MIPI DSI interface you will have to develop your own baseboard as the standard Pi only exposes 2-lane DSI interface.
Higher resolution displays need 4-lanes (i.e. for FHD), that's why the standard Pi could not be connected to them at all.
If you want to go that way here are two links for you:
https://github.com/anholt/linux/wiki/Ra ... lay-panels
https://github.com/torvalds/linux/blob/ ... chscreen.c
Touchscreens use either I2C or USB interface (well, there might be other interfaces as well). Either mimik the official touchscreen, write your own driver, or use an 'internal' USB connection on your base board (i.e. USB is on the touch FPC --> no external USB connector needed; example is here i.e. viewtopic.php?f=29&t=228824)
Designing a custom CM3 baseboard is not such a big deal. It's with the effort as it gives you the flexibility you need.
I've made one for dealing with displays
Higher resolution displays need 4-lanes (i.e. for FHD), that's why the standard Pi could not be connected to them at all.
If you want to go that way here are two links for you:
https://github.com/anholt/linux/wiki/Ra ... lay-panels
https://github.com/torvalds/linux/blob/ ... chscreen.c
Touchscreens use either I2C or USB interface (well, there might be other interfaces as well). Either mimik the official touchscreen, write your own driver, or use an 'internal' USB connection on your base board (i.e. USB is on the touch FPC --> no external USB connector needed; example is here i.e. viewtopic.php?f=29&t=228824)
Designing a custom CM3 baseboard is not such a big deal. It's with the effort as it gives you the flexibility you need.
I've made one for dealing with displays
Re: New display with better quality possible ?
Did you get the digitiser on the Nexus screen working? I remember the board you developed but can remember if the digitiser was usable.
Re: New display with better quality possible ?
The new PiTop is interesting me, Full HD.
Would be nice if there was a smaller tablet size display with same res.
IPS TFT or even OLED.
Would be nice if there was a smaller tablet size display with same res.
IPS TFT or even OLED.
I'm dancing on Rainbows.
Raspberries are not Apples or Oranges
Raspberries are not Apples or Oranges
-
- Posts: 2462
- Joined: Tue Jun 30, 2015 1:35 pm
Re: New display with better quality possible ?
PCAP will require development of a controller board. As I only have one google Nexus 7 gen 1 display I see no reason why I should spend time and money in developing one.
Means: No! digitizer is not working as I was only interrested in the IPS WXGA display module. At the time of buying it, the full setup (coverglass+PCAP+LCD display) was cheaper than the LCD module only ... that's why I bought it.