mirror of
https://github.com/grillbaer/esp32-geiger-counter.git
synced 2025-12-21 21:33:03 +01:00
16 lines
360 B
C
16 lines
360 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 *mqttTlsServerRootCert;
|
|
extern const char *mqttUser;
|
|
extern const char *mqttPassword;
|
|
extern const char *mqttTopic;
|
|
|
|
#endif /* CREDENTIALS_H_ */
|