single repo

This commit is contained in:
Adolfo Reyna
2026-01-01 13:33:51 -05:00
parent 8b56187ef1
commit bc8ae91eba
334 changed files with 124529 additions and 2 deletions

View File

@@ -0,0 +1,34 @@
Quick use
Rev0.1
1. Upload demos/ drivers/ gui/ and color_setup.py to RPi Pico
2. Open color_setup.py and uncomment the module import of the corresponding model
1) Let's say you're using Pico-ePaper-2.13
will
# from drivers.ePaper2in13V3 import EPD as SSD
Change to
from drivers.ePaper2in13V3 import EPD as SSD
2) Let's say you're using Pico-ePaper-7.5-B
will
# from drivers.ePaper7in5b import EPD as SSD
# from drivers.ePaper7in5b import EPDred as SSDred
# ssdred = SSDred(spi, pcs, pdc, prst, pbusy, landscape=False) # Cread a red display instance (just for B model)
Change to
from drivers.ePaper7in5b import EPD as SSD
from drivers.ePaper7in5b import EPDred as SSDred
ssdred = SSDred(spi, pcs, pdc, prst, pbusy, landscape=False) # Cread a red display instance (just for B model)
3. Open the program
Black and white:
demos/ePaper_test.py
Three colors:
demos/ePaper_test_B.py
4. Run the program