From cc1efb8d437fa8dacac23c3bac0c7164b74e4145 Mon Sep 17 00:00:00 2001 From: Stefan Koelle Date: Sun, 2 Aug 2026 13:11:34 +0200 Subject: [PATCH] fix backlight and touch pins --- include/board_pins.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/board_pins.h b/include/board_pins.h index 7da3b74..fa2ded3 100644 --- a/include/board_pins.h +++ b/include/board_pins.h @@ -20,11 +20,11 @@ constexpr int LCD_RD = -1; // not wired constexpr int LCD_DC = 0; // RS/DC constexpr int LCD_CS = -1; // not wired constexpr int LCD_RST = 4; -constexpr int LCD_BACKLIGHT = 2; +constexpr int LCD_BACKLIGHT = 45; // --- FT6336U capacitive touch (I2C) --- -constexpr int TOUCH_SDA = 14; -constexpr int TOUCH_SCL = 12; -constexpr int TOUCH_INT = 13; +constexpr int TOUCH_SDA = 6; +constexpr int TOUCH_SCL = 5; +constexpr int TOUCH_INT = 7; } // namespace BoardPins