Add 7.5inch v2 waveshare (#1077)

* Added 7.5inchV2

* Added 7.5inV2

* Added 7.5inch_V2

* fixed Display function

* Inverted bytecode

Added ~() to invert the bytecode and make the screen look black text on white background

* Hoping to keep Travis happy with blank lines

* more travis hacking

* travis happy?

* wow

* gfhj
This commit is contained in:
Paul Deen
2020-07-12 01:03:13 +02:00
committed by GitHub
parent e41ea42074
commit c8998941a5
3 changed files with 82 additions and 15 deletions
@@ -16,6 +16,7 @@ WaveshareEPaper2P9InB = waveshare_epaper_ns.class_('WaveshareEPaper2P9InB', Wave
WaveshareEPaper4P2In = waveshare_epaper_ns.class_('WaveshareEPaper4P2In', WaveshareEPaper)
WaveshareEPaper5P8In = waveshare_epaper_ns.class_('WaveshareEPaper5P8In', WaveshareEPaper)
WaveshareEPaper7P5In = waveshare_epaper_ns.class_('WaveshareEPaper7P5In', WaveshareEPaper)
WaveshareEPaper7P5InV2 = waveshare_epaper_ns.class_('WaveshareEPaper7P5InV2', WaveshareEPaper)
WaveshareEPaperTypeAModel = waveshare_epaper_ns.enum('WaveshareEPaperTypeAModel')
WaveshareEPaperTypeBModel = waveshare_epaper_ns.enum('WaveshareEPaperTypeBModel')
@@ -31,6 +32,7 @@ MODELS = {
'4.20in': ('b', WaveshareEPaper4P2In),
'5.83in': ('b', WaveshareEPaper5P8In),
'7.50in': ('b', WaveshareEPaper7P5In),
'7.50inV2': ('b', WaveshareEPaper7P5InV2),
}