Skip to content

Commit

Permalink
Merge 2de7ceb into 98383c5
Browse files Browse the repository at this point in the history
  • Loading branch information
corranwebster committed May 20, 2023
2 parents 98383c5 + 2de7ceb commit 70e5011
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions library/inky/mock.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,26 @@ class InkyMockImpression(InkyMock):
WIDTH = 600
HEIGHT = 448

DESATURATED_PALETTE = [
[0, 0, 0],
[255, 255, 255],
[0, 255, 0],
[0, 0, 255],
[255, 0, 0],
[255, 255, 0],
[255, 140, 0],
[255, 255, 255]]

SATURATED_PALETTE = [
[57, 48, 57],
[255, 255, 255],
[58, 91, 70],
[61, 59, 94],
[156, 72, 75],
[208, 190, 71],
[177, 106, 73],
[255, 255, 255]]

def __init__(self):
"""Initialize a new mock Inky Impression."""
InkyMock.__init__(self, 'multi')
Expand Down

0 comments on commit 70e5011

Please sign in to comment.