Skip to content

Commit

Permalink
refresh #include <Arduino_GFX_Library.h>
Browse files Browse the repository at this point in the history
  • Loading branch information
moononournation committed Dec 11, 2020
1 parent b7982bf commit ff034ff
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Larger display most likely not support standalone SPI since it is not fast enoug
#### Simple Declaration
(not require touch the header files in libraries folder)
```C
#include "Arduino_GFX_Library.h"
#include <Arduino_GFX_Library.h>
Arduino_DataBus *bus = new Arduino_HWSPI(16 /* DC */, 5 /* CS */);
Arduino_GFX *gfx = new Arduino_ILI9341(bus, 17 /* RST */);
```
Expand Down
2 changes: 1 addition & 1 deletion examples/Clock/Clock.ino
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/*******************************************************************************
* Start of Arduino_GFX setting
******************************************************************************/
#include "Arduino_GFX_Library.h"
#include <Arduino_GFX_Library.h>

/* first check if selected specific hardware */
/* Wio Terminal */
Expand Down
2 changes: 1 addition & 1 deletion examples/ESPPhotoFrame/ESPPhotoFrame.ino
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/*******************************************************************************
* Start of Arduino_GFX setting
******************************************************************************/
#include "Arduino_GFX_Library.h"
#include <Arduino_GFX_Library.h>

/* first check if selected specific hardware */

Expand Down
2 changes: 1 addition & 1 deletion examples/ESPWiFiAnalyzer/ESPWiFiAnalyzer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/*******************************************************************************
* Start of Arduino_GFX setting
******************************************************************************/
#include "Arduino_GFX_Library.h"
#include <Arduino_GFX_Library.h>

/* first check if selected specific hardware */
// #define ESP32_LCDKIT_SPI
Expand Down
2 changes: 1 addition & 1 deletion examples/ImgViewerAnimatedGIF/ImgViewerAnimatedGIF.ino
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/*******************************************************************************
* Start of Arduino_GFX setting
******************************************************************************/
#include "Arduino_GFX_Library.h"
#include <Arduino_GFX_Library.h>

/* first check if selected specific hardware */
// #define ESP32_LCDKIT_SPI
Expand Down
2 changes: 1 addition & 1 deletion examples/ImgViewerBmp/ImgViewerBmp.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/*******************************************************************************
* Start of Arduino_GFX setting
******************************************************************************/
#include "Arduino_GFX_Library.h"
#include <Arduino_GFX_Library.h>

/* first check if selected specific hardware */
// #define ESP32_LCDKIT_SPI
Expand Down
2 changes: 1 addition & 1 deletion examples/ImgViewerJpeg/ImgViewerJpeg.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/*******************************************************************************
* Start of Arduino_GFX setting
******************************************************************************/
#include "Arduino_GFX_Library.h"
#include <Arduino_GFX_Library.h>

/* first check if selected specific hardware */
// #define ESP32_LCDKIT_SPI
Expand Down
2 changes: 1 addition & 1 deletion examples/ImgViewerMjpeg/ImgViewerMjpeg.ino
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/*******************************************************************************
* Start of Arduino_GFX setting
******************************************************************************/
#include "Arduino_GFX_Library.h"
#include <Arduino_GFX_Library.h>

/* first check if selected specific hardware */
// #define ESP32_LCDKIT_SPI
Expand Down
2 changes: 1 addition & 1 deletion examples/ImgViewerPng/ImgViewerPng.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/*******************************************************************************
* Start of Arduino_GFX setting
******************************************************************************/
#include "Arduino_GFX_Library.h"
#include <Arduino_GFX_Library.h>

/* first check if selected specific hardware */
// #define ESP32_LCDKIT_SPI
Expand Down
2 changes: 1 addition & 1 deletion examples/MultipleDeviceTest/MultipleDeviceTest.ino
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*******************************************************************************
* Start of Arduino_GFX setting
******************************************************************************/
#include "Arduino_GFX_Library.h"
#include <Arduino_GFX_Library.h>

/* all display share same SPI Data Bus with individual CS and RST pins */
#define TFT_DC 33
Expand Down
2 changes: 1 addition & 1 deletion examples/PDQgraphicstest/PDQgraphicstest.ino
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/*******************************************************************************
* Start of Arduino_GFX setting
******************************************************************************/
#include "Arduino_GFX_Library.h"
#include <Arduino_GFX_Library.h>

/* first check if selected specific hardware */
// #define ESP32_LCDKIT_SPI
Expand Down
2 changes: 1 addition & 1 deletion examples/WioWiFiAnalyzer/WioWiFiAnalyzer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/*******************************************************************************
* Start of Arduino_GFX setting
******************************************************************************/
#include "Arduino_GFX_Library.h"
#include <Arduino_GFX_Library.h>

#define TFT_BL LCD_BACKLIGHT
Arduino_HWSPI *bus = new Arduino_HWSPI(LCD_DC /* DC */, LCD_SS_PIN /* CS */);
Expand Down

0 comments on commit ff034ff

Please sign in to comment.