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
pull/90/head
Christian Boltz 2018-12-17 22:07:43 +01:00
rodzic 223fd35138
commit f5c05b24fb
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: C6A682EA63C82F1C
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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};