summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/wiimote.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/wiimote.c b/tests/wiimote.c
new file mode 100644
index 0000000..229f920
--- /dev/null
+++ b/tests/wiimote.c
@@ -0,0 +1,27 @@
+#include <stdio.h>
+#include <sys/time.h>
+
+struct input_event{//totals to 24
+ struct timeval time;
+ unsigned short type;
+ unsigned short code;
+ unsigned int state;
+};
+
+int main(int argc,char *argv[]) {
+ int i;
+ struct input_event ie;
+ int x,y,z;
+ while(!feof(stdin)) {
+ read(0,&ie,sizeof(struct input_event));
+ printf("type: %d :: ",ie.type);
+ if(ie.code == 3) x=ie.state;
+ if(ie.code == 4) y=ie.state;
+ if(ie.code == 5) z=ie.state;
+ printf("%15d %15d %15d",x,y,z);
+ //for(i=0;i<16;i++) {
+ // printf(" %02x",(unsigned char)ae.derp[i]);
+ //}
+ printf("\n");
+ }
+}