You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We recently changed argument names for initializing the ESP32SPI library to use the suffix _dio rather than _pin because the arguments need to be instantiated DigitalInOut objects, not microcontroller.Pin objects.
@FoamyGuy I think this should be closed since it doesn't seem to be an issue with this library. There aren't any pin/IO arguments to the main class in this library, and even the base EPaperDisplay seems to only have one _pin argument which does take a Pin object according to the docs.
We recently changed argument names for initializing the ESP32SPI library to use the suffix
_dio
rather than_pin
because the arguments need to be instantiatedDigitalInOut
objects, notmicrocontroller.Pin
objects.See: adafruit/Adafruit_CircuitPython_ESP32SPI#121
This library uses the same
*_pin
names for it's arguments which are also expected to theDigitalInOut
s rather thanPin
s.I think we'll want to change the names here and any other libraries that have
_pin
to keep things consistent across libraries.The text was updated successfully, but these errors were encountered: