Prevent bleaching of colors 0 and 1 by colors 2 and 3

Moving the last ones of colors 0 and 1 out of the way of the trailing
twos of colors 2 and 3 seem to do a good job restoring the former
colors after being bleached by the latter ones, making them crisp again.
master
Martin Samuelsson 2021-10-05 14:08:27 +02:00
parent 2851f20200
commit 478b7c7436
1 changed files with 2 additions and 4 deletions

View File

@ -23,14 +23,12 @@ D_COLS = const(1200)
# Meaning of values: 0=dischg, 1=black, 2=white, 3=skip
# Uses "colors" 0 (black), 3, 5, and 7 (white) from 3-bit waveforms below
WAVE_2B = ( # original mpy driver for Ink 6, differs from arduino driver below
(0, 0, 0, 0),
(0, 0, 0, 0),
(1, 1, 2, 0),
(1, 1, 1, 0),
(0, 2, 1, 0),
(1, 2, 1, 0),
(1, 1, 2, 2),
(0, 0, 0, 0),
(0, 0, 2, 2),
(1, 1, 0, 0),
(0, 0, 0, 0)
)
# Ink10 WAVEFORM3BIT from arduino driver