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 9d36d16 commit 2dfd3b0
Show file tree
Hide file tree
Showing 26 changed files with 594 additions and 285 deletions.
23 changes: 10 additions & 13 deletions examples/Basic_Touch_Draw/Basic_Touch_Draw.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,29 @@
/// @n
///

// Screen
#include "PDLS_EXT3_Basic_Touch.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"

// Configuration
#include "hV_Configuration.h"

// Set parameters
#define DISPLAY_TOUCH 1

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

// Define structures and classes

// Define variables and constants

// === Pervasive Displays iTC
// --- Touch
#include "PDLS_EXT3_Basic_Touch.h"

// Screen_EPD_EXT3_Fast myScreen(eScreen_EPD_EXT3_271_09_Touch, boardRaspberryPiPico_RP2040);
Screen_EPD_EXT3_Fast myScreen(eScreen_EPD_EXT3_370_0C_Touch, boardRaspberryPiPico_RP2040);

Expand Down Expand Up @@ -156,10 +157,6 @@ void setup()

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

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

// Add loop code
Expand Down
22 changes: 10 additions & 12 deletions examples/Basic_Touch_GUI/Basic_Touch_GUI.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,22 @@
/// @n
///

// Screen
#include "PDLS_EXT3_Basic_Touch.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"

// Configuration
#include "hV_Configuration.h"

// Set parameters
#define DISPLAY_GUI 1

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

#if (SCREEN_EPD_EXT3_RELEASE < 531)
#error Required SCREEN_EPD_EXT3_RELEASE 531
Expand Down Expand Up @@ -167,10 +169,6 @@ void setup()

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

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

// Add loop code
Expand Down
19 changes: 10 additions & 9 deletions examples/Basic_Touch_TicTacToe/Basic_Touch_TicTacToe.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@
/// @n
///

// Screen
#include "PDLS_EXT3_Basic_Touch.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"

// Configuration
#include "hV_Configuration.h"

// Set parameters
#define PLAYER_NONE 0
Expand All @@ -30,17 +33,15 @@
#define NUMBER 4

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

// Define structures and classes

// Define variables and constants

// === Pervasive Displays iTC
// --- Touch
#include "PDLS_EXT3_Basic_Touch.h"

// Screen_EPD_EXT3_Fast myScreen(eScreen_EPD_EXT3_271_09_Touch, boardRaspberryPiPico_RP2040);
Screen_EPD_EXT3_Fast myScreen(eScreen_EPD_EXT3_370_0C_Touch, boardRaspberryPiPico_RP2040);

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_Touch
version=7.0.0
version=7.0.1
author=Rei Vilo for Pervasive Displays
maintainer=Rei Vilo
sentence=Library for Pervasive Displays monochrome e-paper screens with touch and EXT3-1 + EXT3-Touch
Expand Down
Loading

0 comments on commit 2dfd3b0

Please sign in to comment.