From 750e80d9c18277913e8a0b3901daa72949047461 Mon Sep 17 00:00:00 2001 From: Pieter Date: Fri, 24 Apr 2026 22:55:13 +0200 Subject: [PATCH] Fix: actually send rotation to screen --- hardware/st7735/st7735.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hardware/st7735/st7735.c b/hardware/st7735/st7735.c index bac95cf..a1133d1 100644 --- a/hardware/st7735/st7735.c +++ b/hardware/st7735/st7735.c @@ -192,6 +192,7 @@ uint8_t lcd_begin(void) { return 1; } + i2c_write_command(SCAN_DIRECTION_REG, 0x00, ST7735_ROTATION); return 0; }