Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to interact with my gsm modem in ruby. So I wrote these code:

DEVICE = '/dev/cu.usbserial-02000263'
require 'rubygems'
require 'serialport'
sp = SerialPort.new DEVICE
sp.write "AT+CPIN?\r"
while true do
   printf("%c", sp.getc)
end

I get this answer in my terminal: "B" "B" "\xFA"

The funny thing is that when I open my zoc Terminal I get the correct answer there.

share|improve this question
fixed: I should use the right baud rate sp = SerialPort.new, 115200 – jens freudenau Jun 26 '12 at 14:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.