Fix #include file name for case-sensitive file systems

This commit is contained in:
Kristian Nielsen 2017-06-30 13:14:01 +02:00
parent f9ceca2052
commit 32703fd922
4 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@
TFT_eSPI tft = TFT_eSPI(); // Invoke library, pins defined in User_Setup.h TFT_eSPI tft = TFT_eSPI(); // Invoke library, pins defined in User_Setup.h
// Include the header files that contain the icons // Include the header files that contain the icons
#include "alert.h" #include "Alert.h"
#include "Close.h" #include "Close.h"
#include "Info.h" #include "Info.h"

View File

@ -24,7 +24,7 @@
TFT_eSPI tft = TFT_eSPI(); // Invoke custom library TFT_eSPI tft = TFT_eSPI(); // Invoke custom library
// Include the header files that contain the icons // Include the header files that contain the icons
#include "alert.h" #include "Alert.h"
#include "Close.h" #include "Close.h"
#include "Info.h" #include "Info.h"

View File

@ -31,7 +31,7 @@
TFT_eSPI tft = TFT_eSPI(); // Invoke custom library with default width and height TFT_eSPI tft = TFT_eSPI(); // Invoke custom library with default width and height
// Include the header files that contain the icons // Include the header files that contain the icons
#include "alert.h" #include "Alert.h"
#include "Close.h" #include "Close.h"
#include "Info.h" #include "Info.h"

View File

@ -15,7 +15,7 @@
#define TFT_GREY 0x2104 // Dark grey 16 bit colour #define TFT_GREY 0x2104 // Dark grey 16 bit colour
#include "alert.h" // Out of range alert icon #include "Alert.h" // Out of range alert icon
#include <TFT_eSPI.h> // Hardware-specific library #include <TFT_eSPI.h> // Hardware-specific library
#include <SPI.h> #include <SPI.h>