From f250df0938f723aabb72238b8f197d7cc20a8005 Mon Sep 17 00:00:00 2001 From: per1234 Date: Mon, 31 Dec 2018 19:14:06 -0800 Subject: [PATCH] Use correct include syntax Angle brackets should be used for external includes, guotes for local includes. The former is not critical but the latter is necessary in order to use the library when it's not in one of the standard Arduino libraries folders (such as when bundled with a sketch), where local files included with the angle brackets syntax will not be found in the include search path, causing compilation to fail. --- EEPROMVar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EEPROMVar.h b/EEPROMVar.h index 3c79283..32c36df 100644 --- a/EEPROMVar.h +++ b/EEPROMVar.h @@ -1,4 +1,4 @@ -#include +#include "EEPROMex.h" /* EEPROMvar.h - EEPROM variable library