KO
|
EN
gitlite โ search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
esp-idf-lua
โ 72
Open GitHub โ
Lua component for ESP-IDF
Download README (.md)
Explore Similar Repositories
esp_cron
:
Cron like clon for the esp32 esp-idf framework
idf-stm-flash
:
STM32 OTA update with ESP32 esp-idf framework
crescendo-clock
:
Crescendo Clock - an ESP32 based alarm clock to wake up gently
VL53L5CX-Library
:
๐ฝ A vl53l5cx library for esp32 using the esp-idf framework
rust-esp-nix
:
Nix files for development on the esp32 in rust using the esp-idf framework
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
esp-idf-lua
?
Download (.md)
# Lua component for ESP-IDF https://www.lua.org Version 5.4.4 ## What is Lua? Lua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven programming, and data description. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode with a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping. ## How to use Clone this repository into `components` subdir of yout project: ```Shell cd ~/my_esp_idf_project mkdir components cd components git clone https://github.com/UncleRus/esp-idf-lua.git ``` Or clone it to any other directory and add it to your project `Makefile` or `CMakeLists.txt`: ```Makefile PROJECT_NAME := my-esp-project EXTRA_COMPONENT_DIRS := $(HOME)/my/work/path/esp-idf-lua include $(IDF_PATH)/make/project.mk ``` ```cmake cmake_minimum_required(VERSION 3.5) set(EXTRA_COMPONENT_DIRS $ENV{HOME}/my/work/path/esp-idf-lua) include($ENV{IDF_PATH}/tools/cmake/project.cmake) project(my-esp-project) ``` See examples.