From 3b68b77b29a58db02a26e91afded92dcfd496635 Mon Sep 17 00:00:00 2001 From: lynniemagoo Date: Thu, 17 Mar 2022 18:22:50 -0500 Subject: [PATCH] Issue #22 - Remove debug print statements. --- library/ST7735/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/library/ST7735/__init__.py b/library/ST7735/__init__.py index e187ac9..4691822 100644 --- a/library/ST7735/__init__.py +++ b/library/ST7735/__init__.py @@ -281,18 +281,14 @@ def _init(self): self.data(0x0E) if self._invert: - print("ST7735_INVON") self.command(ST7735_INVON) # Invert display else: - print("ST7735_INVOFF") self.command(ST7735_INVOFF) # Don't invert display self.command(ST7735_MADCTL) # Memory access control (directions) if self._bgr: - print("MADCTL 0xC8") self.data(0xC8) # row addr/col addr, bottom to top refresh; Set D3 RGB Bit to 1 for format BGR else: - print("MADCTL 0xC0") self.data(0xC0) # row addr/col addr, bottom to top refresh; Set D3 RGB Bit to 0 for format RGB self.command(ST7735_COLMOD) # set color mode