mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
35 lines
534 B
C
35 lines
534 B
C
#ifndef Features_h
|
|
#define Features_h
|
|
|
|
// project feature off by default
|
|
#ifndef FT_PROJECT
|
|
#define FT_PROJECT 0
|
|
#endif
|
|
|
|
// security feature on by default
|
|
#ifndef FT_SECURITY
|
|
#define FT_SECURITY 0
|
|
#endif
|
|
|
|
// mqtt feature on by default
|
|
#ifndef FT_MQTT
|
|
#define FT_MQTT 0
|
|
#endif
|
|
|
|
// ntp feature on by default
|
|
#ifndef FT_NTP
|
|
#define FT_NTP 0
|
|
#endif
|
|
|
|
// mqtt feature on by default
|
|
#ifndef FT_OTA
|
|
#define FT_OTA 0
|
|
#endif
|
|
|
|
// upload firmware/file feature off by default
|
|
#ifndef FT_UPLOAD_FIRMWARE
|
|
#define FT_UPLOAD_FIRMWARE 0
|
|
#endif
|
|
|
|
#endif
|