Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit cc88961

Browse files
committed
Release 6.1.4
1 parent b7cf331 commit cc88961

File tree

6 files changed

+25
-20
lines changed

6 files changed

+25
-20
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Hardware
4040

4141
Software
4242

43-
* Wiring-Arduino SDK
43+
* Arduino SDK
4444
* SPI library
4545

4646
Hardware
@@ -50,8 +50,8 @@ Hardware
5050

5151
## Licence
5252

53-
Copyright © Rei Vilo, 2010-2023
53+
**Copyright** © Rei Vilo, 2010-2023
5454

55-
Licence [Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)](./LICENCE.md)
55+
**Licence** [Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)](./LICENCE.md)
5656

5757
![](img/by-sa.svg)

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=PDLS_EXT3_Basic_Fast
2-
version=6.1.3
2+
version=6.1.4
33
author=Rei Vilo for Pervasive Displays
44
maintainer=Rei Vilo
55
sentence=Library for Pervasive Displays iTC monochrome screens with embedded fast update and EXT3-1 board

src/Screen_EPD_EXT3.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
// Release 608: Added screen report
2323
// Release 609: Added temperature management
2424
// Release 610: Removed partial update
25+
// Release 614: Added support for Arduino Nano ESP32 board
2526
//
2627

2728
// Library header
@@ -418,6 +419,11 @@ void Screen_EPD_EXT3_Fast::begin()
418419
// Board Xiao ESP32-C3 crashes if pins are specified.
419420
SPI.begin(8, 9, 10); // SCK MISO MOSI
420421

422+
#elif defined(ARDUINO_NANO_ESP32)
423+
424+
// Board Arduino Nano ESP32 arduino_nano_nora v2.0.11
425+
SPI.begin();
426+
421427
#elif defined(ARDUINO_ARCH_ESP32)
422428

423429
// Board ESP32-Pico-DevKitM-2 crashes if pins are not specified.

src/Screen_EPD_EXT3.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
/// * 5.80 reference xE2581PS0Bx (not tested)
2525
///
2626
/// @author Rei Vilo
27-
/// @date 21 Jul 2023
28-
/// @version 612
27+
/// @date 31 Aug 2023
28+
/// @version 614
2929
///
3030
/// @copyright (c) Rei Vilo, 2010-2023
3131
/// @copyright Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)
@@ -58,7 +58,7 @@
5858
///
5959
/// @brief Library release number
6060
///
61-
#define SCREEN_EPD_EXT3_RELEASE 612
61+
#define SCREEN_EPD_EXT3_RELEASE 614
6262

6363
// Other libraries
6464
#include "SPI.h"

src/hV_Configuration.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
/// * 11. Set storage mode, not implemented
2020
///
2121
/// @author Rei Vilo
22-
/// @date 21 Aug 2023
23-
/// @version 613
22+
/// @date 31 Aug 2023
23+
/// @version 614
2424
///
2525
/// @copyright (c) Rei Vilo, 2010-2023
2626
/// @copyright All rights reserved
@@ -56,7 +56,7 @@
5656
///
5757
/// @brief Release
5858
///
59-
#define hV_CONFIGURATION_RELEASE 613
59+
#define hV_CONFIGURATION_RELEASE 614
6060

6161
///
6262
/// @name 1- List of supported Pervasive Displays screens

src/hV_Documentation.h

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
/// Additionally, the **[Wiki](https://docs.pervasivedisplays.com/)** provides a gradual introduction to the e-paper technology and how to use it.
4242
///
4343
/// @author Rei Vilo
44-
/// @date 21 Aug 2023
45-
/// @version 613
44+
/// @date 31 Aug 2023
45+
/// @version 614
4646
///
4747
/// @copyright © Rei Vilo, 2010-2023
4848
/// @copyright All rights reserved
@@ -67,7 +67,7 @@
6767
///
6868
/// Examples are under the examples folders.
6969
///
70-
/// + Common
70+
/// * Common
7171
/// * Common_Colours.ino
7272
/// @image html T2_PALET.jpg
7373
/// @image latex T2_PALET.jpg width=8cm
@@ -86,23 +86,22 @@
8686
/// * Common_WhoAmI.ino
8787
/// @image html T2_WHOAMI.jpg
8888
/// @image latex T2_WHOAMI.jpg width=8cm
89-
/// @image latex T2_CHARA.PDF width=10cm
9089
///
9190
/// + Fast
9291
/// * Example_Global_Speed.ino
9392
/// @image html Global.jpeg
94-
/// @image latex Global.jpeg width=10cm
93+
/// @image latex Global.jpeg width=8cm
9594
/// * Example_Fast_Speed.ino
9695
/// @image html Fast.jpeg
97-
/// @image latex Fast.jpeg width=10cm
96+
/// @image latex Fast.jpeg width=8cm
9897
///
9998
/// + Black-White-Red-Yellow
10099
/// * BWRY_Colours.ino
101-
/// @image html BWRY_Colours.jpg
102-
/// @image latex BWRY_Colours.jpg width=10cm
100+
/// @image html BWRY_Colours.png
101+
/// @image latex BWRY_Colours.png width=8cm
103102
/// * BWRY_Palette.ino
104-
/// @image html BWRY_Palette.jpg
105-
/// @image latex BWRY_Palette.jpg width=10cm
103+
/// @image html BWRY_Palette.png
104+
/// @image latex BWRY_Palette.png width=8cm
106105
/// * BWRY_Contrasts.ino
107106
/// @image html BWRY_Contrasts.jpg
108107
/// @image latex BWRY_Contrasts.jpg width=8cm

0 commit comments

Comments
 (0)