Skip to content

Commit

Permalink
Fix README rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
evaherrada committed Jul 10, 2020
1 parent e359f7e commit d8f0c8b
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,23 @@ Only certain types of bitmaps work with this library, and they often have to be
Usage Example
=============

.. literalinclude:: ../examples/imageload_simpletest.py
.. code-block:: python
import board
import displayio
import adafruit_imageload
image, palette = adafruit_imageload.load(
"images/4bit.bmp", bitmap=displayio.Bitmap, palette=displayio.Palette
)
tile_grid = displayio.TileGrid(image, pixel_shader=palette)
group = displayio.Group()
group.append(tile_grid)
board.DISPLAY.show(group)
while True:
pass
Contributing
============
Expand Down

0 comments on commit d8f0c8b

Please sign in to comment.