mirror of
https://github.com/esphome/esphome.git
synced 2024-11-13 02:37:47 +01:00
61 lines
1.4 KiB
C
61 lines
1.4 KiB
C
#pragma once
|
|
|
|
// This file is not used by the runtime, instead, a version is generated during
|
|
// compilation with only the relevant feature flags for the current build.
|
|
//
|
|
// This file is only used by static analyzers and IDEs.
|
|
|
|
// Informative flags
|
|
#define ESPHOME_BOARD "dummy_board"
|
|
#define ESPHOME_PROJECT_NAME "dummy project"
|
|
#define ESPHOME_PROJECT_VERSION "v2"
|
|
|
|
// Feature flags
|
|
#define USE_ADC_SENSOR_VCC
|
|
#define USE_API
|
|
#define USE_BINARY_SENSOR
|
|
#define USE_CAPTIVE_PORTAL
|
|
#define USE_CLIMATE
|
|
#define USE_COVER
|
|
#define USE_DEEP_SLEEP
|
|
#define USE_ESP8266_PREFERENCES_FLASH
|
|
#define USE_FAN
|
|
#define USE_HOMEASSISTANT_TIME
|
|
#define USE_I2C_MULTIPLEXER
|
|
#define USE_JSON
|
|
#define USE_LIGHT
|
|
#define USE_LOGGER
|
|
#define USE_MDNS
|
|
#define USE_MQTT
|
|
#define USE_NUMBER
|
|
#define USE_OTA_STATE_CALLBACK
|
|
#define USE_POWER_SUPPLY
|
|
#define USE_PROMETHEUS
|
|
#define USE_SELECT
|
|
#define USE_SENSOR
|
|
#define USE_STATUS_LED
|
|
#define USE_SWITCH
|
|
#define USE_TEXT_SENSOR
|
|
#define USE_TFT_UPLOAD
|
|
#define USE_TIME
|
|
#define USE_WIFI
|
|
#define USE_WIFI_WPA2_EAP
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
#define USE_ESP32_BLE_SERVER
|
|
#define USE_ESP32_CAMERA
|
|
#define USE_ETHERNET
|
|
#define USE_IMPROV
|
|
#endif
|
|
|
|
#ifdef ARDUINO_ARCH_ESP8266
|
|
#define USE_SOCKET_IMPL_LWIP_TCP
|
|
#else
|
|
#define USE_SOCKET_IMPL_BSD_SOCKETS
|
|
#endif
|
|
|
|
#define USE_API_PLAINTEXT
|
|
#define USE_API_NOISE
|
|
|
|
// Disabled feature flags
|
|
//#define USE_BSEC // Requires a library with proprietary license.
|