文件名称:mruby-serialport:mruby 的串口通信
文件大小:7KB
文件格式:ZIP
更新时间:2024-06-24 16:03:12
C
串行端口 用于 mruby 的实验性串行端口通信。 这是一个非常早期的实现。 仅在 Mac OS X 上测试。 用法 典型用法: sp = SerialPort . new ( "/dev/ttys001" , 115200 ) . open sp . write "start" puts sp . read ( 100 ) sp . close 块接口也可用: SerialPort . new ( "/dev/ttys001" , 115200 ) do | sp | sp . write "start" puts sp . read ( 100 ) end # also closes the port
【文件预览】:
mruby-serialport-master
----mrblib()
--------serialport.rb(2KB)
----src()
--------serialport.c(8KB)
----.travis.yml(67B)
----LICENSE(1KB)
----test()
--------SerialCommTest()
--------serialport.rb(22B)
----run_test.rb(539B)
----README.md(565B)
----Makefile(125B)
----mrbgem.rake(287B)
----.gitignore(166B)