PewPew Lite FeatherWing on Tindie by Radomir Dopieralski (deshipu).
A shield for Adafruit Feather boards that turns them into a tiny handheld game console.
What is it?
It’s an add-on board (a “shield” or a “FeatherWing”) for the Adafruit’s Feather family of development boards, which turns it into a tiny handheld game console. It has 6 buttons and a 4-color 8×8 pixels display. It comes with a library for CircuitPython for writing the games.
You will receive the board itself, the male pin headers, and the LED matrix. You will have to solder them all together yourself. To actually use it, you will also need an Adafruit Feather board capable of running CircuitPython, with matching headers, and optionally, a LiPO battery. You can get those from adafruit.com or their distributors.Why did you make it?
I think that Adafruit’s CircuitPython boards are currently the easiest way to start with electronics — you just plug them into your computer, and edit the Python files on the USB drive that appears. They also come with a wide variety of add-ons, but there is nothing that lets you make a game console out of it. I think that writing your own games is a great way of learning to program, so I made this.What makes it special?
I tried to make it as simple as possible, removing anything that stands between you and your games. The Feather boards have no operating system, no SD cards that you would need to flash, no drivers to install (unless you have a really old version of Windows), and no possibility of breaking, short of physically damaging them. This board adds the 6 buttons (4 directions and 2 fire buttons) and a very simple, low-resolution, 4-color display, and that’s it. You don’t have to worry about pretty graphics, because you will basically be using single pixels for your game objects. You don’t have to worry about sound, because there is none. All you need to think about is what your game is going to be and how to make it work.