Lakeshore 331 Temperature Controller Remote Communication with MATLAB

4 Ansichten (letzte 30 Tage)
Mistro116
Mistro116 am 4 Jul. 2015
Kommentiert: khaled omar am 6 Jun. 2019
I am trying to communicate with a Lakeshore 331 Temperature Controller via RS-232 serial interface. I would like to query the instrument's identification information and current temperature reading. I am using the following code, but the output comes back jarbled:
lakeshore331 = visa('ni','ASRL3::INSTR');
set(lakeshore331,'InputBufferSize',3000000,'Timeout',5.0);
fopen(lakeshore331);
iden = query(lakeshore331,'*IDN?')
temp = query(lakeshore331,'KRDG?')
fclose(lakeshore331);
delete(lakeshore331);
clear('lakeshore331');
Here's the output that results:
iden =
LÓCI,ÍOÄEL³³1E,³°¶°¶1,°³2³°1
Š
temp =
«7¹®¹¹8
Š
Do you have any suggestions for how to clean up the output?

Antworten (1)

Pascal.Gehring
Pascal.Gehring am 3 Apr. 2018
Probably 3 years too late, but....
lakeshore331.DataBits = 7
lakeshore331.Parity = 'odd'
  1 Kommentar
khaled omar
khaled omar am 6 Jun. 2019
It worked with me while using RS232 serial communication Visual Basic .NET .
Thank You very much

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Instrument Control Toolbox Supported Hardware finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by