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
This commit is contained in:
Christian Boltz 2018-12-17 22:07:43 +01:00
parent 223fd35138
commit f5c05b24fb
No known key found for this signature in database
GPG Key ID: C6A682EA63C82F1C

View File

@ -16,7 +16,7 @@
#else
#include <WProgram.h>
#endif
#include <Time.h> //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};