2024-01-30 16:33:00 +00:00
|
|
|
#ifndef SECRETS_H
|
|
|
|
#define SECRETS_H
|
|
|
|
|
|
|
|
#ifdef WIFI
|
|
|
|
extern const char* ssid;
|
|
|
|
extern const char* password;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TINANCE2_BACKEND
|
|
|
|
extern const char* tinance2_url_validatecard;
|
|
|
|
extern const char* tinance2_url_readerinfo;
|
|
|
|
extern const char* tinance2_url_acls;
|
|
|
|
extern const char* tinance2_reader_identifer;
|
|
|
|
extern const char* tinance2_reader_key;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WEB_SERVER
|
|
|
|
extern const char* http_username;
|
|
|
|
extern const char* http_password;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WEBHOOKS
|
2024-01-30 17:21:48 +00:00
|
|
|
#ifdef WEBHOOK_UNLOCK
|
2024-01-30 16:33:00 +00:00
|
|
|
extern const char* webhook_unlock_url;
|
|
|
|
#endif
|
2024-01-30 17:21:48 +00:00
|
|
|
#ifdef WEBHOOK_LOCK
|
2024-01-30 16:33:00 +00:00
|
|
|
extern const char* webhook_lock_url;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|