Fix _display.clear()

There is a typo (uppercase / lowercase) which prevents the display from initializing.
This commit is contained in:
Alex Muthmann 2019-10-28 12:52:14 +01:00 committed by GitHub
parent d42ab1574b
commit 3b1d90baef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ class LcdHat(DisplayImpl):
from pwnagotchi.ui.hw.libs.waveshare.lcdhat.epd import EPD
self._display = EPD()
self._display.init()
self._display.Clear()
self._display.clear()
def render(self, canvas):
self._display.display(canvas)