travis support

This commit is contained in:
Holger Fleischmann
2019-09-13 19:16:11 +02:00
parent db6bf5b7e6
commit 17060ad77d
3 changed files with 18 additions and 2 deletions

13
src/credentials.cpp Normal file
View 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