EP-0085

From 52Pi Wiki
Jump to navigation Jump to search

7-Inch-1024x600 Capacitive Touch Screen ( Extend Two USB HOST Port)

* Purchase URL [ https://52pi.com/products/7-inch-1024-600-display-capacitive-touch-screen-monitor-raspberry-pi-all-models-pc-beaglebone-black-plug-and-play ]

Description

This is our brand new product, it is a fantastic 7 inch HDMI monitor with capacitive touch screen and driver free.
It's been tested on Raspberry Pi, beagle bone black, windows 10 and Mac book pro.
And it works well on those platform and it really plug and play, all you need to do is to adjust the resolution(on RaspberryPi).

It supports 1024x600 resolution and you may find that the pictures are more bright when you are using this display.
The capacitive touch function give the user full control over any device.
It's driver free for your device due to built-in EDID device information, it is very easy to let the equipment correctly identified the touch screen.
And the Capacitive USB touch screen can support functions of the right mouse button and drag and drop,
and also support multipoint touch, maximum 10 points.(only test in windows 10)

For use with a Raspberry Pi we suggest editing config.txt to set the HDMI to the native 1024x600 in case it doesn't detect the resolution properly.
The easiest way to edit the config.txt is to put the Pi TF card into an every day computer and edit config.txt with any text editor and save.

And most valuable things is it has been extended with two USB HOST ports.
So that you can hookup more USB devices to your screen, for example, the USB dongle or the USB mouse or keyboard.

Compatibility List

  • Compatibility
Platform Screen and driver board Notes
Raspberry Pi 4 Model B
Raspberry Pi 3 Model A Plus
Raspberry Pi 3 Model B Plus
Raspberry Pi 3 Model B
Raspberry Pi 2 Model B
windows 7/8/10
Mac
Tinker Board 20180622-tinker-board-linaro-stretch-alip-v2.0.7

Gallery

7inchCTPUSBF01.jpg
7inchCTPUSB10.jpg
7inchCTPUSBF02.jpg

7inchCTPUSB01.jpg
7inchwithmark.jpg
7inchCTPUSB03.jpg

Feature

7inchCTPUSB04.jpg
  • Resolution up to 1024 x 600
  • USB Capacitive touch control
  • Free-driver, Plug and Play
  • Supports Raspbian, Ubuntu Mate, NOOBS with RaspberryPi
  • Supports Debian, Angstrom with BeagleBone
  • Supports Windows / Ubuntu / Mac with PC
  • Supports Intel-Processor Base MiniPC
  • ULP (Ultra Low Power) consumption backlight
  • Extend Two USB HOST Ports
  • Power Supply 5V/1A via USB port

Parameters

  • Power: 5V Power via USB Micro
  • Current: Max 500mA
  • Display Type: 7 inch TFT LCD
7inchCTPUSB12.jpg
  • Resolution: 1024x600
  • Touchscreen: USB capacitive
  • Touch points: 10 points maximum
  • Interface: HDMI & USB 2.0 Full Speed
  • Brightness:250 cd/m² (Typ.)
  • Contrast Ratio:500:1 (Typ.) (TM)
  • View Angle: 70/70/50/70 (Typ.)(CR≥10)
  • Respones Time: 10/15 (Typ.)(Tr/Td) ms
  • Dimensions: 177.06mm x 113.09mm x 15.2mm
  • Weight without package: 230g
  • Weight with package: 350g

Package includes:

  • 1 x 7 Inch Capacitive HDMI Display
  • 1 x 30cm High Quality HDMI cable wire
  • 1 x MicroUSB Cable wire

Applications

7inchctp003.jpg
7inchctp004.jpg
7inchctp005.jpg
  • Please make sure the FPC cable is fastened and please connect the MicroUSB cable to your device so that it can communicate with the touch panel.
  • Please make sure the USB power cable is connected properly.

7inchCTPUSB09.jpg
7inchCTPUSB06.jpg
7inchCTPUSB07.jpg

7inchCTPUSB08.jpg
7inchCTPUSB05.jpg
7inchCTPUSB10.jpg

Mechanical Design Drawing

7inchCTP-MechanicalDrawing.png


  • Download PDF file:

File:7-inch-1024x600-Capacitive-Touch-Screen-Extend-Two-USB-HOST-PORT-Mechanical-Drawing.pdf


Screen Dimension

TP Dimension.jpg


Port Description

7inchwithmark.jpg


How to connect

  • Please follow the picture to connect the touch screen.
7inchctpconn.jpg


Raspberry Pi Configure

  • How to setup resolution for the screen:
    • You can modify /boot/config.txt file with vim.tiny or nano editor, and change the parameters as following chart:
Resolution config file
1024x600

hdmi_group=2
hdmi_mode=87
hdmi_cvt 1024 600 60 3 0 0 0
hdmi_force_hotplug=1

Please reboot Raspberry Pi after modifying the /boot/config.txt


How to setup Resolution Automatically

There is a easy way to setup resolution of your screen by a shell script, you can download the scripts by git tool and use it to change resolution for your screens as following steps:
git clone https://github.com/geeekpi/lcd-config.git
cd ~/lcd-config
sudo chmod +x resolution_tool.sh
sudo bash resolution_tool.sh
and then follow the step to chose the screen type that you have, and it will automatically setup the resolution for you.


How to invert rotate (clockwise or counterclockwise 180°) on touch screen

  • 1. Make a folder named "/etc/X11/xorg.conf.d"
sudo mkdir -pv /etc/X11/xorg.conf.d
  • 2. Create a configuration file named: "40-libinput.conf" in the folder that created before.
sudo vim.tiny  /etc/X11/xorg.conf.d/40-libinput.conf
  • 3. Paste this paragragh to your file
# Match on all types of devices but tablet devices and joysticks
Section "InputClass"
        Identifier "libinput pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
#       please make sure you have this parameter.
        Option "CalibrationMatrix" "-1 0 1 0 -1 1 0 0 1
EndSection

Section "InputClass"
        Identifier "libinput tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection
  • Please make sure you have this line in the Touch screen section:
Option "CalibrationMatrix" "-1 0 1 0 -1 1 0 0 1

And then save it and reboot your system.

FAQ

  • Question: I would like to know how can I change the brightness and contrast?
  • Answer: I'm so sorry about that, you can not change the brightness and contrast.

  • Question: why did i hookup everything but the touch panel is out of work?
  • Answer: You need to plug the microUSB cable to the data microUSB port which is close to the standard USB port. it is far away from the HDMI cable.
FAQ1.jpg



  • To Configure Resolution:

If 7 inch screen is connected to Raspberry Pi, please configure resolution to 1024x600, otherwise it will not display properly. How to setup resolution please see the sections before.


  • To Adjust Output:

If 7 inch screen is connected to computer but it does not display, please check the output settings of computer, and adjust the output souce to HDMI.


  • No Driver Required:

The capacitive touch screen does not require additional driver due to the driver has been integrated on the board before it send out.


  • About Touch Functions:

If the touch function does not work properly, or no respond, please try another MicroUSB cable which supports data transfer, you can also connect extra power cable.


  • About FPC Connection:

If the screen can display but is not normal, please check if the FPC cable is not fitted tightly, then reconnect the screen to your device.

Video tutorial for connection

Youtube.jpeg


Please follow the link: [How to connect 7 inch capacitive touch screen to laptop | https://youtu.be/s_L0sTpbpQU ]