From 8fe67a04d88fcffc7c3e4eb6987d1239804d5f35 Mon Sep 17 00:00:00 2001 From: definitio <37266727+definitio@users.noreply.github.com> Date: Mon, 17 Dec 2018 18:08:59 +0400 Subject: [PATCH 1/2] Fix compiling on a case sensitive file systems --- wled00/wled00.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/wled00.ino b/wled00/wled00.ino index b742fb53..2daa4e30 100644 --- a/wled00/wled00.ino +++ b/wled00/wled00.ino @@ -51,7 +51,7 @@ #endif #include -#include +#include #include #ifndef WLED_DISABLE_OTA #include From f5c05b24fb5dd8ee45386606f949c16767ea4e78 Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Mon, 17 Dec 2018 22:07:43 +0100 Subject: [PATCH 2/2] Use time/time.h from local dependencies This fixes a compile issue, which can be a) file not found or b) (after installing the Time library) redefinition of a variable --- wled00/src/dependencies/timezone/Timezone.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/src/dependencies/timezone/Timezone.h b/wled00/src/dependencies/timezone/Timezone.h index c55d0c46..842e5df3 100644 --- a/wled00/src/dependencies/timezone/Timezone.h +++ b/wled00/src/dependencies/timezone/Timezone.h @@ -16,7 +16,7 @@ #else #include #endif -#include //http://www.arduino.cc/playground/Code/Time +#include "../time/Time.h" //http://www.arduino.cc/playground/Code/Time //convenient constants for dstRules enum week_t {Last, First, Second, Third, Fourth};