Update server/app/image_pipeline.py
Build and push server image / build-and-push (push) Successful in 38s

Tweaked Palette... we might need to reverse this!
This commit is contained in:
tfaour
2026-07-21 14:16:25 -04:00
parent b95d03f56a
commit 4cf75b4b11
+12 -6
View File
@@ -50,12 +50,18 @@ def logical_to_native(x: float, y: float, orientation: str) -> tuple[int, int]:
# exact color primaries for this panel. Tune them once you can compare a
# rendered test image against the real panel.
PALETTE_RGB = [
(0, 0, 0), # BLACK
(255, 255, 255), # WHITE
(255, 219, 0), # YELLOW
(207, 0, 15), # RED
(0, 39, 133), # BLUE
(0, 133, 55), # GREEN
# (0, 0, 0), # BLACK
# (255, 255, 255), # WHITE
# (255, 219, 0), # YELLOW
# (207, 0, 15), # RED
# (0, 39, 133), # BLUE
# (0, 133, 55), # GREEN
(0, 0, 0),
(255, 255, 255),
(255, 243, 56),
(191, 0, 0),
(100, 64, 255),
(67, 138, 28)
]
# The panel's actual 4-bit color codes (see firmware/components/epd7in3e),