K3 Embedded Game - keycube/K3_embedded_game GitHub Wiki
Initial research
Other game projects
- Comparison of Raspberry Pi Pico 1's specs with several retro consoles, and emulator projects made on it.
- Same resource with MicroPython Pong example
Screen resolutions
Device | Resolution |
---|---|
Playdate | 400 × 240 |
I2C OLED Display (commonly used screen for Raspberry Pi Pico projects) | 128×64 |
Guides and tools
- CircuitPython beginner's guide
- Recommended IDE to get Raspberry's output on the computer console. Useful to get started if screen output is not available.
- PuTTY to get access to the Raspberry's REPL alone
- Blinka + FT232H to run CircuitPython on Windows and still access Raspberry's output devices such as the screen.
- Web emulation with CircuitPython Pico
Graphical library
The graphical library used by CircuitPython is displayio. It handles bitmaps, which can be generated from code or loaded from the disk. It works with a hierarchy of groups system. Documentation can be found here.