From 885387dab8b6fcb41b869c714d38c6d2b2c085d8 Mon Sep 17 00:00:00 2001 From: Rei Vilo Date: Fri, 9 Feb 2024 17:29:56 +0100 Subject: [PATCH] Release 7.0.3 Updated year --- README.md | 4 +++- examples/Example_Fast_Line/Example_Fast_Line.ino | 2 +- .../Example_Fast_Orientation/Example_Fast_Orientation.ino | 2 +- examples/Example_Fast_Speed/Example_Fast_Speed.ino | 2 +- .../Example_Fast_Temperature/Example_Fast_Temperature.ino | 8 +++++--- src/PDLS_EXT3_Basic_Fast.h | 2 +- src/Screen_EPD_EXT3.cpp | 2 +- src/Screen_EPD_EXT3.h | 2 +- src/Terminal12x16e.h | 2 +- src/Terminal16x24e.h | 2 +- src/Terminal6x8e.h | 2 +- src/Terminal8x12e.h | 2 +- src/hV_Board.cpp | 2 +- src/hV_Board.h | 2 +- src/hV_Colours565.cpp | 2 +- src/hV_Colours565.h | 2 +- src/hV_Common.h | 2 +- src/hV_Configuration.h | 2 +- src/hV_Documentation.h | 2 +- src/hV_Font.h | 2 +- src/hV_Font_Terminal.cpp | 2 +- src/hV_Font_Terminal.h | 2 +- src/hV_HAL_Peripherals.h | 2 +- src/hV_List_Boards.h | 2 +- src/hV_List_Constants.h | 2 +- src/hV_List_Options.h | 2 +- src/hV_List_Screens.h | 2 +- src/hV_Screen_Buffer.cpp | 2 +- src/hV_Screen_Buffer.h | 2 +- src/hV_Utilities_Common.cpp | 2 +- src/hV_Utilities_Common.h | 2 +- src/hV_Utilities_PDLS.cpp | 2 +- src/hV_Utilities_PDLS.h | 2 +- 33 files changed, 39 insertions(+), 35 deletions(-) diff --git a/README.md b/README.md index 985f83b..5f64b22 100755 --- a/README.md +++ b/README.md @@ -50,8 +50,10 @@ Hardware ## Licence -**Copyright** © Rei Vilo, 2010-2023 +**Copyright** © Rei Vilo, 2010-2024 **Licence** [Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)](./LICENCE.md) ![](img/by-sa.svg) + +**Portions** © Pervasive Displays, 2010-2024 diff --git a/examples/Example_Fast_Line/Example_Fast_Line.ino b/examples/Example_Fast_Line/Example_Fast_Line.ino index 566949e..dcaf65f 100755 --- a/examples/Example_Fast_Line/Example_Fast_Line.ino +++ b/examples/Example_Fast_Line/Example_Fast_Line.ino @@ -8,7 +8,7 @@ /// @date 20 Mar 2023 /// @version 607 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) /// /// @see ReadMe.txt for references diff --git a/examples/Example_Fast_Orientation/Example_Fast_Orientation.ino b/examples/Example_Fast_Orientation/Example_Fast_Orientation.ino index 3a1eba4..5234f66 100755 --- a/examples/Example_Fast_Orientation/Example_Fast_Orientation.ino +++ b/examples/Example_Fast_Orientation/Example_Fast_Orientation.ino @@ -8,7 +8,7 @@ /// @date 20 Mar 2023 /// @version 607 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) /// /// @see ReadMe.txt for references diff --git a/examples/Example_Fast_Speed/Example_Fast_Speed.ino b/examples/Example_Fast_Speed/Example_Fast_Speed.ino index fcbb1a6..4056ef7 100755 --- a/examples/Example_Fast_Speed/Example_Fast_Speed.ino +++ b/examples/Example_Fast_Speed/Example_Fast_Speed.ino @@ -9,7 +9,7 @@ /// @date 21 Nov 2023 /// @version 702 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) /// /// @see ReadMe.md for references diff --git a/examples/Example_Fast_Temperature/Example_Fast_Temperature.ino b/examples/Example_Fast_Temperature/Example_Fast_Temperature.ino index aab6090..24cf3c1 100644 --- a/examples/Example_Fast_Temperature/Example_Fast_Temperature.ino +++ b/examples/Example_Fast_Temperature/Example_Fast_Temperature.ino @@ -8,7 +8,7 @@ /// @date 21 Jan 2024 /// @version 704 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) /// /// @see ReadMe.txt for references @@ -34,7 +34,7 @@ // Define variables and constants -Screen_EPD_EXT3_Fast myScreen(eScreen_EPD_EXT3_266_0C_Fast, boardRaspberryPiPico_RP2040); +Screen_EPD_EXT3_Fast myScreen(eScreen_EPD_EXT3_271_09_Fast, boardRaspberryPiPico_RP2040); // Screen_EPD_EXT3_Fast myScreen(eScreen_EPD_EXT3_271_09_Wide, boardRaspberryPiPico_RP2040); // Prototypes @@ -47,6 +47,9 @@ void check(int8_t temperatureC, uint8_t expectedMode) const char * stringMode[] = { "NONE", "GLOBAL", "FAST", "PARTIAL" }; myScreen.setTemperatureC(temperatureC); uint8_t recommendedMode = myScreen.checkTemperatureMode(expectedMode); + // Raspberry Pi SDK core for RP2040 + // Serial.printf("Temperature= %+3i C - Mode: %8s -> %-8s", temperatureC, stringMode[expectedMode], stringMode[recommendedMode]); + // Arduino core for RP2040 Serial.print("Temperature= "); Serial.print(temperatureC); Serial.print(" C - Mode: "); @@ -74,7 +77,6 @@ void performTest() void setup() { Serial.begin(115200); - delay(5000); Serial.println(); Serial.println("=== " __FILE__); diff --git a/src/PDLS_EXT3_Basic_Fast.h b/src/PDLS_EXT3_Basic_Fast.h index 601302b..586c71e 100755 --- a/src/PDLS_EXT3_Basic_Fast.h +++ b/src/PDLS_EXT3_Basic_Fast.h @@ -9,7 +9,7 @@ /// @date 21 Dec 2023 /// @version 703 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/Screen_EPD_EXT3.cpp b/src/Screen_EPD_EXT3.cpp index 4c27662..56cebf3 100755 --- a/src/Screen_EPD_EXT3.cpp +++ b/src/Screen_EPD_EXT3.cpp @@ -8,7 +8,7 @@ // // Created by Rei Vilo, 28 Jun 2016 // -// Copyright (c) Rei Vilo, 2010-2023 +// Copyright (c) Rei Vilo, 2010-2024 // Licence Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) // // Release 509: Added eScreen_EPD_EXT3_271_Fast diff --git a/src/Screen_EPD_EXT3.h b/src/Screen_EPD_EXT3.h index e51d0b1..87f0441 100755 --- a/src/Screen_EPD_EXT3.h +++ b/src/Screen_EPD_EXT3.h @@ -29,7 +29,7 @@ /// @date 21 Dec 2023 /// @version 703 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) /// /// The highView Library Suite is shared under the Creative Commons licence Attribution-ShareAlike 4.0 International (CC BY-SA 4.0). diff --git a/src/Terminal12x16e.h b/src/Terminal12x16e.h index 5af3b83..1b22044 100755 --- a/src/Terminal12x16e.h +++ b/src/Terminal12x16e.h @@ -9,7 +9,7 @@ /// @date 02 Aug 2021 /// @version 507 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/Terminal16x24e.h b/src/Terminal16x24e.h index 38bf874..ae175f6 100755 --- a/src/Terminal16x24e.h +++ b/src/Terminal16x24e.h @@ -9,7 +9,7 @@ /// @date 02 Aug 2021 /// @version 507 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/Terminal6x8e.h b/src/Terminal6x8e.h index ec29423..b39f4f3 100755 --- a/src/Terminal6x8e.h +++ b/src/Terminal6x8e.h @@ -9,7 +9,7 @@ /// @date 02 Aug 2021 /// @version 507 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/Terminal8x12e.h b/src/Terminal8x12e.h index ba7f3b4..0c08845 100755 --- a/src/Terminal8x12e.h +++ b/src/Terminal8x12e.h @@ -9,7 +9,7 @@ /// @date 02 Aug 2021 /// @version 507 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/hV_Board.cpp b/src/hV_Board.cpp index a2d2056..becf1d7 100755 --- a/src/hV_Board.cpp +++ b/src/hV_Board.cpp @@ -8,7 +8,7 @@ // // Created by Rei Vilo, 16 Aug 2023 // -// Copyright (c) Rei Vilo, 2010-2023 +// Copyright (c) Rei Vilo, 2010-2024 // Licence All rights reserved // diff --git a/src/hV_Board.h b/src/hV_Board.h index 5f4e763..e1e8da4 100755 --- a/src/hV_Board.h +++ b/src/hV_Board.h @@ -11,7 +11,7 @@ /// @date 21 Aug 2023 /// @version 700 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Evaluation edition: for professionals or organisations, no commercial usage diff --git a/src/hV_Colours565.cpp b/src/hV_Colours565.cpp index cc404ce..ef6dc4f 100755 --- a/src/hV_Colours565.cpp +++ b/src/hV_Colours565.cpp @@ -8,7 +8,7 @@ // // Created by Rei Vilo, 31 Dec 2013 // -// Copyright (c) Rei Vilo, 2010-2023 +// Copyright (c) Rei Vilo, 2010-2024 // Licence Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) // // See hV_Colours565.h for references diff --git a/src/hV_Colours565.h b/src/hV_Colours565.h index 1757125..bd8b186 100755 --- a/src/hV_Colours565.h +++ b/src/hV_Colours565.h @@ -9,7 +9,7 @@ /// @date 21 Sep 2023 /// @version 700 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) /// diff --git a/src/hV_Common.h b/src/hV_Common.h index ef1ca1a..7b2be80 100755 --- a/src/hV_Common.h +++ b/src/hV_Common.h @@ -9,7 +9,7 @@ /// @date 21 Nov 2023 /// @version 702 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/hV_Configuration.h b/src/hV_Configuration.h index c7b3929..8d458b7 100755 --- a/src/hV_Configuration.h +++ b/src/hV_Configuration.h @@ -22,7 +22,7 @@ /// @date 21 Dec 2023 /// @version 703 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/hV_Documentation.h b/src/hV_Documentation.h index 9c457ec..ceccad7 100755 --- a/src/hV_Documentation.h +++ b/src/hV_Documentation.h @@ -44,7 +44,7 @@ /// @date 21 Dec 2023 /// @version 703 /// -/// @copyright © Rei Vilo, 2010-2023 +/// @copyright © Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/hV_Font.h b/src/hV_Font.h index e4f5578..844f10f 100755 --- a/src/hV_Font.h +++ b/src/hV_Font.h @@ -9,7 +9,7 @@ /// @date 02 Aug 2021 /// @version 507 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/hV_Font_Terminal.cpp b/src/hV_Font_Terminal.cpp index 4b1957d..cdeebc2 100755 --- a/src/hV_Font_Terminal.cpp +++ b/src/hV_Font_Terminal.cpp @@ -7,7 +7,7 @@ // // Created by Rei Vilo, 31 Dec 2013 // -// Copyright (c) Rei Vilo, 2010-2023 +// Copyright (c) Rei Vilo, 2010-2024 // Licence All rights reserved // // * Basic edition: for hobbyists and for basic usage diff --git a/src/hV_Font_Terminal.h b/src/hV_Font_Terminal.h index 01703b7..6d1fc28 100755 --- a/src/hV_Font_Terminal.h +++ b/src/hV_Font_Terminal.h @@ -9,7 +9,7 @@ /// @date 02 Aug 2021 /// @version 507 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/hV_HAL_Peripherals.h b/src/hV_HAL_Peripherals.h index 3deae1a..1c66452 100755 --- a/src/hV_HAL_Peripherals.h +++ b/src/hV_HAL_Peripherals.h @@ -9,7 +9,7 @@ /// @date 21 Sep 2023 /// @version 700 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) /// /// The highView Library Suite is shared under the Creative Commons licence Attribution-ShareAlike 4.0 International (CC BY-SA 4.0). diff --git a/src/hV_List_Boards.h b/src/hV_List_Boards.h index 9476ead..b9a2252 100755 --- a/src/hV_List_Boards.h +++ b/src/hV_List_Boards.h @@ -12,7 +12,7 @@ /// @date 21 Sep 2023 /// @version 700 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/hV_List_Constants.h b/src/hV_List_Constants.h index 3f8421a..49ce695 100755 --- a/src/hV_List_Constants.h +++ b/src/hV_List_Constants.h @@ -9,7 +9,7 @@ /// @date 21 Sep 2023 /// @version 700 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/hV_List_Options.h b/src/hV_List_Options.h index f2707a0..7270618 100755 --- a/src/hV_List_Options.h +++ b/src/hV_List_Options.h @@ -20,7 +20,7 @@ /// @date 21 Nov 2023 /// @version 702 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/hV_List_Screens.h b/src/hV_List_Screens.h index 5cfa181..ad41029 100755 --- a/src/hV_List_Screens.h +++ b/src/hV_List_Screens.h @@ -13,7 +13,7 @@ /// @date 21 Nov 2023 /// @version 702 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Basic edition: for hobbyists and for basic usage diff --git a/src/hV_Screen_Buffer.cpp b/src/hV_Screen_Buffer.cpp index fa69c49..0126275 100755 --- a/src/hV_Screen_Buffer.cpp +++ b/src/hV_Screen_Buffer.cpp @@ -8,7 +8,7 @@ // // Created by Rei Vilo, 28 Jun 2016 // -// Copyright (c) Rei Vilo, 2010-2023 +// Copyright (c) Rei Vilo, 2010-2024 // Licence Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) // // See hV_Screen_Buffer.h for references diff --git a/src/hV_Screen_Buffer.h b/src/hV_Screen_Buffer.h index b3e665d..3a30383 100755 --- a/src/hV_Screen_Buffer.h +++ b/src/hV_Screen_Buffer.h @@ -9,7 +9,7 @@ /// @date 21 Sep 2023 /// @version 700 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) /// /// The highView Library Suite is shared under the Creative Commons licence Attribution-ShareAlike 4.0 International (CC BY-SA 4.0). diff --git a/src/hV_Utilities_Common.cpp b/src/hV_Utilities_Common.cpp index e58b649..863ce82 100755 --- a/src/hV_Utilities_Common.cpp +++ b/src/hV_Utilities_Common.cpp @@ -7,7 +7,7 @@ // // Created by Rei Vilo, 01 Jun 2013 // -// Copyright (c) Rei Vilo, 2010-2023 +// Copyright (c) Rei Vilo, 2010-2024 // Licence Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) // // See hV_Utilities_Common.h for references diff --git a/src/hV_Utilities_Common.h b/src/hV_Utilities_Common.h index ced5189..c84f918 100755 --- a/src/hV_Utilities_Common.h +++ b/src/hV_Utilities_Common.h @@ -9,7 +9,7 @@ /// @date 21 Nov 2023 /// @version 702 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) /// /// The highView Library Suite is shared under the Creative Commons licence Attribution-ShareAlike 4.0 International (CC BY-SA 4.0). diff --git a/src/hV_Utilities_PDLS.cpp b/src/hV_Utilities_PDLS.cpp index 32b5fd9..ecd24cd 100755 --- a/src/hV_Utilities_PDLS.cpp +++ b/src/hV_Utilities_PDLS.cpp @@ -8,7 +8,7 @@ // // Created by Rei Vilo, 16 Aug 2023 // -// Copyright (c) Rei Vilo, 2010-2023 +// Copyright (c) Rei Vilo, 2010-2024 // Licence All rights reserved // diff --git a/src/hV_Utilities_PDLS.h b/src/hV_Utilities_PDLS.h index c796d3f..45aef73 100755 --- a/src/hV_Utilities_PDLS.h +++ b/src/hV_Utilities_PDLS.h @@ -11,7 +11,7 @@ /// @date 21 Aug 2023 /// @version 700 /// -/// @copyright (c) Rei Vilo, 2010-2023 +/// @copyright (c) Rei Vilo, 2010-2024 /// @copyright All rights reserved /// /// * Evaluation edition: for professionals or organisations, no commercial usage