Lua 如何在 ESP32 和 NodeMCU 中使用蓝牙
How to use Bluetooth with ESP32 & NodeMCU in Lua
如何使用Lua语言的bthci蓝牙模块?
我使用 NodeMCU Builder 制作我的固件 (dev-esp32),但是没有蓝牙复选框。
可以使用蓝牙吗?
目前(即直到 BT 支持可用于云构建)如果您需要 BT 支持,您需要自己构建固件。我建议你从 the Docker image specifically built for that as per our documentation at https://nodemcu.readthedocs.io/en/dev-esp32/build/#docker-image.
开始
真正的挑战是了解您需要在 ESP-IDF 中打开哪些 BT 选项 - 这些选项特定于您的用例。 https://github.com/espressif/esp-idf/tree/master/examples/bluetooth contains a number of examples and each one has a list of required flags in its sdkconfig.defaults
file e.g. https://github.com/espressif/esp-idf/blob/master/examples/bluetooth/hci/controller_hci_uart/sdkconfig.defaults
Is it possible to use Bluetooth?
是的,是的。配置比其他模块更复杂,因为它是如此通用。
如何使用Lua语言的bthci蓝牙模块?
我使用 NodeMCU Builder 制作我的固件 (dev-esp32),但是没有蓝牙复选框。 可以使用蓝牙吗?
目前(即直到 BT 支持可用于云构建)如果您需要 BT 支持,您需要自己构建固件。我建议你从 the Docker image specifically built for that as per our documentation at https://nodemcu.readthedocs.io/en/dev-esp32/build/#docker-image.
开始真正的挑战是了解您需要在 ESP-IDF 中打开哪些 BT 选项 - 这些选项特定于您的用例。 https://github.com/espressif/esp-idf/tree/master/examples/bluetooth contains a number of examples and each one has a list of required flags in its sdkconfig.defaults
file e.g. https://github.com/espressif/esp-idf/blob/master/examples/bluetooth/hci/controller_hci_uart/sdkconfig.defaults
Is it possible to use Bluetooth?
是的,是的。配置比其他模块更复杂,因为它是如此通用。