add waveshare 213d display

Signed-off-by: Nikhil Jha <hi@nikhiljha.com>
This commit is contained in:
Nikhil Jha
2019-10-27 12:47:15 -07:00
parent 15b815d8ad
commit 786564ebb8
6 changed files with 591 additions and 0 deletions

View File

@ -7,6 +7,7 @@ from pwnagotchi.ui.hw.waveshare1 import WaveshareV1
from pwnagotchi.ui.hw.waveshare2 import WaveshareV2
from pwnagotchi.ui.hw.waveshare27inch import Waveshare27inch
from pwnagotchi.ui.hw.waveshare154inch import Waveshare154inch
from pwnagotchi.ui.hw.waveshare213d import Waveshare213d
def display_for(config):
@ -37,3 +38,6 @@ def display_for(config):
elif config['ui']['display']['type'] == 'waveshare154inch':
return Waveshare154inch(config)
elif config['ui']['display']['type'] == 'waveshare213d':
return Waveshare213d(config)