From 8efe23fb5bcb74ad16d45521a5fb7cd5177666b1 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Wed, 8 Jun 2022 13:01:26 +0100 Subject: [PATCH] Round LCD: Set to round in demo. --- examples/breakout_roundlcd/roundlcd_demo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/breakout_roundlcd/roundlcd_demo.cpp b/examples/breakout_roundlcd/roundlcd_demo.cpp index 54b7fcc8..4761c240 100644 --- a/examples/breakout_roundlcd/roundlcd_demo.cpp +++ b/examples/breakout_roundlcd/roundlcd_demo.cpp @@ -15,7 +15,7 @@ using namespace pimoroni; const int WIDTH = 240; const int HEIGHT = 240; -ST7789 st7789(WIDTH, HEIGHT, ROTATE_0, false, get_spi_pins(BG_SPI_FRONT)); +ST7789 st7789(WIDTH, HEIGHT, ROTATE_0, true, get_spi_pins(BG_SPI_FRONT)); PicoGraphics_PenRGB332 graphics(st7789.width, st7789.height, nullptr); constexpr float RADIUS = WIDTH / 2;