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

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.