Control Pico e-Paper 4.2B with ESP32-S3-Pico #84
-
Hi all, TLDR: Did anyone ever use GxEPD2 with a (probably/partly) non-matching SPI layout? I have a Pico e-Paper 4.2 B. The Raspberry Pico does not provide enough RAM (or I am too lazy to optimze 😅), so I searched for a pin-compatible controller - and found it with the ESP32-S3-Pico. There is no official support in Arduino IDE. I guess it lacks real mappings for the pins, hence I tried The pin mapping is as follows: So I see three options:
I already tried another ESP board with manual SPI wiring, using Thank you in advance! Sascha |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You just need to call |
Beta Was this translation helpful? Give feedback.
Hi @darkspirit510
You just need to call
SPI.begin(SCK, MISO, MOSI, SS)
beforedisplay.init(115200)
to map HW SPI to your pins.You can use any free pin for MISO; -1 also works.
See also line 186 in GxEPD2_Example/GxEPD2_Example.ino