Search found 5 matches

by luoluo4413
Wed Aug 05, 2020 4:21 am
Forum: ESP32 boards
Topic: Problem with drive WaveShare 2.7 inch B e-Paper
Replies: 10
Views: 6379

Re: Drive WaveShare 2.7 inch e-Paper

Is your epaper actually a WaveShare epaper or is it some other brand? I've used Mccauser's drivers for waveshare epapers before and it worked flawlessly. Without delving too deep, triple checking the wiring that you've set up is probably the first action to take. Attaching your MCU's schematics is ...
by luoluo4413
Mon Jul 27, 2020 4:32 am
Forum: ESP32 boards
Topic: Problem with drive WaveShare 2.7 inch B e-Paper
Replies: 10
Views: 6379

Re: Drive WaveShare 2.7 inch e-Paper

Ok, so It seems that the problem come from the spi command on esp32 implicate a mosi and miso pins, althoug there is only a din pin on your epaper. So for me, you could try this: sck = Pin(0) miso = Pin(4) mosi = Pin(2) dc = Pin(25) cs = Pin(5) rst = Pin(18) busy = Pin(19) spi = SPI(baudrate=200000...
by luoluo4413
Thu Jul 23, 2020 1:28 pm
Forum: ESP32 boards
Topic: Problem with drive WaveShare 2.7 inch B e-Paper
Replies: 10
Views: 6379

Re: Drive WaveShare 2.7 inch e-Paper

and without the number 2 for initiate your epaper like this: spi = SPI(baudrate=20000000, polarity=0, phase=0, sck=Pin(0), mosi=Pin(2), miso=Pin(4)) Hi IHOXOHI, Thanks for you help! I have tested as you way,Unfortunately,It not works for me.When init(),The epaper should be flash or not?Have more si...
by luoluo4413
Tue Jul 21, 2020 11:44 am
Forum: ESP32 boards
Topic: Problem with drive WaveShare 2.7 inch B e-Paper
Replies: 10
Views: 6379

Re: Drive WaveShare 2.7 inch e-Paper

Is your epaper actually a WaveShare epaper or is it some other brand? I've used Mccauser's drivers for waveshare epapers before and it worked flawlessly. Without delving too deep, triple checking the wiring that you've set up is probably the first action to take. Attaching your MCU's schematics is ...
by luoluo4413
Tue Jul 14, 2020 6:10 am
Forum: ESP32 boards
Topic: Problem with drive WaveShare 2.7 inch B e-Paper
Replies: 10
Views: 6379

Problem with drive WaveShare 2.7 inch B e-Paper

Hi, I'm trying to use MicroPython drive epaper since 3 weeks ago. Before I post this, i have searched in the forum, and reference some idea, thanks for them. But it still can't be run correctly on my board.Hope you can help me. I use driver with this https://github.com/mcauser/micropython-waveshare-...