vote up 2 vote down star
1

Is it possible to use something like:

require 'serialport.o'

with Shoes? serialport.o is compiled c code as a ruby extension.

When I attempt to run the following code in shoes, I see no visible output to the screen and shoes crashes on OS X.

Thank you

CODE:

require "serialport.o"

port = "/dev/tty.usbserial-A1001O0o"

sp = SerialPort.new( port, 9600, 8, 1, SerialPort::NONE)

Shoes.app :width => 300, :height => 150, :margin => 10 do
  button "On" do
  sp.write( "1" )
  end
end

sp.close
flag
As a side note, it's generally better to just say require "serialport". Ruby will figure out the extension for you. That makes your code a little more flexible. – Peeja Dec 21 '08 at 18:56

3 Answers

vote up 1 vote down

You've probably already checked this, but does the same thing work if you aren't using Shoes? For example:

require "serialport.o"

port = "/dev/tty.usbserial-A1001O0o"
sp = SerialPort.new( port, 9600, 8, 1, SerialPort::NONE)
sp.write( "1" )
sp.close
link|flag
vote up 0 vote down

I'm sorry. I should have mentioned that the code does work outside of Shoes :)

It seems to crash the shoes application if I simply include the line:

require 'serialport.o'

link|flag
vote up 0 vote down

I had a similar problem, but it's with winxp.

Could you try like this?

Kernel::require "serialport.o"
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.