It appears to be slightly different on this OE version:
dmesg snippet:
[ 0.880000] Chumby bend sensor driver version 2.3-Falconwing initializing (scross@chumby.com)...
[ 0.890000] input: bend-sensor as /devices/platform/bend-sensor/input/input0
[ 0.930000] input: STMP3XXX touchscreen as /devices/virtual/input/input1
[ 0.930000] input: stmp3xxx-rotdec as /devices/virtual/input/input2
Which sounds like the knob is /dev/input/event2
and the switch is actually /dev/input/event0
root@chumby-falconwing:/dev/input# ls -lR
.:
drwxr-xr-x 2 root root 100 Jun 2 18:33 by-id
drwxr-xr-x 2 root root 60 Jun 2 18:33 by-path
crw-r----- 1 root root 13, 64 Jun 2 18:33 event0
crw-r----- 1 root root 13, 65 Jun 2 18:33 event1
crw-r----- 1 root root 13, 66 Jun 2 18:33 event2
crw-r----- 1 root root 13, 63 Jun 2 18:33 mice
crw-r----- 1 root root 13, 32 Jun 2 18:33 mouse0
lrwxrwxrwx 1 root root 6 Jun 2 18:33 touchscreen0 -> event1
./by-id:
lrwxrwxrwx 1 root root 9 Jun 2 18:33 soc-noserial-event-kbd -> ../event0
lrwxrwxrwx 1 root root 9 Jun 2 18:33 soc-noserial-event-ts -> ../event1
lrwxrwxrwx 1 root root 9 Jun 2 18:33 soc-noserial-ts -> ../mouse0
./by-path:
lrwxrwxrwx 1 root root 9 Jun 2 18:33 platform-bend-sensor-event-kbd -> ../event0
Before I run my pygame app I need the following 'export' in order to get the touchscreen to work, will I need something similar for the rotary wheel and switch?
# export SDL_MOUSEDRV=TSLIB
John