Skip to content

Commit 29b3800

Browse files
committed
Release 9.0.5
1 parent 396f403 commit 29b3800

File tree

5 files changed

+18
-13
lines changed

5 files changed

+18
-13
lines changed

examples/EXT4_Matter/EXT4_Matter_RGB/EXT4_Matter_RGB.ino

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,11 @@ void displayValue(bool flag = true);
150150
///
151151
/// @param button GPIO of the button
152152
/// @param title text for title
153-
/// @param option1 text for option 0, required
154-
/// @param option2 text for option 1, optional
155-
/// @param option3 text for option 2, optional
156-
/// @param option4 text for option 3, optional
157-
/// @return number of the selected option
153+
/// @param option1 text for option 1, required
154+
/// @param option2 text for option 2, optional
155+
/// @param option3 text for option 3, optional
156+
/// @param option4 text for option 4, optional
157+
/// @return number of the selected option, 0 = none
158158
/// @note Procedure
159159
/// * Press and hold the button to choose the option
160160
/// * A progress bar shows the selected option

examples/EXT4_Matter/EXT4_Matter_Weather/EXT4_Matter_Weather.ino

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -158,11 +158,11 @@ bool displayValue(uint8_t slot, STRING_CONST_TYPE name, measure_s * value, STRIN
158158
///
159159
/// @param button GPIO of the button
160160
/// @param title text for title
161-
/// @param option1 text for option 0, required
162-
/// @param option2 text for option 1, optional
163-
/// @param option3 text for option 2, optional
164-
/// @param option4 text for option 3, optional
165-
/// @return number of the selected option
161+
/// @param option1 text for option 1, required
162+
/// @param option2 text for option 2, optional
163+
/// @param option3 text for option 3, optional
164+
/// @param option4 text for option 4, optional
165+
/// @return number of the selected option, 0 = none
166166
/// @note Procedure
167167
/// * Press and hold the button to choose the option
168168
/// * A progress bar shows the selected option

src/Screen_EPD.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -564,6 +564,11 @@ void Screen_EPD::flush()
564564

565565
FRAMEBUFFER_TYPE nextBuffer = s_newImage;
566566
FRAMEBUFFER_TYPE previousBuffer = s_newImage + u_pageColourSize;
567+
// FRAMEBUFFER_TYPE frameM1 = nextBuffer;
568+
// FRAMEBUFFER_TYPE frameM2 = previousBuffer;
569+
// FRAMEBUFFER_TYPE frameS1 = nextBuffer + u_subPageColourSize;
570+
// FRAMEBUFFER_TYPE frameS2 = previousBuffer + u_subPageColourSize;
571+
567572
FRAMEBUFFER_TYPE blackBuffer = s_newImage;
568573
FRAMEBUFFER_TYPE redBuffer = s_newImage + u_pageColourSize;
569574
FRAMEBUFFER_TYPE frameM1 = blackBuffer;

src/Screen_EPD.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
///
88
/// @author Rei Vilo
99
/// @date 21 Jan 2025
10-
/// @version 902
10+
/// @version 904
1111
///
1212
/// @copyright (c) Rei Vilo, 2010-2025
1313
/// @copyright All rights reserved
@@ -50,7 +50,7 @@
5050
///
5151
/// @brief Library release number
5252
///
53-
#define SCREEN_EPD_RELEASE 902
53+
#define SCREEN_EPD_RELEASE 904
5454

5555
#include "Driver_EPD_Virtual.h"
5656

src/hV_Documentation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
///
105105
/// @note The technical note [Migrate from release 8 to release 9](https://pdls.pervasivedisplays.com/userguide/Volume5/Chapter1/Part6/Section22/) provides more information.
106106
///
107-
/// the drivers are avaialble at [Pervasive Displays](Pervasive Displays) GitHub repository.
107+
/// The drivers are available at the [Pervasive Displays](https://github.com/PervasiveDisplays) GitHub repository.
108108
///
109109
/// @page Examples Examples
110110
///

0 commit comments

Comments
 (0)