Skip to content

Commit

Permalink
Release 7.0.2
Browse files Browse the repository at this point in the history
Added support for 4.17-BWRY
  • Loading branch information
rei-vilo committed Nov 24, 2023
1 parent cdf3226 commit 2e980d5
Show file tree
Hide file tree
Showing 14 changed files with 214 additions and 233 deletions.
17 changes: 10 additions & 7 deletions examples/BWRY_Colours/BWRY_Colours.ino
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
// #include <Arduino.h>
#include "hV_HAL_Peripherals.h"

// Confifuration
#include "hV_Configuration.h"

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

// Configuration
#include "hV_Configuration.h"

// Set parameters
#define DISPLAY_COLOURS_BWRY 1
#define DISPLAY_CONTRASTS_BWRY 0
Expand Down Expand Up @@ -94,6 +94,9 @@ void displayColoursBWRY()
#endif // DISPLAY_COLOURS_BWRY

// Add setup code
///
/// @brief Setup
///
void setup()
{
Serial.begin(115200);
Expand All @@ -109,14 +112,11 @@ void setup()

#if (DISPLAY_COLOURS_BWRY == 1)

Serial.print("DISPLAY_COLOURS_BWRY... ");
Serial.println("DISPLAY_COLOURS_BWRY... ");
myScreen.clear();
displayColoursBWRY();

wait(8);

Serial.println("done");

#endif // DISPLAY_COLOURS_BWRY

Serial.print("White... ");
Expand All @@ -128,6 +128,9 @@ void setup()
}

// Add loop code
///
/// @brief Loop, empty
///
void loop()
{
delay(1000);
Expand Down
8 changes: 4 additions & 4 deletions examples/BWRY_Contrasts/BWRY_Contrasts.ino
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
// #include <Arduino.h>
#include "hV_HAL_Peripherals.h"

// Confifuration
#include "hV_Configuration.h"

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

// Configuration
#include "hV_Configuration.h"

// Set parameters
#define DISPLAY_COLOURS_BWRY 0
#define DISPLAY_CONTRASTS_BWRY 1
Expand Down Expand Up @@ -118,7 +118,7 @@ void setup()

#if (DISPLAY_CONTRASTS_BWRY == 1)

Serial.print("DISPLAY_CONTRASTS_BWRY... ");
Serial.println("DISPLAY_CONTRASTS_BWRY... ");
myScreen.clear();
displayContrastsBWRY();
wait(8);
Expand Down
12 changes: 7 additions & 5 deletions examples/BWRY_Palette/BWRY_Palette.ino
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
// #include <Arduino.h>
#include "hV_HAL_Peripherals.h"

// Configuration
#include "hV_Configuration.h"

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

// Configuration
#include "hV_Configuration.h"

// Set parameters
#define DISPLAY_COLOURS_BWRY 0
#define DISPLAY_CONTRASTS_BWRY 1
Expand Down Expand Up @@ -209,6 +209,9 @@ void displayPaletteBWRY()
#endif // DISPLAY_PALETTE_BWRY

// Add setup code
///
/// @brief Setup
///
void setup()
{
Serial.begin(115200);
Expand All @@ -224,10 +227,9 @@ void setup()

#if (DISPLAY_PALETTE_BWRY == 1)

Serial.print("DISPLAY_PALETTE_BWRY... ");
Serial.println("DISPLAY_PALETTE_BWRY... ");
myScreen.clear();
displayPaletteBWRY();
Serial.println("done");
wait(8);

#endif // DISPLAY_PALETTE_BWRY
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_BWRY
version=7.0.1
version=7.0.2
author=Rei Vilo for Pervasive Displays
maintainer=Rei Vilo
sentence=Library for Pervasive Displays iTC red and yellow colour screens and EXT3-1 board
Expand Down
Loading

0 comments on commit 2e980d5

Please sign in to comment.