From da5290ecd0f8dbf02498215b23612ab1964896df Mon Sep 17 00:00:00 2001 From: Kai Bolay Date: Sun, 24 Mar 2024 15:41:35 -0400 Subject: [PATCH] Fix b/w transition description --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 67069b3..5d958f0 100644 --- a/README.md +++ b/README.md @@ -165,10 +165,10 @@ of voltages to apply is stored in lookup tables called waveform LUTs. There isn't just a lookup table, but five of them. One is for VCOM (the common voltage), the other four are for the pixels, because pixels, when updating the display, can be in four different states: -* WB LUT is used if the pixel was black, and should turn black. -* BW LUT is used if the pixel was white, and should turn white. -* WW LUT is used if the pixel was black, and should remain black. -* BB LUT is used if the pixel was white, and should remain black. +* WB LUT is used if the pixel was white, and should turn black. +* BW LUT is used if the pixel was black, and should turn white. +* WW LUT is used if the pixel was white, and should remain white. +* BB LUT is used if the pixel was black, and should remain black. This means that we can apply a different waveform for each of these states, and that's very handy indeed.