Tehrasha Darkon - 2006-10-01

Im not sure where to begin, so I will show you what I have, and what I hope to do with it...

Generic Input Plugin v2:3 [!ListDevices]
   - Device [/dev/input/event0] : [AT Translated Set 2 keyboard]
   - Device [/dev/input/event1] : [HID 050d:0805]
   - Device [/dev/input/event2] : [Griffin Technology, Inc. iMate, USB To ADB Adaptor]
   - Device [/dev/input/event3] : [Griffin Technology, Inc. iMate, USB To ADB Adaptor]
   - Device [/dev/input/event4] : [Logitech Trackball]
   - Device [/dev/input/event5] : [PC Speaker]
   - Device [/dev/input/event6] : [Griffin PowerMate]

::gizmoDaemonConfig.py

DEVICE_KEYBOARD = "keyboard"
DEVICE_MOUSE = "Trackball"
DEVICE_ATIX10 = "X10 Wireless Technology"
DEVICE_POWERMATE = "Powermate"

With the above, I've got them all working as I would expect them to.
So I assumed that I could change the device names to capture keypresses, etc. from those devices.

Changed gizmoDaemonConfig.py to

DEVICE_KEYBOARD = "HID 050d:0805"
DEVICE_MOUSE = "iMate"
DEVICE_ATIX10 = "X10 Wireless Technology"
DEVICE_POWERMATE = "Powermate"

Nothing at all appears in the debug when the devices are manipulated.
Although when I use the mouse connected to the iMate, I do see X11 window changes when the cursor changes focus.
All three mouse buttons appear as a left click, which I hope gizmod can be made to capture and fix.

Device #1 [HID 050d:0805] is a Belkin Nostromo n50 gamepad
Basically its an 18key device with a single axis analog 'throttle'.

Device #2 and 3 are both the same Griffin iMate USB->ADB adapter.
I believe it appears twice because it can appear as a mouse or a keyboard.

If I can get all of that working, I would like to attempt the impossible and have gizmod capture the input from my ADB graphics tablet plugged into the iMate.  But this may be more than gizmod can be expected to do.

Any clues, suggestions, ridicule?
Thanks