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