adafruit / Adafruit_CircuitPython_EPD

e paper driver for circuit python
MIT License
41 stars 19 forks source link

Fix for issue #19 OverflowError: value must fit in 1 byte(s) #20

Closed mrmcwethy closed 5 years ago

mrmcwethy commented 5 years ago

Added & 0xFF in a few places to make sure an int assigment is 8-bits only.

makermelissa commented 5 years ago

Thanks!