i have an arachnid board that has 11x11 connectors. I am under the impression that i cannot use the arduino uno because there are not enough inputs/outputs. So I must use the arduino Mega2560 for more inputs. Is the original Uno sketch going to work "out of the box" persay? I know ill have to change the file as far as how it's using the matrix, but is the file itself compatible?
Thanks!
Cory
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i opened a different board today and hooked that up. unfortunately its an 8x11 matrix so i need my arduino mega to come in. i hooked it up with one wire not connected and it worked with a bunch of segments not working due to that wire not being connected.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi. Just adding this for others who might encounter the same as Cory. Using an Arachid Cricket Pro 650 doner board, I found what looked like 10 x 8 matrix. As Andreas lists above, this is possible with the Uno. One other problem was that the outer single panels and the inner single panels were returning different values. I mapped these all out and then edited the keymap above to return the same value when either the inner or outer Single panel was hit for a number. For example, let's say the outer Single panel for 10 was returning a "=", but the inner Single panel for 10 was returning a ")". I just switched the code in the sketch so that inner single panel also returned a "=". Works flawlessly.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2023-10-24
Do you have a copy of the key mapping by chance?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
i have an arachnid board that has 11x11 connectors. I am under the impression that i cannot use the arduino uno because there are not enough inputs/outputs. So I must use the arduino Mega2560 for more inputs. Is the original Uno sketch going to work "out of the box" persay? I know ill have to change the file as far as how it's using the matrix, but is the file itself compatible?
Thanks!
Cory
hi cory,
11x11 seems strange could you send us a picture?
View and moderate all "General Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Discussion"
Attched I have the pictures. Each cable has 11 leads on them!
Last edit: Cory Baumgart 2017-04-23
Hi Cory,
My opinion is that there are multiple reasons for that :
Anyway, I am pretty sure that there are only minor changes to do to the sketch files. Probaly only the matrix to adjust.
Last edit: poilou 2017-04-23
OK! That's kind of what I thought. Maybe if I get bored I'll trace some leads and see whats going on with it. Thanks for the input!
What's up with your board Cory ?
i opened a different board today and hooked that up. unfortunately its an 8x11 matrix so i need my arduino mega to come in. i hooked it up with one wire not connected and it worked with a bunch of segments not working due to that wire not being connected.
8x11 is possible:
add to your setup: UCSR0B = 0; //use of D0 and D1
void setup()
then:
i cannot promise this, but should work
Last edit: Andreas 2017-05-01
Hi. Just adding this for others who might encounter the same as Cory. Using an Arachid Cricket Pro 650 doner board, I found what looked like 10 x 8 matrix. As Andreas lists above, this is possible with the Uno. One other problem was that the outer single panels and the inner single panels were returning different values. I mapped these all out and then edited the keymap above to return the same value when either the inner or outer Single panel was hit for a number. For example, let's say the outer Single panel for 10 was returning a "=", but the inner Single panel for 10 was returning a ")". I just switched the code in the sketch so that inner single panel also returned a "=". Works flawlessly.
Do you have a copy of the key mapping by chance?
Last edit: John Morris 2023-10-24
thanks!