
I wired up one of the network cable connectors to just turn the data around. I looked at A mode and just hooked green up to green white, orange up to orange white, blue up to blue white, and brown up to brown white. The two punch downs on the side closest to where the wire connects just loop around, and the two on the back side connect strait across.



The code was pretty strait forward. I just needed to set all the pins into input mode and then one at a time set a pin to output mode HIGH and then read all the other pins to make sure I get a voltage on one and only one pin, and that it is the correct pin. Then set that pin back to LOW and make it an input again, and select the next pin and do the same thing. If everything is good, light an LED green.
The Arduino is able to easily perform these checks 4 times a second, giving me the opportunity to move the cables around and see of there are any intermittent contacts on either end or breaks in the wire.
I found the correct pin order by reading a known good cable. It was an A cable, then I read a B cable and it returned the exact same pin order. So I thought that a cross over cable must be different, but it returned the exact same pin order as A and B modes. So that made that easy. Still don't understand why a cross over cable works the same as A and B. I tested it on several cables to make sure the cables I had were correct.
The code is as follows:
//Uncomment the following line to see output on the serial terminal.
//#define SERIALDEBUG 1
int good[8]= { 3, 2, 5, 4, 7, 6, 9, 8};
void setup() {
#ifdef SERIALDEBUG
Serial.begin(115200);
//Serial.println("Checking pins.");
#endif
// initialize the digital pin as an output.
pinMode(12, OUTPUT);
}
void loop() {
int x, y, z;
// Set all the pins low.
for (x=2; x<10; x++) {
digitalWrite(x, LOW);
pinMode (x, INPUT);
}
z=0;
// Go through each pin, one at a time.
// find where pin was routed to
for (x=2; x<10; x++) {
// setup current pin
pinMode(x, OUTPUT);
digitalWrite(x, HIGH);
delay(10);
// Find matching pin.
for (y=2; y<10; y++) {
if (x==y) continue;
if (digitalRead(y) == HIGH) {
if (good[x-2] == y)
z++;
else
z+=100;
#ifdef SERIALDEBUG
Serial.print("good ");
Serial.print(good[x-2]);
Serial.print(" Z ");
Serial.print(z);
Serial.print(" Pin ");
Serial.print(x);
Serial.print(" is wired to pin ");
Serial.println(y);
#endif
}
}
// Set current pin back to the rest
digitalWrite(x, LOW);
pinMode (x, INPUT);
}
if (z == 8)
digitalWrite(12, HIGH);
else
digitalWrite(12, LOW);
#ifdef SERIALDEBUG
Serial.println("");
delay(1000);
#else
delay(200);
#endif
}
No comments:
Post a Comment