This is great! I just thought of doing this same project on a larger scale, and now I find your instructable! I am planning on doing this with 6x8 of these 8x8 units. I just have to figure out how to get that many I/O lines from my Duemillanove, or how to multiplex the I/Os.
They allow you to do many things, as well as what you need to make use of more pins:
Feed in the data through one pin as a series of on and off pulses, and then output it through 8 pins of the chip which can each be connected to one of the pins on the matrix.
PLEEEAAASSSEEE help me get this working. It is SOOO awesome. I have literally spent hours trying to get this to work, but all I get is random dark and light lines. Just something like: row1 of the matrix is connected to pin X. I've tryed using the arduino website's layout but it still doesnt work. THANK YOU SO MUCH.
It is likely that you are confusing the terminals of the matrix, do a simple test before leaving for this project. Test light a row, a LED, two LEDs, the matrix until you have fully functioning. Remember that there are matrixs of a type that are not the same as used here may be that yours is different.
This is by far the coolest thing ive seen with a matrix! nice job! one suggestion for future updates is adding a score keeper, maybe with a lcd screen or 7 segment leds! that would make it just that much better
Godofal Olá, você pode obter o código no meu blog (http://blog.bsoares.com.br/arduino/ping-pong-with-8x8-led-matrix-on-arduino). o esquema não. Mas creio que as explicações dadas no blog agora para construir o seu próprio. :)
Pô, vou te contar que sou um simples curioso! trabalho com programação e gosto de eletronica, nunca fiz um curso nem nada muito formal, só curiosidade mesmo. Vlw
That looks awesome. I want to build this but instead of a 8x8 tiny matrix I will use a table with 2x2in squares that will light up. So about 32x32inch with players sitting on ether end.
PDF Downloads As a Pro member, you will gain access to download any Instructable in the PDF format.
You also have the ability to customize your PDF download.
Thanks and Good day.
I made it last night. The LED mapping took a minute, but it is a great project to better understand these LED matrices.
I ended up resistoring all my column pins... Seems not required as they're getting flashed pretty fast... any thoughts on this?
thanks, matt
They allow you to do many things, as well as what you need to make use of more pins:
Feed in the data through one pin as a series of on and off pulses, and then output it through 8 pins of the chip which can each be connected to one of the pins on the matrix.
Remember that there are matrixs of a type that are not the same as used here may be that yours is different.
and the schematics if u have them
i wanna make one :D
some minor grammar errors, and it cant translate one word (astes, wich are the bats i presume)
but its very readable :D
il make one when im done with all the projects im building atm XD
Vlw
if(ball_Y=0 ||ball_Y = 7){ //Ball bounce off top wall
ball_vertV = -ball_vertV;
}
if(ball_X=1){
if(ball_Y>LPaddle_Y && ball_Y<LPaddle_Y+1){ //Ball bounce off Left Paddle
ball_horizV = -ball_horizV;
}
}
if(ball_X=6){
if(ball_Y>RPaddle_Y && ball_Y<RPaddle_Y+1){ //Ball bounce off Right Paddle
ball_horizV = -ball_horizV;
}
}
if(ball_X=0 || ball_X=7){
//Game over
}
ball_X += ball_horizV;
ball_Y += ball_vertV;