and both make use of a ssd.wait()
However, my linter, as well as manually browsing through ...
from color_setup import ssd
v
ssd = SSD()
v
from drivers.epaper.pico_epaper_42 import EPD as SSD
v
class EPD(framebuf.FrameBuffer):
v
class FrameBuffer:
... confirms that there is no property of .wait in that line of inheritance.
I was looking at the two async EPD demos:
and both make use of a
ssd.wait()
However, my linter, as well as manually browsing through ...from color_setup import ssd
vssd = SSD()
vfrom drivers.epaper.pico_epaper_42 import EPD as SSD
vclass EPD(framebuf.FrameBuffer):
vclass FrameBuffer:
... confirms that there is no property of.wait
in that line of inheritance.