From f5c05b24fb5dd8ee45386606f949c16767ea4e78 Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Mon, 17 Dec 2018 22:07:43 +0100 Subject: [PATCH] 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};