Move network config to it's own file not tracked by git
This commit is contained in:
parent
ab1a1ce16e
commit
cbf2e228b8
6
firmware/.gitignore
vendored
Normal file
6
firmware/.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
.pio
|
||||
.vscode/.browse.c_cpp.db*
|
||||
.vscode/c_cpp_properties.json
|
||||
.vscode/launch.json
|
||||
.vscode/ipch
|
||||
src/network.h
|
@ -3,11 +3,13 @@
|
||||
#include <HTTPClient.h>
|
||||
|
||||
#include "eink.h"
|
||||
#include "network.h"
|
||||
|
||||
void fetchAndDrawImage();
|
||||
|
||||
const char* ssid = "";
|
||||
const char* password = "";
|
||||
const char *ssid = WIFI_SSID;
|
||||
const char *password = WIFI_PASSWORD;
|
||||
|
||||
const char *serverName = "http://192.168.3.133:8080/fetchImage";
|
||||
|
||||
void setup()
|
||||
|
Loading…
x
Reference in New Issue
Block a user