Skip to content

Commit

Permalink
fix: macros
Browse files Browse the repository at this point in the history
  • Loading branch information
Bissas committed Nov 24, 2024
1 parent 54f244e commit f39572e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/deploii.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef Deploii_h
#define Deploii_h
#ifndef DEPLOII_h
#define DEPLOII_h

#include "Arduino.h"
#include <MsgPack.h>
Expand Down Expand Up @@ -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));
Expand All @@ -61,4 +61,4 @@ class Deploii {

#include "deploii.tpp"

#endif
#endif

0 comments on commit f39572e

Please sign in to comment.