Okay, I guess I don't see how this hits all 8 pins then:
int numberpairs = 4;
int remotePins[][2] = {{2,3},
{4,5},
{6,7},
{8,9}};
void setup()
{
Serial.begin(9600);
for (int Info=0; i < numberpairs*2; i++) //
{
pinMode(remotePins [Info][0], OUTPUT);
pinMode(remotePins [Info][1], OUTPUT);
}
}
(int Info=0; i < numberpairs*2; i++) Info and i would need to the same here, yes?