From 0cbed06136b0b1f5cf524763dfe8af2ec0a0a99b Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Wed, 11 Feb 2026 10:56:27 +0100 Subject: [PATCH] waveshare_esp32_s3_touch_lcd_2: fix camera init --- .../lib/mpos/board/waveshare_esp32_s3_touch_lcd_2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal_filesystem/lib/mpos/board/waveshare_esp32_s3_touch_lcd_2.py b/internal_filesystem/lib/mpos/board/waveshare_esp32_s3_touch_lcd_2.py index 43c975be..3784d6bc 100644 --- a/internal_filesystem/lib/mpos/board/waveshare_esp32_s3_touch_lcd_2.py +++ b/internal_filesystem/lib/mpos/board/waveshare_esp32_s3_touch_lcd_2.py @@ -146,7 +146,7 @@ def init_cam(width, height, colormode): xclk_freq=20000000, powerdown_pin=-1, reset_pin=-1, - pixel_format=PixelFormat.RGB565 if self.colormode else PixelFormat.GRAYSCALE, + pixel_format=PixelFormat.RGB565 if colormode else PixelFormat.GRAYSCALE, frame_size=frame_size, #grab_mode=GrabMode.WHEN_EMPTY, grab_mode=GrabMode.LATEST,