From 301f196bca609b7ffe2e270c820f8268c2991773 Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Thu, 1 Jul 2021 08:49:49 -0700 Subject: [PATCH] fix rotation for ttgo t-echo case --- src/graphics/EInkDisplay2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/EInkDisplay2.cpp b/src/graphics/EInkDisplay2.cpp index 79e6c255..f93453dd 100644 --- a/src/graphics/EInkDisplay2.cpp +++ b/src/graphics/EInkDisplay2.cpp @@ -104,7 +104,7 @@ bool EInkDisplay::connect() adafruitDisplay = new GxEPD2_BW(*lowLevel); adafruitDisplay->init(); - adafruitDisplay->setRotation(1); + adafruitDisplay->setRotation(3); //adafruitDisplay->setFullWindow(); //adafruitDisplay->fillScreen(UNCOLORED); //adafruitDisplay->drawCircle(100, 100, 20, COLORED);