From e3bdb4fe5c9e4c05b88f9e0a8f089f785bd80068 Mon Sep 17 00:00:00 2001 From: Brian Y Date: Sun, 15 Dec 2019 18:13:23 -0500 Subject: [PATCH] reduced ReadBusy delay --- RaspberryPi&JetsonNano/python/lib/waveshare_epd/epd2in7.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RaspberryPi&JetsonNano/python/lib/waveshare_epd/epd2in7.py b/RaspberryPi&JetsonNano/python/lib/waveshare_epd/epd2in7.py index 66f1195..d17e6aa 100644 --- a/RaspberryPi&JetsonNano/python/lib/waveshare_epd/epd2in7.py +++ b/RaspberryPi&JetsonNano/python/lib/waveshare_epd/epd2in7.py @@ -264,7 +264,8 @@ class EPD: def ReadBusy(self): logging.debug("e-Paper busy") while(epdconfig.digital_read(self.busy_pin) == 0): # 0: idle, 1: busy - epdconfig.delay_ms(1) + # epdconfig.delay_ms(1) + pass logging.debug("e-Paper busy release") def send_command_and_data(self, command, data=None):