Hi, I said I would make a new post for the software of the robot (advised by mehtaatur).
I've began testing my switch matrix and Ive been having a bit of a problem. On the serial monitor I get rows of 8 1's (11111111). And when I put the magnets close some of the 1's turn to 0's. But it does not happen to all of them. I'm not sure if maybe some of my wiring is wrong or maybe some of my switches could be broken?
This is the program I am using.
_______________________________________________________________________________________________________________________________________________________
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println("Reed Switch Array: \n");
int ColumnDetect[9] = {A5, A4, A3, A2, A1, A0, 11, 10}; //Array with the 8 detection pins in sequence from left to right in diagram
for (int i=2; i
{ // connect to pins 2, 3, 4, 5 , 6, 7, 8, 9 here - VCC
digitalWrite(i, HIGH);
for (int j=0; j
{ // connect to pins in ColumnDetect array in order - Reads signal from here
Serial.print(digitalRead(ColumnDetect[j]));
}
digitalWrite(i, LOW);
Serial.println();
}
Serial.println("\nEND \n");
}
My Internet is not working on my laptop tonight so when I get it back I will upload more detailed photos.
Cannot see the picture very
Cannot see the picture very good, but i would say check your wiring, if that little program says only some turn on and off, then it would be right.
I also see, but dont know the schematics, that some wires attached to the small lines are soldered to 2 differen points, on the left side of the picture, the soldering between the 2 parts of the board seem to be connected to different points.
But the only way is to take the multimeter and check every point.
Goodluck and looks like its going to be a very interesting project to follow!
I had another look at my
I had another look at my wiring and changed the wires as I thought that was the problem.
(I just realised that I used the wrong colour wires for rows and columns, not that it makes any difference)
But even with this I am getting the same results. Sometimes if I move around the arduino board with my hand some of the switches do change, does this mean it is probably bad connections?
Motors
Ahoy Paddymcd.. Here's a
Ahoy Paddymcd..
Here's a script I put together for you...
[[home/Paddymcd/chessgame.py]]
You'll see in the video what the script does.
It starts ChessGame, Arduino and Serial service.
It subscribes Python service to the ChessGame's publishMove event - the data in the parameter is a String.
The String contains a "x", a from & too coordinates, then a "n" or an "i" .. I believe "i" is illegal move and "n" is normal?
It then breaks the coordinates up and re-maps them to numbers of steps (I was guessing a 100 steps between squares - but its probably less)
The stepper stuff is commented out because its not implemented yet.. you might want to defer to mehtaatur and send the data to the Arduino where it could be consumed by some stepper library.
Thanks Grog, from your video
Thanks Grog, from your video it looks to be workign very well.
You said in your email that I must have the latest myrobotlab.jar, but when I download from the link you have given I do not get any services available and the whole thing freezes. The version I have been using all along is gui 1.0.99, is this an older version?
Also when I paste the MRLComm.ino version 21 into my Arduino IDE I get the following errors.
My Bad, I partially
My Bad,
I partially implemented steppers - should be good now
Guess that those wires put in
Guess that those wires put in the arduino dont make full contact, and if you wiggle them on the arduino and the go on, yeah you have some bad connections. Try if you can get some male headers and solder the wires to them, makes a much better connection.
hello r u still here ?
hello r u still here ?