and if not, which ones are and aren’t.
In trying to build a programmable stick (arduino x Hori Wireless stick), I ran in to a lot of problems with garbled outputs. If I did
1,2,3,1,2,3,1,2,3 (1F for each input) with Paul in T6, I got lots of variations
http://img834.imageshack.us/img834/328/16667b.png
Simplifying things, I wrote a simple arduino sketch
int pins[10]={22,23,24,25,26,27,28,29,30,31}; //Wireless Hori
//int pins[10]={15,16,17,18,19,3,4,5,6,7}; RAP V3
int i;
void setup()
{ for(i=0;i<10;i++){pinMode(pins*,OUTPUT);}
//for (i=0;i<10;i++){digitalWrite(pins*,HIGH);}}
void loop()
{digitalWrite(pins[0],HIGH);digitalWrite(pins[4],LOW);
delay(1000/60);
digitalWrite(pins[0],LOW);digitalWrite(pins[4],HIGH);
delay(1000/60);
}
which presses one button for a frame, then releases and presses the other button for a frame, and repeats.
On the Hori wireless this gives
http://img593.imageshack.us/img593/6886/streetfighteriv20110910.png
whereas on the HRAP V3 it gives
http://img718.imageshack.us/img718/6886/streetfighteriv20110910.png
(ignore the fact that the buttons pressed are not the same, the point is one gives a consistent on/off pattern whereas the other is very inconsistent.
So is the wireless jumbling up the commands? I have a strong feeling that on doing something with the Hori Fighting Stick 3 two years ago I suspected something similar.
Are other sticks known to have problems like this?