From f39572e80dd791eae733eb5360ec319194f57efb Mon Sep 17 00:00:00 2001 From: Bissas Date: Sun, 24 Nov 2024 14:14:11 +0100 Subject: [PATCH] fix: macros --- src/deploii.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/deploii.h b/src/deploii.h index 64852cd..3f712dc 100644 --- a/src/deploii.h +++ b/src/deploii.h @@ -1,5 +1,5 @@ -#ifndef Deploii_h -#define Deploii_h +#ifndef DEPLOII_h +#define DEPLOII_h #include "Arduino.h" #include @@ -39,9 +39,9 @@ class Deploii { void connect(); void connect(char* ssid, const char* pwd, - const char* host = Deploii_HOST, - const int port = Deploii_PORT, - const char* url = Deploii_WS_URL, + const char* host = DEPLOII_HOST, + const int port = DEPLOII_PORT, + const char* url = DEPLOII_WS_URL, bool ssl = true); void interval(int intervalLength, void (*cb)(void)); @@ -61,4 +61,4 @@ class Deploii { #include "deploii.tpp" -#endif \ No newline at end of file +#endif