From 3077a317c778e58039ccb6b3f36ef0846181ea1c Mon Sep 17 00:00:00 2001 From: DeFiDude <59237470+DeFiDude@users.noreply.github.com> Date: Wed, 10 Jun 2026 20:54:02 -0600 Subject: [PATCH] rnode: fix T-Deck display rotation --- vendor/rnode_firmware/TDeckUI.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/rnode_firmware/TDeckUI.h b/vendor/rnode_firmware/TDeckUI.h index 5a27199..b6a9dbd 100644 --- a/vendor/rnode_firmware/TDeckUI.h +++ b/vendor/rnode_firmware/TDeckUI.h @@ -97,7 +97,7 @@ void td_poll_touch() { void td_ui_init() { if (td_ui_ready) return; - display.setRotation(1); + display.setRotation(3); display.fillScreen(TD_CLR_BG); td_canvas = new GFXcanvas16(TD_W, TD_H); for (int i = 0; i < TD_WF_SIZE; i++) td_waterfall[i] = 0;