Docs: update GFX Pack readme

This commit is contained in:
Hel Gibbons 2024-07-15 16:39:37 +01:00 committed by GitHub
parent bb51ce5ad0
commit 5d4115152c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -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%
```
```