diff --git a/library.properties b/library.properties index 1d2d624..be928a6 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Waveshare ILI9486 -version=0.2.0 +version=0.3.0 author=Waveshare , Calvin Hass maintainer=Calvin Hass sentence=Waveshare ILI9486 SPI driver for Arduino diff --git a/src/Waveshare_ILI9486_GFX.cpp b/src/Waveshare_ILI9486_GFX.cpp index d1c97b0..28e2796 100644 --- a/src/Waveshare_ILI9486_GFX.cpp +++ b/src/Waveshare_ILI9486_GFX.cpp @@ -1,15 +1,18 @@ +// ------------------------------------------------------------------ +// Waveshare_ILI9486: GFX style API wrapper for Waveshare_ILI9486 +// ------------------------------------------------------------------ // -// GFX style API wrapper for Waveshare_ILI9486 // - https://github.com/ImpulseAdventure/Waveshare_ILI9486 // - Intended to work with the following displays: -// - Waveshare 4.0" Touch Shield for Arduino -// - Waveshare 3.5" Touch Shield for Arduino -// - +// - Waveshare 4" Touch LCD Shield for Arduino (SKU: 13587) +// https://www.waveshare.com/product/modules/oleds-lcds/arduino-lcd/4inch-tft-touch-shield.htm +// - Waveshare 3.5" Touch LCD Shield for Arduino (SKU: 13506) +// https://www.waveshare.com/product/modules/oleds-lcds/arduino-lcd/3.5inch-tft-touch-shield.htm // // The Waveshare_ILI9486_GFX API is based on Adafruit-GFX. // The associated copyright notice is reproduced below. // + /* This is the core graphics library for all our displays, providing a common set of graphics primitives (points, lines, circles, etc.). It needs to be diff --git a/src/Waveshare_ILI9486_GFX.h b/src/Waveshare_ILI9486_GFX.h index 3bf761c..fec5f9f 100644 --- a/src/Waveshare_ILI9486_GFX.h +++ b/src/Waveshare_ILI9486_GFX.h @@ -1,15 +1,18 @@ +// ------------------------------------------------------------------ +// Waveshare_ILI9486: GFX style API wrapper for Waveshare_ILI9486 +// ------------------------------------------------------------------ // -// GFX style API wrapper for Waveshare_ILI9486 // - https://github.com/ImpulseAdventure/Waveshare_ILI9486 // - Intended to work with the following displays: -// - Waveshare 4.0" Touch Shield for Arduino -// - Waveshare 3.5" Touch Shield for Arduino -// - +// - Waveshare 4" Touch LCD Shield for Arduino (SKU: 13587) +// https://www.waveshare.com/product/modules/oleds-lcds/arduino-lcd/4inch-tft-touch-shield.htm +// - Waveshare 3.5" Touch LCD Shield for Arduino (SKU: 13506) +// https://www.waveshare.com/product/modules/oleds-lcds/arduino-lcd/3.5inch-tft-touch-shield.htm // // The Waveshare_ILI9486_GFX API is based on Adafruit-GFX. // The associated copyright notice is reproduced below. // + /* This is the core graphics library for all our displays, providing a common set of graphics primitives (points, lines, circles, etc.). It needs to be @@ -50,6 +53,9 @@ POSSIBILITY OF SUCH DAMAGE. #include "Fonts/fonts.h" +// Library version +#define WAVESHARE_ILI9486_VER "0.3.0" + class Waveshare_ILI9486_GFX : public Print { protected: