tests/wiimote/py_ext_0@py_ext/pyfile.xml
changeset 1185 b36755d7c19e
parent 1157 72d14a74c643
--- a/tests/wiimote/py_ext_0@py_ext/pyfile.xml	Wed May 29 11:08:00 2013 +0900
+++ b/tests/wiimote/py_ext_0@py_ext/pyfile.xml	Wed May 29 11:09:05 2013 +0900
@@ -3,8 +3,11 @@
   <variables>
     <variable name="WiiNunchuckStickX" type="INT"/>
     <variable name="WiiNunchuckStickY" type="INT"/>
-    <variable name="WiiNunchuckButtons" type="BYTE"/>
-    <variable name="WiiButtons" type="BYTE"/>
+    <variable name="WiiNunchuckAccX" type="INT"/>
+    <variable name="WiiNunchuckAccY" type="INT"/>
+    <variable name="WiiNunchuckAccZ" type="INT"/>
+    <variable name="WiiNunchuckButtons" type="WORD"/>
+    <variable name="WiiButtons" type="WORD"/>
   </variables>
   <globals>
 <![CDATA[
@@ -24,6 +27,9 @@
     if nunchuck is not None:
         PLCGlobals.WiiNunchuckButtons = nunchuck['buttons']
         X,Y = nunchuck['stick']
+        PLCGlobals.WiiNunchuckAccX = nunchuck['acc'][cwiid.X]
+        PLCGlobals.WiiNunchuckAccY = nunchuck['acc'][cwiid.Y]
+        PLCGlobals.WiiNunchuckAccZ = nunchuck['acc'][cwiid.Z]
         if nunchuckzero is None:
             nunchuckzero = X,Y
         (PLCGlobals.WiiNunchuckStickX,