Skip to content

Commit

Permalink
Release 6.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rei-vilo committed Aug 31, 2023
1 parent 7c17302 commit 0043388
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 18 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Hardware

Software

* Wiring-Arduino SDK
* Arduino SDK
* SPI library

Hardware
Expand All @@ -48,8 +48,8 @@ Hardware

## Licence

Copyright © Rei Vilo, 2010-2023
**Copyright** © Rei Vilo, 2010-2023

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

![](img/by-sa.svg)
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=PDLS_EXT3_Basic
version=6.1.3
version=6.1.4
author=Rei Vilo for Pervasive Displays
maintainer=Rei Vilo
sentence=Library for Pervasive Displays iTC monochrome and colour screens with EXT3-1 board
Expand Down
6 changes: 6 additions & 0 deletions src/Screen_EPD_EXT3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
// Release 608: Added screen report
// Release 609: Added temperature management
// Release 613: Improved stability for BWR screens
// Release 614: Added support for Arduino Nano ESP32 board
//

// Library header
Expand Down Expand Up @@ -268,6 +269,11 @@ void Screen_EPD_EXT3::begin()
// Board Xiao ESP32-C3 crashes if pins are specified.
SPI.begin(8, 9, 10); // SCK MISO MOSI

#elif defined(ARDUINO_NANO_ESP32)

// Board Arduino Nano ESP32 arduino_nano_nora v2.0.11
SPI.begin();

#elif defined(ARDUINO_ARCH_ESP32)

// Board ESP32-Pico-DevKitM-2 crashes if pins are not specified.
Expand Down
6 changes: 3 additions & 3 deletions src/Screen_EPD_EXT3.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
/// * Temperature: monochrome = 0 to 50 °C, red = 0 to 40 °C
///
/// @author Rei Vilo
/// @date 21 Aug 2023
/// @version 613
/// @date 31 Aug 2023
/// @version 614
///
/// @copyright (c) Rei Vilo, 2010-2023
/// @copyright Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)
Expand Down Expand Up @@ -47,7 +47,7 @@
///
/// @brief Library release number
///
#define SCREEN_EPD_EXT3_RELEASE 613
#define SCREEN_EPD_EXT3_RELEASE 614

// Other libraries
#include "SPI.h"
Expand Down
6 changes: 3 additions & 3 deletions src/hV_Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
/// * 11. Set storage mode, not implemented
///
/// @author Rei Vilo
/// @date 21 Aug 2023
/// @version 613
/// @date 31 Aug 2023
/// @version 614
///
/// @copyright (c) Rei Vilo, 2010-2023
/// @copyright All rights reserved
Expand Down Expand Up @@ -56,7 +56,7 @@
///
/// @brief Release
///
#define hV_CONFIGURATION_RELEASE 613
#define hV_CONFIGURATION_RELEASE 614

///
/// @name 1- List of supported Pervasive Displays screens
Expand Down
15 changes: 7 additions & 8 deletions src/hV_Documentation.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
/// Additionally, the **[Wiki](https://docs.pervasivedisplays.com/)** provides a gradual introduction to the e-paper technology and how to use it.
///
/// @author Rei Vilo
/// @date 21 Aug 2023
/// @version 613
/// @date 31 Aug 2023
/// @version 614
///
/// @copyright © Rei Vilo, 2010-2023
/// @copyright All rights reserved
Expand All @@ -67,7 +67,7 @@
///
/// Examples are under the examples folders.
///
/// + Common
/// * Common
/// * Common_Colours.ino
/// @image html T2_PALET.jpg
/// @image latex T2_PALET.jpg width=8cm
Expand All @@ -86,23 +86,22 @@
/// * Common_WhoAmI.ino
/// @image html T2_WHOAMI.jpg
/// @image latex T2_WHOAMI.jpg width=8cm
/// @image latex T2_CHARA.PDF width=10cm
///
/// + Fast
/// * Example_Global_Speed.ino
/// @image html Global.jpeg
/// @image latex Global.jpeg width=10cm
/// @image latex Global.jpeg width=8cm
/// * Example_Fast_Speed.ino
/// @image html Fast.jpeg
/// @image latex Fast.jpeg width=10cm
/// @image latex Fast.jpeg width=8cm
///
/// + Black-White-Red-Yellow
/// * BWRY_Colours.ino
/// @image html BWRY_Colours.png
/// @image latex BWRY_Colours.png width=10cm
/// @image latex BWRY_Colours.png width=8cm
/// * BWRY_Palette.ino
/// @image html BWRY_Palette.png
/// @image latex BWRY_Palette.png width=10cm
/// @image latex BWRY_Palette.png width=8cm
/// * BWRY_Contrasts.ino
/// @image html BWRY_Contrasts.jpg
/// @image latex BWRY_Contrasts.jpg width=8cm
Expand Down

0 comments on commit 0043388

Please sign in to comment.