2016-09-20 05:35:56 +02:00
|
|
|
menu "NodeMCU modules"
|
|
|
|
|
2021-07-15 08:25:25 +02:00
|
|
|
config NODEMCU_CMODULE_ADC
|
|
|
|
bool "ADC module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the adc module. This module provides access to the
|
|
|
|
adc1 hardware.
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_BIT
|
|
|
|
bool "Bit module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the bit module. This module provide bit manipulation
|
|
|
|
functions on Lua numbers.
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_BTHCI
|
|
|
|
bool "BlueTooth HCI interface module"
|
|
|
|
default "n"
|
|
|
|
select BT_ENABLED
|
|
|
|
help
|
|
|
|
Includes the simple BlueTooth HCI module.
|
|
|
|
|
2021-08-22 13:25:24 +02:00
|
|
|
config NODEMCU_CMODULE_CAN
|
|
|
|
depends on CONFIG_IDF_TARGET_ESP32
|
|
|
|
bool "CAN module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the can module.
|
|
|
|
|
2021-07-15 08:25:25 +02:00
|
|
|
config NODEMCU_CMODULE_CRYPTO
|
|
|
|
bool "Crypto module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the crypto module.
|
|
|
|
|
2021-08-22 13:25:24 +02:00
|
|
|
config NODEMCU_CMODULE_DAC
|
|
|
|
depends on IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2
|
|
|
|
bool "DAC module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the dac module.
|
|
|
|
|
2021-07-15 08:25:25 +02:00
|
|
|
config NODEMCU_CMODULE_DHT
|
|
|
|
bool "DHT11/21/22/AM2301/AM2302 module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the dht module.
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_ENCODER
|
|
|
|
bool "Encoder module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the encoder module. This provides hex and base64 encoding
|
|
|
|
and decoding functionality.
|
|
|
|
|
2021-08-22 13:25:24 +02:00
|
|
|
config NODEMCU_CMODULE_ETH
|
|
|
|
depends on IDF_TARGET_ESP32
|
|
|
|
select ETH_USE_ESP32_EMAC
|
|
|
|
bool "Ethernet module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the ethernet module.
|
|
|
|
|
2021-07-15 08:25:25 +02:00
|
|
|
config NODEMCU_CMODULE_FILE
|
|
|
|
bool "File module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the file module (recommended).
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_GPIO
|
|
|
|
bool "GPIO module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the GPIO module (recommended).
|
|
|
|
|
2021-09-16 05:54:55 +02:00
|
|
|
config NODEMCU_CMODULE_HEAPTRACE
|
|
|
|
bool "Heap trace debug module"
|
|
|
|
default "n"
|
|
|
|
depends on HEAP_TRACING_STANDALONE
|
|
|
|
help
|
|
|
|
Includes the heap tracing module. This provides an interface to
|
|
|
|
the IDF's heap tracing API, allowing interactive tracing
|
|
|
|
sessions via the Lua command line.
|
|
|
|
|
2021-07-15 08:25:25 +02:00
|
|
|
config NODEMCU_CMODULE_HTTP
|
|
|
|
bool "HTTP module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the HTTP module (recommended).
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_I2C
|
|
|
|
bool "I2C module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the I2C module (recommended).
|
|
|
|
|
2021-08-22 13:25:24 +02:00
|
|
|
config NODEMCU_CMODULE_I2S
|
|
|
|
depends on IDF_TARGET_ESP32
|
|
|
|
bool "I2S module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the I2S module.
|
|
|
|
|
2021-07-15 08:25:25 +02:00
|
|
|
config NODEMCU_CMODULE_LEDC
|
|
|
|
bool "LEDC module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the LEDC module.
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_MQTT
|
|
|
|
bool "MQTT module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the MQTT module.
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_NET
|
|
|
|
bool "Net module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the net module (recommended).
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_NODE
|
|
|
|
bool "Node module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the node module (recommended).
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_OW
|
|
|
|
bool "1-Wire module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the 1-Wire (ow) module (recommended).
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_OTAUPGRADE
|
|
|
|
bool "Over-The-Air upgrade module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the over-the-air firmware upgrade module. Use of this
|
|
|
|
requires a partition table with at least two OTA partitions, plus
|
|
|
|
the OTA data partition. See the IDF documentation for details.
|
|
|
|
|
2021-08-21 17:39:54 +02:00
|
|
|
config NODEMCU_CMODULE_PIPE
|
|
|
|
bool "Pipe module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the pipe module (required by our Lua VM).
|
|
|
|
|
2021-08-22 13:25:24 +02:00
|
|
|
config NODEMCU_CMODULE_PULSECNT
|
|
|
|
depends on IDF_TARGET_ESP32
|
|
|
|
bool "Pulse counter module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the pulse counter module to use ESP32's built-in pulse
|
|
|
|
counting hardware.
|
|
|
|
|
2021-07-15 08:25:25 +02:00
|
|
|
config NODEMCU_CMODULE_QRCODEGEN
|
|
|
|
bool "QR Code Generator module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the QR Code Generator from
|
|
|
|
https://www.nayuki.io/page/qr-code-generator-library
|
|
|
|
|
2021-08-22 13:25:24 +02:00
|
|
|
config NODEMCU_CMODULE_SDMMC
|
|
|
|
depends on IDF_TARGET_ESP32
|
|
|
|
bool "SD-MMC module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the sdmmc module.
|
|
|
|
|
2021-07-15 08:25:25 +02:00
|
|
|
config NODEMCU_CMODULE_SIGMA_DELTA
|
|
|
|
bool "Sigma-Delta module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the sigma_delta module. This module provides access to
|
|
|
|
the sigma-delta hardware.
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_SJSON
|
|
|
|
bool "SJSON module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the sjson module.
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_SODIUM
|
|
|
|
bool "Sodium module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the libsodium crypto module.
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_SPI
|
|
|
|
bool "SPI module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the spi module.
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_STRUCT
|
|
|
|
bool "Struct module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the struct module. This module provides [un]packing of
|
|
|
|
raw byte strings into Lua values and vice versa.
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_TMR
|
|
|
|
bool "Timer module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the timer module (recommended).
|
|
|
|
|
2021-08-22 13:25:24 +02:00
|
|
|
config NODEMCU_CMODULE_TOUCH
|
|
|
|
depends on IDF_TARGET_ESP32
|
|
|
|
bool "Touch module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the touch module to use ESP32's built-in touch sensor
|
|
|
|
hardware.
|
|
|
|
|
2021-07-15 08:25:25 +02:00
|
|
|
config NODEMCU_CMODULE_U8G2
|
|
|
|
bool "U8G2 module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the u8g2 module.
|
|
|
|
|
|
|
|
rsource "../u8g2/Kconfig.u8g2"
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_UCG
|
|
|
|
bool "UCG module"
|
|
|
|
default "n"
|
|
|
|
select NODEMCU_CMODULE_SPI
|
|
|
|
help
|
|
|
|
Includes the ucg module.
|
|
|
|
|
|
|
|
rsource "../ucg/Kconfig.ucg"
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_WIFI
|
|
|
|
bool "WiFi module"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Includes the WiFi module (recommended).
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_WS2812
|
|
|
|
bool "WS2812 module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the ws2812 module.
|
|
|
|
|
|
|
|
config NODEMCU_CMODULE_TIME
|
|
|
|
bool "Time module"
|
|
|
|
default "n"
|
|
|
|
help
|
|
|
|
Includes the time module.
|
2017-04-06 22:59:19 +02:00
|
|
|
|
2021-08-21 17:39:54 +02:00
|
|
|
config NODEMCU_CMODULE_UART
|
|
|
|
bool "UART module"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Includes the UART module (required by our Lua VM).
|
|
|
|
|
2016-09-20 05:35:56 +02:00
|
|
|
endmenu
|