25 lines
No EOL
446 B
Text
25 lines
No EOL
446 B
Text
#ifndef SECRETS_H
|
|
#define SECRETS_H
|
|
|
|
#ifdef WIFI
|
|
const char* ssid = "WIFI";
|
|
const char* password = "123";
|
|
#endif
|
|
|
|
#ifdef WEB_SERVER
|
|
const char* http_username = "admin";
|
|
const char* http_password = "admin";
|
|
#endif
|
|
|
|
#ifdef LOCAL_ACL
|
|
#include "ACL.h"
|
|
|
|
ACL acl = {
|
|
{"1234", "Card 1"},
|
|
{"4567", "Card 2"},
|
|
{"7891", "Card 3"}
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif |