GFX Pack adds a 128x64 LCD Matrix display to your headered Raspberry Pi Pico or PicoW, with RGBW backlight and 5 input buttons for all your display and control needs.
- :link: [Pico GFX Pack store page](https://shop.pimoroni.com/products/pico-gfx-pack)
You'll need to download the most recent version of our MicroPython firmware for your board from the link below.
The easiest way to start displaying cool stuff on GFX Pack is using our GFX Pack helper module (which contains a bunch of useful shortcuts for interacting with the board) and our PicoGraphics display library which handles drawing things on the screen.
- [GFX Pack function reference](../../modules_py/gfx_pack.md)
- [PicoGraphics function reference](../../modules/picographics/README.md)
## Basic Examples
### Balls Demo
[balls_demo.py](balls_demo.py)
LCD demo with a bunch of bouncy balls!
### Button Test
[button_test.py](button_test.py)
Shows how to read the buttons, display text and change the colour of the RGBW backlight.
These wireless examples need `network_manager.py` and `WIFI_CONFIG.py` from the `common` directory to be saved to your Pico W. Open up `WIFI_CONFIG.py` in Thonny to add your wifi details (and save it when you're done).
Here are some GFX Pack community projects and resources that you might find useful! Note that code at the links below has not been tested by us and we're not able to offer support with it.
- :link: [Octopus Energy Monitor](https://github.com/MaverickUK/OctopusEnergyMonitorPicoW)