I'm trying to use Octave and the Instrument Control package to read in serial data through the USB port. Right now I'm just sending test data through the port. Zeros and ones.
I'm getting correct data through the USB when I use screen
:
screen /dev/ttyUSB1
I get strange data when I try to use Octave though. I think I'm doing something wrong. Here's an example. I think I should be getting 0 or 1 from srl_read
:
> pkg load all
> s1 = serial("/dev/ttyUSB1", 9600)
s1 = 3
> srl_read(s1,1)
ans = 49
You are reading the ASCII value of "1" from the serial port in this case:
Answer taken from the help-octave mailing list, where the developer of instrument-control answered your question more thoroughly.