From this thread on ubuntuforums.org I got a link http://pof.eslack.org/blog/2008/06/05/gsensor-joy-htc-shift-g-sensor-joystick-linux-kernel-module/ of a blog where the author presents his kernel module for using the gyro sensor from the HTC Shift (which is similar to the gyro sensor from the Acer 1825) as a joystick. This site is although the base for my presented scripts and applications for auto rotating the display of the Acer 1825. The problem is, that the presented module does not work on a current kernel, because the architecture of the i2c-bus driver changed in linux kernel 2.6.
After some research I figured out, how to migrate this old driver module to a up to date kernel like in Ubuntu 10.10 and after some more modifications I got it working and now you are able to use the gyro sensor of the Acer 1825 (much more notebooks have the same gyro chip, the module should be usable after minor changes).
[dm]4[/dm]
Here comes what you need to do:
Download the source package, extract it and change into its folder.
1 2 3 4 5 6 | make sudo make install sudo modprobe i2c_i801 # if you use the auto rotation script you still use it sudo modprobe i2c_dev # if you use the auto rotation script you still use it sudo modprobe joydev sudo modprobe gsensor-joy |
If you want the modules automatically loaded every boot, you can also add them to /etc/modules.
After that step you should have a new input device /dev/input/js0
The readme describes a way of adding the joystick to xorg.conf but I did not try this way, I calibrated it with jscal and everything works out of the box.
Calibrate the joystick:
1 2 3 4 5 6 7 | sudo apt-get install joystick jscal -c /dev/input/js0 #save the calibration into a file, without that you need to calibrate again every reload of the module sudo jscal -p /dev/input/js0 > /etc/joystick.cal #reloading the calibrations after a loading the module again (bootup...) source /etc/joystick.cal # you could altough put this line to /etc/rc.local if you want that done automatically. But if you do this, all modules must be in /etc/modules |
If everything works fine you are able to use the joystick for example in tux racer or neverball.
In default mode the axis are configured for the way that you play in tablet mode. If you want to change that behavior took a quick look into the source (easy to find) or use the module parameters (boolean) swap_xy; invert_x; invert_y. Default all this parameters are setted for the Acer 1825PT(z) and HTC Shift.
I don’t know if my module works on the HTC Shift with a up to date kernel, maybe the driver needs some minor changes. If you try it compare my source with the original from the link above.
Don’t forget to disable auto rotation during gaming (see my last post) XD
Helpful sites and information for this project:
http://lxr.free-electrons.com/source/Documentation/i2c/upgrading-clients?a=avr32
http://www.mjmwired.net/kernel/Documentation/i2c/writing-clients
http://www.embedded-bits.co.uk/?tag=i2c_add_driver
If you want to tune something check out the datasheet of the gyro sensor.
[dm]5[/dm]
Hmmm… I woke up one morning to find that gyro-auto-rotate.run is no longer working ( I think it was after I upgraded to .35-27)
I have re-followed your instructions on how to load the modules and such, rebooted, but no accelerometer found. However, after testing the joystick from SuperTuxCart, it still works. Is there any way to re-write the auto-rotate code to rotate from joystick instead of directly from accelerometer?
Scratch that, mate. Got it working – don’t you wish there was an Ubuntu Tablet Edition which came with these things pre-installed as a priority?
(HINT: Why don’t we make our own distro of Ubuntu)
I did all customizing one time, therefore it was no problem.
p.s. How do you fix it?
I think making an own distro is a lot of work and at the moment I have to many freetime IT projects, but if you start it, maybe I would contribute.
Great Blog 😀 THX