https://dl.dropbox.com/u/88787/IMG_20120805_203946.jpg
My USB controller uses CY7C63xx that is a USB to serial, now I think I would need a driver for HID through serial, over USB...
I shall move to another forum: how to compile Raspbian ...

Cheers
Code: Select all
sudo vi /etc/rc.local
Code: Select all
insmod /lib/modules/3.2.27-cutdown+/kernel/drivers/input/misc/uinput.ko
schryer wrote:Lilliput UK makes a monitor that seems to be compatible
with the RPi. I am thinking about ordering one...
http://www.carcomputer.co.uk/index.php? ... en-monitor
thank youjfornango wrote:One possible solution (god love the people at AdaFruit): http://www.adafruit.com/products/335 They say up front that it is designed for an Arduino, but they wrote an open-source library that should be "easily adaptable." If you don't mind the smaller display area, this would be a good starting spot for developing a package for "official" consideration.
Code: Select all
hdmi_group=1
hdmi_mode=3
hdmi_drive=2
hdmi_ignore_edid=0xa5000080
Code: Select all
Section "InputClass"
Identifier "calibration"
MatchProduct "eGalax Inc. USB TouchController"
Option "Calibration" "79 4012 3895 262"
Option "SwapAxes" "1"
EndSection
If you're running Archlinux just install "libxext" (it will also install "xextproto" as dependency):msmithy12 wrote:im trying to get xinout callibrator installed and i keep getting,
package requirements (x11 xext xi inputproto) were not met
Code: Select all
# pacman -S libxext
Code: Select all
sudo apt-get install libx11-dev
sudo apt-get install libxext-dev
sudo apt-get install libxi-dev
sudo apt-get install x11proto-input-dev
Code: Select all
tar xvzf (downloaded file)
cd (downloaded file)
./configure
make
sudo make install
msmithy12 wrote:You guys are amazing, thank you!
Incase anyone is on here in the future heres what i did to get my touchscreen running.
if any of those fail run update and upgrade and try againCode: Select all
sudo apt-get install libx11-dev sudo apt-get install libxext-dev sudo apt-get install libxi-dev sudo apt-get install x11proto-input-dev
then
download http://github.com/downloads/tias/xinput ... 7.5.tar.gz
thenCode: Select all
tar xvzf (downloaded file) cd (downloaded file) ./configure make sudo make install
prefrances/calibrate touchscreen
Thats the way i did it, i'd love to post a video but Im using the pi/touchscreen for a company project and uploading a youtube a vid of what im doing would get me fired.aragats wrote:The "xinput_calibrator" program is self-explaining, just run it in graphical environment from a terminal emulator (xterm, urxvt etc.) and it will ask to touch the screen at drawn crosses sequentially in 4 corners and in the center, then it will produce a textual output with simple instructions. ...