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.