Trouble getting the Pimoroni pico display 2.0" working

Hi All
I have just purchased the pico display pack 2.0 (320x240) and in the sample code it requires that I access Picographs ( from picographics import PicoGraphics, DISPLAY_PICO_DISPLAY, PEN_P8 )

but I cannot install it from the PyPI plugin section.
I am able to find the folder in Pimoroni libraries on line but I dont know how to get the required file onto my computer, I’m using windows 11.
See code below

import time
import random
from picographics import PicoGraphics, DISPLAY_PICO_DISPLAY, PEN_P8

display = PicoGraphics(display=DISPLAY_PICO_DISPLAY, pen_type=PEN_P8)
display.set_backlight(1.0)

WIDTH, HEIGHT = display.get_bounds()

# We're creating 100 balls with their own individual colour and 1 BG colour
# for a total of 101 colours, which will all fit in the custom 256 entry palette!


class Ball:
    def __init__(self, x, y, r, dx, dy, pen):
        self.x = x
        self.y = y
        self.r = r
        self.dx = dx
        self.dy = dy
        self.pen = pen


# initialise shapes
balls = []
for i in range(0, 100):
    r = random.randint(0, 10) + 3
    balls.append(
        Ball(
            random.randint(r, r + (WIDTH - 2 * r)),
            random.randint(r, r + (HEIGHT - 2 * r)),
            r,
            (14 - r) / 2,
            (14 - r) / 2,
            display.create_pen(random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)),
        )
    )

BG = display.create_pen(40, 40, 40)

while True:
    display.set_pen(BG)
    display.clear()

    for ball in balls:
        ball.x += ball.dx
        ball.y += ball.dy

        xmax = WIDTH - ball.r
        xmin = ball.r
        ymax = HEIGHT - ball.r
        ymin = ball.r

        if ball.x < xmin or ball.x > xmax:
            ball.dx *= -1

        if ball.y < ymin or ball.y > ymax:
            ball.dy *= -1

        display.set_pen(ball.pen)
        display.circle(int(ball.x), int(ball.y), int(ball.r))

    display.update()
    time.sleep(0.01) `
...................................................................
  1. pimoroni-pico
  2. /libraries

pico_graphics

} this is the path on the pimoroni site

I hope I have provided enough info, I have tried to correct the code formatting but it didn’t work
Hopefully this is understandable
looking forward to your replies
Nick

1 Like

Hi Nick,

Pimoroni actually use a different port of micropython to the main branch, you can grab it here: Releases · pimoroni/pimoroni-pico · GitHub

Those libraries are actually embedded into the port themselves as C files.

Once you have the Pimoroni version flashed to your Pico the import statements should work perfectly!

Liam

Liam
You are a legend.I already had a different pimoroni uf2 file on my computer and had used that but your link solved the problem
Thankyou

1 Like

Further to my earlier question on this display ,
In the samples provided by Pimoroni the information and framing provided does not fill the screen
and I presume that the code

display = PicoGraphics(display=DISPLAY_PICO_DISPLAY, pen_type=PEN_P8) WIDTH, HEIGHT = display.get_bounds()

contains the restraints for this , but I would like to be able to use the full screen filled with data,colour ,or information. If display.get_bounds is the culprit , I’m not sure how to change it.


This code is from the balls example. The full code is below

import time
import random
from picographics import PicoGraphics, DISPLAY_PICO_DISPLAY, PEN_P8

display = PicoGraphics(display=DISPLAY_PICO_DISPLAY, pen_type=PEN_P8)
display.set_backlight(1.0)

WIDTH, HEIGHT = display.get_bounds()

# We're creating 100 balls with their own individual colour and 1 BG colour
# for a total of 101 colours, which will all fit in the custom 256 entry palette!
class Ball:
    def __init__(self, x, y, r, dx, dy, pen):
        self.x = x
        self.y = y
        self.r = r
        self.dx = dx
        self.dy = dy
        self.pen = pen


# initialise shapes
balls = []
for i in range(0, 50):
    r = random.randint(0, 10) + 3
    balls.append(
        Ball(
            random.randint(r, r + (WIDTH - 2 * r)),
            random.randint(r, r + (HEIGHT - 2 * r)),
            r,
            (14 - r) / 2,
            (14 - r) / 2,
            display.create_pen(random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)),
        )
    )

BG = display.create_pen(30, 30, 40)

while True:
    display.set_pen(BG)
    display.clear()

    for ball in balls:
        ball.x += ball.dx
        ball.y += ball.dy

        xmax = WIDTH - ball.r
        xmin = ball.r
        ymax = HEIGHT - ball.r
        ymin = ball.r

        if ball.x < xmin or ball.x > xmax:
            ball.dx *= -1

        if ball.y < ymin or ball.y > ymax:
            ball.dy *= -1

        display.set_pen(ball.pen)
        display.circle(int(ball.x), int(ball.y), int(ball.r))

    display.update()
    time.sleep(0.01)

Can anyone provide any clues please
Thank you in advance
Nick

Hi Nicholas,

I suspect this is due to the fact that there are two sizes of Pico displays by Pimoroni, the good news is that both are supported by the library - here’s the relevant documentation section:
image

Try changing that around and see if it helps :slight_smile: