From 5d4115152c62ce4244bcaacf0d3a431c7f19a4fd Mon Sep 17 00:00:00 2001 From: Hel Gibbons <50950368+helgibbons@users.noreply.github.com> Date: Mon, 15 Jul 2024 16:39:37 +0100 Subject: [PATCH] Docs: update GFX Pack readme --- micropython/modules_py/gfx_pack.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/micropython/modules_py/gfx_pack.md b/micropython/modules_py/gfx_pack.md index e7e31416..c3642300 100644 --- a/micropython/modules_py/gfx_pack.md +++ b/micropython/modules_py/gfx_pack.md @@ -71,6 +71,7 @@ example: ```python display = board.display +display.set_pen(15) display.text("Hello World!", 0, 0) display.line(0, 0, 128, 64) display.update() # Update display with the above items @@ -88,4 +89,4 @@ display = board.display display.set_backlight(0.0) # Backlight is off display.set_backlight(0.5) # Backlight is 50% display.set_backlight(1.0) # Backlight is 100% -``` \ No newline at end of file +```