FoamyGuy / Blinka_Displayio_PyGameDisplay

Blinka makes her debut on the big screen! With this library you can use CircuitPython displayio code on PC and Raspberry Pi to output to a PyGame window instead of a hardware display connected to I2C or SPI. This makes it easy to to use displayio elements on HDMI and other large format screens.
MIT License
9 stars 9 forks source link

Improving_Documentation #9

Closed jposada202020 closed 1 year ago

jposada202020 commented 1 year ago

This intendes to improve the documentation for the examples, and correct the code in readme.rst

Thanks :)

bablokb commented 1 year ago

I also had to remove the max_size-parameter. But the example needs some additional changes, since display.running does no longer exist. Logic now is:

while True:
    ...
    if display.check_quit():
        break

See the discussion in #6 for details.

Maybe you could update your pull-request to include this? Thanks.

jposada202020 commented 1 year ago

Thanks, I include the changes as recommended :).