Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding drivers for EPDiy supported parallel epapers #75

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
a0113e0
Setup epdiy_epaper generic driver REF: https://github.com/martinberli…
martinberlin May 28, 2021
2d3a1fa
Make grays darker
martinberlin May 28, 2021
f4a760d
Enlarge DISP_BUF_SIZE. Remove epdiy_rounder callback since is not used
martinberlin May 28, 2021
7d339be
Attempt to add partial update when flush area is not full screen
martinberlin May 29, 2021
c9660bd
#3 Start adding L58: Find a way to instantiate existing class or refa…
martinberlin May 30, 2021
debae0b
#3 Add touch hook for Lilygo L58
martinberlin May 30, 2021
19b1ecd
Update epdiy driver using it standalone, without CalEPD. Previous is …
martinberlin Jun 1, 2021
18350e6
Add old calepd version
martinberlin Jun 1, 2021
42ae32f
Update epdiy_epaper to make void epdiy_set_px_cb callback write direc…
martinberlin Jun 1, 2021
160035c
Add generic CalEPD SPI epaper driver
martinberlin Jun 3, 2021
c539322
Using epdiy_set_px_cb *buf and returning *color_map in flush method t…
martinberlin Jun 11, 2021
cd28318
Clean up example with buffer copy
martinberlin Jun 11, 2021
6dfa2a1
Fill *buf initially with white in first set_px call. Remove additiona…
martinberlin Jun 12, 2021
d71793f
Now first version is renamed to epdiy_epaper_v1.cpp
martinberlin Jun 12, 2021
97a330c
Now v2 is the official EPDiy driver of this fork
martinberlin Jun 12, 2021
255a1a7
Update callbacks to support also fast update MODE_DU configurable wit…
martinberlin Jun 13, 2021
9a16924
Related to commit in https://github.com/martinberlin/lv_port_esp32-ep…
martinberlin Jun 13, 2021
588b14f
Leave buf_copy_to_framebuffer as the default method and Gabor method …
martinberlin Jun 13, 2021
4650001
Rendering correctly in full screen and small updates
martinberlin Jun 15, 2021
4004726
Merge branch 'lvgl:master' into master
martinberlin Jun 21, 2021
c55e32a
Update Readme
martinberlin Jun 21, 2021
a66706d
#1 Cleanup and add L58 as driver in this component
martinberlin Jun 22, 2021
bcd2b80
Merge branch 'master' into master
martinberlin Jun 23, 2021
22893f0
Add a reference to L58 include directory
martinberlin Jun 23, 2021
2868e21
#75 Start resolving conflicts (updating component)
martinberlin Jan 2, 2022
63bc5f4
#75 Update lvgl_tft
martinberlin Jan 2, 2022
0636e26
Merge branch 'master' into master
martinberlin Jan 2, 2022
d738aaa
#75 update I2C references since lvgl_i2c_conf.h is not used
martinberlin Jan 2, 2022
87bf29d
Update with epdiy last version support
martinberlin Aug 24, 2023
9445dab
epdiy V7 made a bit faster
martinberlin Aug 26, 2023
5ffb67f
Add GT911 using esp_lcd_touch_gt911
martinberlin Sep 2, 2023
03cf7ec
Exclude CalEPD and other tests from main CMakeLists.txt
martinberlin Mar 10, 2024
58d5feb
Updated for color output on Kaleido e-paper
Mar 11, 2024
a1acc7e
Keep also a copy of epdiy driver for grayscale without color filter e…
martinberlin Mar 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Exclude CalEPD and other tests from main CMakeLists.txt
  • Loading branch information
martinberlin committed Mar 10, 2024
commit 03cf7ec5cd6b205005602d8b9f91f3c1fd502bde
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ endif()
idf_component_register(SRCS ${SOURCES}
INCLUDE_DIRS ${LVGL_INCLUDE_DIRS}
REQUIRES epdiy
lvgl CalEPD sharp-lcd espressif__esp_lcd_touch_gt911
lvgl
#CalEPD
#sharp-lcd
#espressif__esp_lcd_touch_gt911
)

target_compile_definitions(${COMPONENT_LIB} PUBLIC "-DLV_LVGL_H_INCLUDE_SIMPLE")
Expand Down