From ab3d62c5a1f08ad755e499b6e2d1970a032094c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20Ko=C5=9Bci=C3=B3w?= Date: Thu, 18 May 2017 19:41:12 +0200 Subject: [PATCH] default rotation 0 --- gfxlcd/driver/ili9325/ili9325.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfxlcd/driver/ili9325/ili9325.py b/gfxlcd/driver/ili9325/ili9325.py index c16d47d..27562b5 100644 --- a/gfxlcd/driver/ili9325/ili9325.py +++ b/gfxlcd/driver/ili9325/ili9325.py @@ -32,7 +32,7 @@ class ILI9325(Area, Chip): def __init__(self, width, height, driver): Chip.__init__(self, width, height, driver, True) Area.__init__(self, driver) - self.rotation = 270 + self.rotation = 0 def _converted_background_color(self): """color from 8-8-8 to 5-6-5"""