reduced readbusy delay
This commit is contained in:
parent
7760c42767
commit
a81dd1de5b
1 changed files with 1 additions and 1 deletions
|
|
@ -191,7 +191,7 @@ class EPD:
|
||||||
def ReadBusy(self):
|
def ReadBusy(self):
|
||||||
logging.debug("e-Paper busy")
|
logging.debug("e-Paper busy")
|
||||||
while(epdconfig.digital_read(self.busy_pin) == 0): # 0: idle, 1: 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")
|
logging.debug("e-Paper busy release")
|
||||||
|
|
||||||
def set_lut(self):
|
def set_lut(self):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue