aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorderekhe <derekhe@april1985.com>2015-06-27 18:15:41 +0800
committerderekhe <derekhe@april1985.com>2015-06-27 18:15:41 +0800
commitd7c40afa4334c25c967e8a83401ac1a968a0c084 (patch)
tree8fb36b1428ff96d6f03a75bfbbc47510fa82c37a /README.md
downloadwaveshare-7inch-touchscreen-driver-d7c40afa4334c25c967e8a83401ac1a968a0c084.tar.xz
waveshare-7inch-touchscreen-driver-d7c40afa4334c25c967e8a83401ac1a968a0c084.zip
Add touch support.
Diffstat (limited to 'README.md')
-rw-r--r--README.md73
1 files changed, 73 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..935721c
--- /dev/null
+++ b/README.md
@@ -0,0 +1,73 @@
+WaveShare 7-inch user space driver
+===================================
+I brought a [WaveShare 7-inch HDMI LCD](http://www.waveshare.net/shop/7inch-HDMI-LCD-B.htm) and it provides a USB touchscreen.
+But the company only provide binary driver and images, which is quite bad. Installing binary driver will break self compiled kernel, and you can't get updated kernels.
+I asked the company to provide the source code but they refused. They said they won't provide any source code because other companies can copy very fast so that their products can't sell out at good price.
+
+OK. If they company won't want to provide anything, that's fine. I finally find out we can still drive the touchscreen by writing a user space driver.
+
+Tested using official image: 2015-05-05-raspbian-wheezy.img
+
+# Install
+ssh into your raspiberry
+
+clone this repo into any dir,then
+
+```
+chmod +x install.sh
+./install.sh
+
+sudo restart
+```
+
+# How do I hack it
+By looking at the dmesg information, we can see it is installed as a hid-generic driver, the vendor is 0x0eef(eGalaxy) and product is 0x0005.
+0x0005 can't be found anywhere, I think the company wrote their own driver to support this.
+
+## dmesg infomation
+```
+[ 3.518144] usb 1-1.5: new full-speed USB device number 4 using dwc_otg
+[ 3.606036] udevd[174]: starting version 175
+[ 3.631476] usb 1-1.5: New USB device found, idVendor=0eef, idProduct=0005
+[ 3.641195] usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
+[ 3.653540] usb 1-1.5: Product: By ZH851
+[ 3.659956] usb 1-1.5: Manufacturer: RPI_TOUCH
+[ 3.659967] usb 1-1.5: SerialNumber: \xffffffc2\xffffff84\xffffff84\xffffffc2\xffffffa0\xffffffa0B54711U335
+[ 3.678577] hid-generic 0003:0EEF:0005.0001: hiddev0,hidraw0: USB HID v1.10 Device [RPI_TOUCH By ZH851] on usb-bcm2708_usb-1.5/input0
+```
+kernel config provide us more clue:
+```
+CONFIG_USB_EGALAX_YZH=y
+```
+
+It is really a eGalaxy based device. Google this config but found nothing. I don't have a eGalxy to compare, maybe waveshare's touchscreen is only modifed the product id.
+
+Then I look at the response of hidraw driver:
+
+## hidraw driver analysis
+```
+pi@raspberrypi ~/python $ sudo xxd -c 25 /dev/hidraw0
+0000000: aa00 0000 0000 bb00 0000 0000 0000 0000 0000 0000 0000 0000 00 .........................
+0000019: aa01 00c5 0134 bb01 0000 0000 0000 0000 0000 0000 0000 0000 cc .....4...................
+```
+
+You can try by your self, by moving the figure on the screen you will notice the value changes.
+Take one for example:
+```
+0000271: aa01 00e4 0139 bb01 01e0 0320 01e0 0320 01e0 0320 01e0 0320 cc .....9..... ... ... ... .
+```
+
+"aa" is start of the command, "01" means clicked while "00" means unclicked. "00e4" and "0139" is the X,Y position (HEX).
+"bb" is start of multi-touch, and the following bytes are the position of each point.
+
+## Write the driver
+I use python to read from hidraw driver and then use uinput to emulate the mouse. It is quite easy to do. Please look at the source code.
+
+## Other systems
+I think this driver can work in any linux system with hidraw and uinput driver support.
+
+## Calibration
+I didn't write any calibration because my touchscreen is working fine.
+
+## Multitouch
+Hmmm, I'm lazy, do it yourself. \ No newline at end of file