mirror of
https://github.com/grillbaer/esp32-geiger-counter.git
synced 2025-12-23 22:18:27 +01:00
travis support
This commit is contained in:
13
src/credentials.cpp
Normal file
13
src/credentials.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#include "credentials.h"
|
||||
|
||||
// keep secret credentials in an external file that is never committed:
|
||||
// #include "secret_credentials"
|
||||
|
||||
#ifndef _SECRET_CREDENTIALS
|
||||
|
||||
// use dummy credentials to make it compilable without secrets
|
||||
const char *wifiSsid = "unset-wifi-ssid";
|
||||
const char *wifiPassword = "unset-password";
|
||||
const char *thingspeakApiKey = "unset-thinkspeak-api-key";
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user