From 17706ba314636aceacc4ef7f7c1b7d3ba37ce5e9 Mon Sep 17 00:00:00 2001 From: HMSteve Date: Fri, 20 May 2022 08:55:29 +0200 Subject: [PATCH] PowerOff changed Old value led to image degradation over timeon newer versions of Waveshare display when repeatedly powering the display on and off --- src/GxGDEH0154D67/GxGDEH0154D67.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GxGDEH0154D67/GxGDEH0154D67.cpp b/src/GxGDEH0154D67/GxGDEH0154D67.cpp index 529cf32..c55f235 100644 --- a/src/GxGDEH0154D67/GxGDEH0154D67.cpp +++ b/src/GxGDEH0154D67/GxGDEH0154D67.cpp @@ -476,7 +476,7 @@ void GxGDEH0154D67::_PowerOn(void) void GxGDEH0154D67::_PowerOff(void) { _writeCommand(0x22); - _writeData(0xc3); + _writeData(0x83); _writeCommand(0x20); _waitWhileBusy("_PowerOff", power_off_time); }