KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
LuaSerialPort
★ 13
Open GitHub ↗
Lua serial port module (requires ffi)
Download README (.md)
Explore Similar Repositories
haxeprinter
:
A Haxe formatter and syntax highlighter
testmine
:
Test Result Aggregator and Analysis Tool
Processing-Sketch
:
No description available.
hawaii-2048
:
2048 game for Hawaii
Unity-SimpleDialog
:
A very simple lightweight UnityScript based dialog and character conversation system for Unity 4+
// 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
LuaSerialPort
?
Download (.md)
Lua Serial Port =============== Introduction ------------ This project implements a Serial Port module for Lua. It currently only supports Linux, and requires LuaJIT FFI. Example ------- ```lua local sp = require "serial-port" sp.open("/dev/ttyUSB0"); sp.setBaud(sp.B115200); local count = sp.write("123"); print("Wrote " .. count .. " bytes"); ``` Motivation ---------- While the same could be accomplished using various projects like luaposix or librs232lua, many times you simply need something simple and don't want to be bothered with building extensions that have native code -- especially cross compiling for embedded platforms. Status ------ * non-blocking read/write implemented License:MIT -----------