Index: wmd/EventBridges/uinput.py
===================================================================
--- wmd/EventBridges/uinput.py	(revision 55)
+++ wmd/EventBridges/uinput.py	(working copy)
@@ -87,6 +87,9 @@
     if 'EV_REL' in self.iochannels:
       self.ev.subscribe( REL_POS, self.ev_rel_pos )
 
+    if 'WM_ACC' in self.iochannels:
+      self.ev.subscribe( WM_ACC, self.wm_acc_pos )
+
     log( LOG_UINPUT, "uinput: initialized and ready" )
 
   def get_uinput_dev( self ):
@@ -157,6 +160,9 @@
     y *= 1024
     self.abs_report( x, y )
 
+  def wm_acc_pos( self, force ):
+    self.abs_report( force['x'] * 4, (255 - force['z']) * 4 )
+
   def abs2rel( self, abs_x, abs_y ):
     sf = 8.0
 
@@ -218,8 +224,14 @@
       'EV_KEY': [
 	[ self.UI_SET_EVBIT, self.EV_KEY ],
 	[ self.UI_SET_EVBIT, self.EV_SYN ]
-      ]
+      ],
 
+      'WM_ACC': [
+	[ self.UI_SET_EVBIT, self.EV_ABS ],
+	[ self.UI_SET_ABSBIT, self.ABS_X ],
+	[ self.UI_SET_ABSBIT, self.ABS_Y ]
+      ],
+
     }
 
     for btn in self.cf['commandMap']:
Index: wmd/Config.py
===================================================================
--- wmd/Config.py	(revision 55)
+++ wmd/Config.py	(working copy)
@@ -12,8 +12,10 @@
 ##
 ## This is the address of my Wiimote.
 ##
-'MY_WIIMOTE_ADDR': "00:17:AB:36:09:52",
+#'MY_WIIMOTE_ADDR': "00:17:AB:36:09:52",
 #'MY_WIIMOTE_ADDR': "00:19:1D:25:16:43",
+'MY_WIIMOTE_ADDR': "00:19:1D:7F:C6:F7",
+#'MY_WIIMOTE_ADDR': "00:19:1D:25:16:43",
 ## 
 ## Or, if I'm lazy, I'll just comment it out and uncomment
 ## An empty address: it will force autodetection:
@@ -49,9 +51,10 @@
 ## The only channel I'd consider changing for now is 'EV_ABS' to 'X_EVDEV'
 ##
 'IO_CHANNELS': { 
-  'EV_ABS': 'XLIB',
+  'EV_ABS': '',
   'EV_KEY': 'UINPUT',
-  'EV_REL': 'UINPUT'
+  'EV_REL': '',
+  'WM_ACC': 'UINPUT',
 },
 ##
 ##
@@ -104,11 +107,11 @@
 ##
 ##
 ## This will enable IR sensing by default
-'IR_ENABLE': 1,
+'IR_ENABLE': 0,
 ##
 
-'DISABLE_PYLAB': 0,
-'DISABLE_PYGAME': 0,
+'DISABLE_PYLAB': 1,
+'DISABLE_PYGAME': 1,
 'DISABLE_PYOSD': 1,
 ##
 ## If you having trouble reaching the edges of your screen with the IR mouse

