Skip to content

Commit e534946

Browse files
Adicionando arquivo user_config
1 parent 30a78ca commit e534946

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.vscode
1+
.vscode
2+
user_config_override.h

firmware/firmware.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@
88

99
#include <WiFiManager.h>
1010

11+
#include "user_config_override.h"
12+
1113
/************************* Variaveis globais **********************/
1214

1315
#define DEBUG true
1416
#define DEEP_SLEEP false
1517

1618
#define LED 2
1719

18-
String API_URL = "http://127.0.0.1:5000/api";
1920
String API_AUTH = "";
2021
String API_SEND_DATA = "";
2122

firmware/user_config.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#ifndef _USER_CONFIG_H_
2+
#define _USER_CONFIG_H_
3+
4+
String API_URL = "http://127.0.0.1:5000/api";
5+
6+
#endif

0 commit comments

Comments
 (0)