Home

Awesome

ESP32 project with lua interpreter and bindings for sensor libraries

This project has libraries for SunFounder sensors; this libraries have lua bindings and could be used from lua.

List of libs

table for eddystone devices contains:

Usage example

lua> i2c = require "i2c"
lua> lcd = require "lcd"
lua> i2c.init()
lua> lcd.init()
lua> lcd.set(0,0)
lua> lcd.write("hello world")