ADABOX 019 - bitmap to celebrate the rp2040
Posted: Fri Aug 13, 2021 5:36 am
Just having fun making graphics for the screen, and thought I'd share this little pixel-model of RP2040.
For anyone who hasn't tried loading images yet, it's super simple! Just include the bmp file in the root (where code.py is) and this'll workCode: Select all
from adafruit_macropad import MacroPad
macropad = MacroPad()
macropad.display_image("raspberry pi pico.bmp")
while True:
pass