mirror of
https://github.com/Hopiu/rpi-rgb-led-matrix.git
synced 2026-03-16 22:10:27 +00:00
o Add a section about ghosting.
This commit is contained in:
parent
29c2997dc1
commit
2913fe3687
4 changed files with 20 additions and 10 deletions
28
README.md
28
README.md
|
|
@ -464,18 +464,28 @@ know that your display is fast enough, try to comment out that line.
|
|||
|
||||
Then `make` again.
|
||||
|
||||
Inverted Colors ?
|
||||
-----------------
|
||||
### Ghosting
|
||||
Some panels have trouble with sharp contrasts and short pulses that results
|
||||
in ghosting. It is particularly apparent with very sharp contrasts, such as
|
||||
bright text on black background. This can be improved by tweaking the `LSB_PWM_NANOSECONDS`
|
||||
parameter in [lib/Makefile](./lib/Makefile). See description there for details.
|
||||
|
||||
The following example is a little exaggerated:
|
||||
|
||||
Ghosting with low LSB_PWM_NANOSECONDS | No ghosting after tweaking
|
||||
---------------------------------------|------------------------------
|
||||
 |
|
||||
|
||||
### Inverted Colors ?
|
||||
|
||||
There are some displays out there that use inverse logic for the colors. You
|
||||
notice that your image looks like a 'negative'. In that case, uncomment the
|
||||
folling `DEFINES` line in [lib/Makefile](./lib/Makefile) by removing the `#`
|
||||
at the beginning of the line.
|
||||
notice that your image looks like a 'negative'. The parameter to tweak is
|
||||
`INVERSE_RGB_DISPLAY_COLORS` in [lib/Makefile](./lib/Makefile).
|
||||
|
||||
#DEFINES+=-DINVERSE_RGB_DISPLAY_COLORS # remove '#' in the beginning
|
||||
### Check configuration in lib/Makefile
|
||||
|
||||
Then, recompile
|
||||
|
||||
make
|
||||
There are lots of parameters in [lib/Makefile](./lib/Makefile) that you might
|
||||
be interested in tweaking.
|
||||
|
||||
A word about power
|
||||
------------------
|
||||
|
|
|
|||
BIN
img/text-ghosting.jpg
Normal file
BIN
img/text-ghosting.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 79 KiB |
BIN
img/text-no-ghosting.jpg
Normal file
BIN
img/text-no-ghosting.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 80 KiB |
|
|
@ -8,7 +8,7 @@ TARGET=librgbmatrix
|
|||
|
||||
###
|
||||
# After you change any of the following DEFINES, make sure to 'make clean'
|
||||
# and make again
|
||||
# and 'make' again
|
||||
###
|
||||
|
||||
# If you see that your display is inverse, you might have a matrix variant
|
||||
|
|
|
|||
Loading…
Reference in a new issue