Login
Start Free Trial Are you a business?? Click Here

Pico Display Pack 2.8" Reviews

5 Rating 20 Reviews
Read Pimoroni Ltd Reviews

About Pimoroni Ltd:

The ultimate Maker store — a curated range of the best of breed Maker products. Worldwide delivery. Personal support.

Visit Product Page
Vanessa Bradley
Verified Reviewer
Great size display and the brightness is perfect!
Helpful Report
Posted 3 weeks ago
Does all it says it will. Colour and greyscale is clear. Screen is very sharp (my photos might not be). The Pimoroni library is straightforward. It leaves a handful of GPIO unused so the Pico can do more than just the display and the bulit-in buttons (in my case control a couple of heater elements). The Qw/ST port makes hooking up other breakouts a doddle (in my case two MCP9601 thermocouple amplifiers). One gotcha - the screen protector had a red stripe - I thought screen was faulty (and reported it as such) until Pimoroni friendly support put me right!
Helpful Report
Posted 3 weeks ago
Rinna Clanuwat
Verified Reviewer
I love the display as it was super easy to set up. I use it to run my tiny pixel art gallery ✨ The colour and picture quality look great
Helpful Report
Posted 3 weeks ago
Colin Edmunds
Verified Reviewer
A great display with useful example documentation to get you started. Delivered in a couple of days as always with great tracking updates. Used it to copy a version of a lander seen on line which was fun to build and program.
Helpful Report
Posted 1 month ago
Philip Blakeman
Verified Reviewer
A great display and with all the supporting MicroPython examples that worked straight away. It's a shame some of the larger displays (by other vendors) dont have such a good MicroPython support.
Helpful Report
Posted 1 month ago
Its a good display, vibrant, easy to code.
Helpful Report
Posted 2 months ago
I already had the smaller 2.0" version of this display which I found to be sharp, bright, and of a good resolution for it's size. It's been great for my own energy monitor project, but I did find it a little small for my application where I want to see it from a little distance away. This 2.8" display was a simple 1 for 1 swap with the smaller one, and it worked immediately with no code changes on the pico which was great. I now def with the smaller one and leave the bigger one running. Very happy.
Helpful Report
Posted 3 months ago
# Got this display working in Circuit Python 9.x with minor modification to an adafruit demo. import board import digitalio import displayio import busio # Starting in CircuitPython 9.x fourwire will be a seperate internal library # rather than a component of the displayio library try: from fourwire import FourWire except ImportError: from displayio import FourWire from adafruit_st7789 import ST7789 displayio.release_displays() spi = busio.SPI(board.GP18,board.GP19) while not spi.try_lock(): pass spi.configure(baudrate=24000000) # Configure SPI for 24MHz spi.unlock() tft_cs = board.GP17 tft_dc = board.GP16 display_bus = FourWire(spi, command=tft_dc, chip_select=tft_cs, reset=board.GP22) #probably shouldn't be GP22 display = ST7789(display_bus, width=240, height=320, rowstart=0) # Make the display context splash = displayio.Group() display.root_group = splash color_bitmap = displayio.Bitmap(240, 320, 1) color_palette = displayio.Palette(1) color_palette[0] = 0xFF0000 bg_sprite = displayio.TileGrid(color_bitmap, pixel_shader=color_palette, x=0, y=0) splash.append(bg_sprite)
Helpful Report
Posted 3 months ago