Add support for 7.3" and 13.3" Spectra 6 displays#216
Conversation
| class Inky: | ||
| """Inky e-Ink Display Driver.""" | ||
|
|
||
| BLACK = 0 |
There was a problem hiding this comment.
I think these need to match the weird gappy colours? For users calling set_pixel rather than setting a PIL image.
ie:
BLACK = 0
WHITE = 1
YELLOW = 2
RED = 3
BLUE = 5
GREEN = 6
There was a problem hiding this comment.
Hi @Gadgetoid, sorry to barge into the PR like this. I am just wondering what you mean by "gappy colours"?
I am looking to port this driver to .NET and am trying to follow along.
There was a problem hiding this comment.
Colour "4" doesn't map to a specific colour on the display. I believe it comes out white, but there's no guarantee. It's mostly a concern with our implementation due to the way we handle dithering but the constants need to also reflect that there's no 4. Gappy!
There was a problem hiding this comment.
Perfect - thanks for the explanation!
There was a problem hiding this comment.
Colour "4" doesn't map to a specific colour on the display. I believe it comes out white, but there's no guarantee. It's mostly a concern with our implementation due to the way we handle dithering but the constants need to also reflect that there's no 4. Gappy!
It's orange on my 7.3" from waveshare, but apparently not on the 13.3".
waveshareteam/e-Paper#377
|
Thank you! |
No description provided.