diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | include/secrets.h | 9 |
2 files changed, 10 insertions, 1 deletions
@@ -3,4 +3,4 @@ .gcc-flags.json .ccls .ccls-cache/ -include/secrets.h +src/secrets.cpp diff --git a/include/secrets.h b/include/secrets.h new file mode 100644 index 0000000..43aa5c9 --- /dev/null +++ b/include/secrets.h @@ -0,0 +1,9 @@ +#ifndef SECRETS_H +#define SECRETS_H + +extern const char *wifi_ssid; +extern const char *wifi_psk; + +extern const char *openweathermap_apikey; + +#endif |
