Skip to content

Commit

Permalink
Revert "Revert "Should fix readme rendering for pypi""
Browse files Browse the repository at this point in the history
This reverts commit 3f10d59.
  • Loading branch information
evaherrada committed Jul 1, 2020
1 parent 3f10d59 commit da053c6
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,24 @@ 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 da053c6

Please sign in to comment.