From 1061a0ef56a0c01f10175beb7f8daf27281ebc6e Mon Sep 17 00:00:00 2001 From: Brian Y Date: Sat, 14 Dec 2019 17:24:15 -0500 Subject: [PATCH] removed second delay from reset --- RaspberryPi&JetsonNano/python/lib/waveshare_epd/epd2in7.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RaspberryPi&JetsonNano/python/lib/waveshare_epd/epd2in7.py b/RaspberryPi&JetsonNano/python/lib/waveshare_epd/epd2in7.py index 3707b05..93ced22 100644 --- a/RaspberryPi&JetsonNano/python/lib/waveshare_epd/epd2in7.py +++ b/RaspberryPi&JetsonNano/python/lib/waveshare_epd/epd2in7.py @@ -246,7 +246,7 @@ class EPD: epdconfig.digital_write(self.reset_pin, epdconfig.GPIO.LOW) epdconfig.delay_ms(200) epdconfig.digital_write(self.reset_pin, 1) - epdconfig.delay_ms(200) + # epdconfig.delay_ms(200) def send_command(self, command): epdconfig.digital_write(self.dc_pin, 0)