mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2025-01-10 00:10:15 +02:00
7d9b7b803c
Adding blinker demo: lua_blink_led
8 lines
174 B
Lua
8 lines
174 B
Lua
package.cpath = "./?.so"
|
|
require "luapassing"
|
|
print("hello")
|
|
value = 10
|
|
summat = cstuff.dothis(value)
|
|
print ("It's run da C code!")
|
|
print ("Values in Lua now",value, summat)
|