waveshareteam/e-Paper

[question] `epd2in13bc` `ReadBusy` check inverted?

loiccoyle opened this issue · 1 comments

Is the busy check for the epd2in13bc inverted?

while(epdconfig.digital_read(self.busy_pin) == 0): # 0: idle, 1: busy

The other displays I've checked look like:

while(epdconfig.digital_read(self.busy_pin) != 0):

Actually the ReadBusy check for a lot of the displays is inconsistent, is this intentional?