Possible to pass pygame data to memory map block?

Posted by toozie21 on Game Development See other posts from Game Development or by toozie21
Published on 2014-06-05T18:32:49Z Indexed on 2014/06/05 21:43 UTC
Read the original article Hit count: 184

Filed under:
|

I am building a matrix out of addressable pixels and it will be run by a Pi (over the ethernet bus). The matrix will be 75 pixels wide and 20 pixels tall. As a side project, I thought it would be neat to run pong on it. I've seen some python based pong tutorials for Pi, but the problem is that they want to pass the data out to a screen via pygame.display function.

I have access to pass pixel information using a memory map block, so is there anyway to do that with pygame instead of passing it out the video port?

In case anyone is curious, this was the pong tutorial I was looking at: Pong Tutorial

© Game Development or respective owner

Related posts about python

Related posts about pygame