From c94a2ff122c73453d2f5fcb6f02f8d930189578a Mon Sep 17 00:00:00 2001 From: Ace Date: Fri, 12 Jun 2020 23:18:59 +0200 Subject: [PATCH] removed non-required epaper commands while initalising --- inkycal/display/epaper.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/inkycal/display/epaper.py b/inkycal/display/epaper.py index 3af2517..bec2b1f 100644 --- a/inkycal/display/epaper.py +++ b/inkycal/display/epaper.py @@ -30,9 +30,6 @@ class Display: except FileNotFoundError: raise Exception('SPI could not be found. Please check if SPI is enabled') - self._epaper.init() - self._epaper.sleep() - def render(self, im_black, im_colour = None): """Render an image on the epaper im_colour is required for three-colour epapers"""