From a81dd1de5b845d77b2a234ee878bbd0d3a08d5f0 Mon Sep 17 00:00:00 2001 From: Brian Y Date: Mon, 9 Dec 2019 22:57:11 -0500 Subject: [PATCH] reduced readbusy delay --- 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 bfe92c1..8303f37 100644 --- a/RaspberryPi&JetsonNano/python/lib/waveshare_epd/epd2in7.py +++ b/RaspberryPi&JetsonNano/python/lib/waveshare_epd/epd2in7.py @@ -191,7 +191,7 @@ 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(200) + epdconfig.delay_ms(1) logging.debug("e-Paper busy release") def set_lut(self):