Sha256: 81dbdfbcf336a0097f94b9683045344d7b0748aa829519e6fdd189842ecd6c89
Contents?: true
Size: 1.78 KB
Versions: 2
Compression:
Stored size: 1.78 KB
Contents
require 'serialport.so' require 'serialport/version' # This class is used for communication over a serial port. # In addition to the methods here, you can use Ruby IO methods, e.g. read, write, getc, readlines, etc. # # @see http://rubydoc.info/stdlib/core/IO Ruby IO class # @see http://www.cmrr.umn.edu/~strupp/serial.html "Serial Programming Guide for POSIX Operating Systems" class SerialPort private_class_method(:create) # Creates a serial port object. # Accepts the port identifier and a variable list for configuration as paramaters or hash. # Please see SerialPort#set_modem_params # # @overload new(port, *params) # @param port [Integer] the serial port number, # where 0 is mapped to "COM1" on Windows, "/dev/ttyS0" on Linux, "/dev/cuaa0" on Mac OS X, etc. # @overload new(port, *params) # @param port [String] the serial port file e.g. "/dev/ttyS0" # @return [SerialPort] # @see SerialPort#set_modem_params def SerialPort::new(port, *params) sp = create(port) begin sp.set_modem_params(*params) rescue sp.close raise end return sp end # This behaves like SerialPort#new, except that you can pass a block # to which the new serial port object will be passed. In this case # the connection is automaticaly closed when the block has finished. # # @yield [SerialPort] the serial port number or filename # @see SerialPort#new # @see SerialPort#set_modem_params def SerialPort::open(port, *params) sp = create(port) begin sp.set_modem_params(*params) rescue sp.close raise end if (block_given?) begin yield sp ensure sp.close end return nil end return sp end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
serialport-1.3.0 | lib/serialport.rb |
serialport-1.2.3 | lib/serialport.rb |