From 6241f5a8627632242b7cf613bdc0a296ed85b35e Mon Sep 17 00:00:00 2001 From: epoch Date: Wed, 18 Nov 2020 00:35:04 -0600 Subject: added wiimote test because... I dump lots of crap into this repo. --- tests/wiimote.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/wiimote.c (limited to 'tests/wiimote.c') 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 +#include + +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"); + } +} -- cgit v1.2.3