Skip to content

Commit

Permalink
Release 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rei-vilo committed Nov 17, 2023
1 parent 115dfeb commit b27e13f
Show file tree
Hide file tree
Showing 26 changed files with 623 additions and 285 deletions.
23 changes: 10 additions & 13 deletions examples/Example_Fast_Line/Example_Fast_Line.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,21 @@
/// @n
///

// Screen
#include "PDLS_EXT3_Basic_Fast.h"

// SDK
#if defined(ENERGIA) // LaunchPad specific
#include "Energia.h"
#else // Arduino general
#include "Arduino.h"
#endif // SDK
// #include <Arduino.h>
#include "hV_HAL_Peripherals.h"

// Set parameters
#define DISPLAY_FAST_LINE 1
// Configuration
#include "hV_Configuration.h"

// Include application, user and local libraries
#include "SPI.h"
#include "PDLS_EXT3_Basic_Fast.h"
// #include <SPI.h>

// Set parameters
#define DISPLAY_FAST_LINE 1
// Define structures and classes

// Define variables and constants
Expand Down Expand Up @@ -127,10 +128,6 @@ void setup()

Serial.println("=== ");
Serial.println();

#if defined(ARDUINO_ARCH_PIDUINO)
exit(0);
#endif
}

// Add loop code
Expand Down
24 changes: 11 additions & 13 deletions examples/Example_Fast_Orientation/Example_Fast_Orientation.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,21 @@
/// @n
///

// Screen
#include "PDLS_EXT3_Basic_Fast.h"

// SDK
#if defined(ENERGIA) // LaunchPad specific
#include "Energia.h"
#else // Arduino general
#include "Arduino.h"
#endif // SDK
// #include <Arduino.h>
#include "hV_HAL_Peripherals.h"

// Set parameters
#define DISPLAY_FAST_ORIENTATION 1
// Configuration
#include "hV_Configuration.h"

// Include application, user and local libraries
#include "SPI.h"
#include "PDLS_EXT3_Basic_Fast.h"
// #include <SPI.h>

// Set parameters
#define DISPLAY_FAST_ORIENTATION 1

// Define structures and classes

Expand Down Expand Up @@ -112,10 +114,6 @@ void setup()

Serial.println("=== ");
Serial.println();

#if defined(ARDUINO_ARCH_PIDUINO)
exit(0);
#endif
}

// Add loop code
Expand Down
27 changes: 13 additions & 14 deletions examples/Example_Fast_Speed/Example_Fast_Speed.ino
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,26 @@
/// Release 604: Global and fast variants
///

// SDK
#if defined(ENERGIA) // LaunchPad specific
#include "Energia.h"
#else // Arduino general
#include "Arduino.h"
#endif // SDK
// Screen
// #include "PDLS_EXT3_Basic.h"
#include "PDLS_EXT3_Basic_Fast.h"

// Set parameters
// SDK
// #include <Arduino.h>
#include "hV_HAL_Peripherals.h"

// Include application, user and local libraries
#include "SPI.h"
// #include <SPI.h>

// Configuration
#include "hV_Configuration.h"

// Define structures and classes
// #include "PDLS_EXT3_Basic.h"

// Define constants and variables
// Screen_EPD_EXT3 myScreen(eScreen_EPD_EXT3_271, boardRaspberryPiPico_RP2040);
// Screen_EPD_EXT3 myScreen(eScreen_EPD_EXT3_370, boardRaspberryPiPico_RP2040);

#include "PDLS_EXT3_Basic_Fast.h"
// Screen_EPD_EXT3_Fast myScreen(eScreen_EPD_EXT3_271_09_Fast, boardRaspberryPiPico_RP2040);
Screen_EPD_EXT3_Fast myScreen(eScreen_EPD_EXT3_370_0C_Fast, boardRaspberryPiPico_RP2040);

Expand Down Expand Up @@ -131,10 +134,6 @@ void setup()

Serial.println("=== ");
Serial.println();

#if defined(ARDUINO_ARCH_PIDUINO)
exit(0);
#endif
}

// Add loop code
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=PDLS_EXT3_Basic_Fast
version=7.0.0
version=7.0.1
author=Rei Vilo for Pervasive Displays
maintainer=Rei Vilo
sentence=Library for Pervasive Displays iTC monochrome screens with embedded fast update and EXT3-1 board
Expand Down
7 changes: 2 additions & 5 deletions src/PDLS_EXT3_Basic_Fast.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,14 @@
///

// SDK
#if defined(ENERGIA) // LaunchPad specific
#include "Energia.h"
#else // Arduino general
#include "Arduino.h"
#endif // end SDK
#include <Arduino.h>

#ifndef PDLS_EXT3_BASIC_FAST_RELEASE
///
/// @brief Library release number
///
#define PDLS_EXT3_BASIC_FAST_RELEASE 607
#include "Screen_EPD_EXT3.h"

#endif // PDLS_EXT3_BASIC_FAST_RELEASE

Loading

0 comments on commit b27e13f

Please sign in to comment.