Skip to content

Commit

Permalink
Version 1.2.7
Browse files Browse the repository at this point in the history
- fix paged drawing of initial screen on GDEH029A1
- sometimes true is false, if applied the wrong way round
  • Loading branch information
ZinggJM committed Apr 10, 2020
1 parent b2a40ba commit 8488ea2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@
- promotion panels from suppliers are welcome, to add support to GxEPD2
- donation panels from users are welcome, to add support to GxEPD2

### Version 1.2.6
### Version 1.2.7
- fix paged drawing of initial screen on GDEH029A1
- sometimes true is false, if applied the wrong way round
#### Version 1.2.6
- slightly improved differential refresh for GDEW1248T3
- minor fixes
#### Version 1.2.5
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=GxEPD2
version=1.2.6
version=1.2.7
author=Jean-Marc Zingg
maintainer=Jean-Marc Zingg
sentence=Arduino Display Library for SPI E-Paper displays from Dalian Good Display and Waveshare.
Expand Down
2 changes: 1 addition & 1 deletion src/epd/GxEPD2_290.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GxEPD2_290::GxEPD2_290(int8_t cs, int8_t dc, int8_t rst, int8_t busy) :

void GxEPD2_290::clearScreen(uint8_t value)
{
_initial_write = true; // initial full screen buffer clean done
_initial_write = false; // initial full screen buffer clean done
if (_initial_refresh)
{
_Init_Full();
Expand Down

0 comments on commit 8488ea2

Please sign in to comment.