mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-06-06 02:36:49 +08:00
14 lines
197 B
C++
14 lines
197 B
C++
#include <LuaWrapper.h>
|
|
|
|
LuaWrapper lua;
|
|
|
|
void setup() {
|
|
Serial.begin(115200);
|
|
String script = String("print('Hello world!')");
|
|
Serial.println(lua.Lua_dostring(&script));
|
|
}
|
|
|
|
void loop() {
|
|
|
|
}
|