pimoroni-pico/micropython/examples/gfx_pack
Simon Prickett 710863099d Another go at the linter. 2023-08-14 10:40:43 +01:00
..
README.md Adds carbon intensity graph example. 2023-08-07 22:46:55 +01:00
balls_demo.py couple of minor fixes 2022-11-07 13:43:53 +00:00
button_test.py add button example 2022-11-08 14:20:32 +00:00
calc.py improve maths 2022-11-22 11:54:39 +00:00
carbon_intensity.py Another go at the linter. 2023-08-14 10:40:43 +01:00
co2.py linting co2 example 2022-11-09 09:37:21 +00:00
rainbow.py add dancing 2022-11-07 15:38:44 +00:00
snake.py couple of minor fixes 2022-11-07 13:43:53 +00:00
sunrise.py Driver/st7567 (#581) 2022-11-18 14:30:22 +00:00
thermometer.py couple of minor fixes 2022-11-07 13:43:53 +00:00
zoo_facts.py Driver/st7567 (#581) 2022-11-18 14:30:22 +00:00

README.md

Pico GFX Pack MicroPython Examples

About Pico GFX Pack

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.

You'll need to download the most recent version of our MicroPython firmware for your board from the link below.

Pico GFX Pack and PicoGraphics

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.

Basic Examples

Balls Demo

balls_demo.py

LCD demo with a bunch of bouncy balls!

Button Test

button_test.py

Shows how to read the buttons, display text and change the colour of the RGBW backlight.

Calc

calc.py

This example draws a nice sine wave on the display, reminiscent of the graphical calculators from the 90s.

Rainbow

rainbow.py

This example borrows a CircuitPython hsv to rgb function to cycle through some rainbows on GFX Pack's screen.

Snake

snake.py

Basic Snake demo for GFX Pack.

  • A = up
  • B = down
  • C = reset
  • D = left
  • E = right

Advanced Examples

These examples require additional hardware. We connected our breakouts using a JST-SH to JST-SH cable:

CO2

co2.py

Add a SCD41 sensor breakout to your GFX Pack to make a handy CO2 detector! Press A to reset the high/low values.

Thermometer

thermometer.py

This demo uses a BME680 or BME688 breakout to measure temperature, pressure, and humidity and display it on the GFX display.

To use the Pico's internal temperature sensor in place of the BME68x breakout, just change use_bme68x_breakout to False.

Wireless Examples

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).

Carbon Intensity Graph

carbon_intensity.py

Displays near realtime information about the different types of electricity generation for a given UK postcode area. Uses the backlight and a bar graph to show the current mix of generation sources, and updates itself periodically or when button E is pressed.

Find out more about the Carbon Intensity API here: https://carbon-intensity.github.io/api-definitions/#carbon-intensity-api-v2-0-0

Sunrise / Sunset

sunrise.py

This sunrise / sunset simulator displays information from the Sunrise Sunset API, and also shows how to use a 16x16 animated sprite. Find out more about Sunrise Sunset API here: https://sunrise-sunset.org/api

Zoo Facts

zoo_facts.py

Downloads a list of five zoo animals and displays their vital statistics. Find out more about Zoo Animal API here: https://zoo-animal-api.herokuapp.com/

  • A = Next animal
  • B = Last animal
  • D = Show stats
  • E = Fetch a different 5 animals

Other Resources

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.