From d8209c009f5a0bc6c490b4e3aca7602abe703c6a Mon Sep 17 00:00:00 2001 From: Aadi Desai <21363892+supleed2@users.noreply.github.com> Date: Thu, 3 Jun 2021 01:09:29 +0100 Subject: [PATCH] Add dummy credentials file --- Control/.gitignore | 1 + Control/src/credentials.h.dummy | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 Control/src/credentials.h.dummy diff --git a/Control/.gitignore b/Control/.gitignore index 89cc49c..c7b130a 100644 --- a/Control/.gitignore +++ b/Control/.gitignore @@ -3,3 +3,4 @@ .vscode/c_cpp_properties.json .vscode/launch.json .vscode/ipch +src/credentials.h diff --git a/Control/src/credentials.h.dummy b/Control/src/credentials.h.dummy new file mode 100644 index 0000000..11fbc84 --- /dev/null +++ b/Control/src/credentials.h.dummy @@ -0,0 +1,7 @@ +#ifndef CREDENTIALS_H +#define CREDENTIALS_H + +#define WIFI_SSID "SSID_here" +#define WIFI_PW "Password_here" + +#endif