Files
esp32-geiger-counter/include/credentials.h
2020-11-14 14:44:22 +01:00

15 lines
318 B
C

#ifndef CREDENTIALS_H_
#define CREDENTIALS_H_
extern const char *wifiSsid;
extern const char *wifiPassword;
extern const char *thingspeakApiKey;
extern const char *mqttHost;
extern int mqttPort;
extern const char *mqttUser;
extern const char *mqttPassword;
extern const char *mqttTopic;
#endif /* CREDENTIALS_H_ */