文件名称:uart:用于Ruby的简单串行UART接口
文件大小:5KB
文件格式:ZIP
更新时间:2024-05-20 16:34:11
Ruby
串口 描述: UART是围绕ruby-termios的简单包装,为您提供用于设置UART或串行连接的简便接口。 这个宝石是用纯Ruby编写的。 该gem依靠ruby-termios提供对termios系统调用的绑定,但是使用这些绑定在纯Ruby中建立串行连接。 功能/问题: 没有C代码 没有FFI代码 似乎可以工作 概要: 这是通过UART写入LCD屏幕的示例。 速度为9600、8个数据位,无奇偶校验和一个停止位: require 'uart' UART . open '/dev/tty.usbserial-00000000' do | serial | str = 'Hello World!' serial . write [ 0x8A , 0xA8 , 0x00 , 0x00 , str . bytesize ] . pack 'C5' serial . write
【文件预览】:
uart-master
----README.md(3KB)
----Manifest.txt(62B)
----lib()
--------uart.rb(3KB)
----Rakefile(383B)
----test()
--------test_uart.rb(1KB)