필터 지우기
필터 지우기

making gui for serial port interfacing

조회 수: 2 (최근 30일)
pradeep kumar
pradeep kumar 2014년 8월 12일
댓글: Joakim Magnusson 2014년 8월 13일
i am making gui for serial port interfacing, how can i create serial port object by taking com port number by user in edit text box.
port=serial(COM1) it is working. but i want user to enter port number in edit text box
port=serial(get(handles.edit_text_box,'string')); not working

답변 (1개)

Joakim Magnusson
Joakim Magnusson 2014년 8월 12일
I think you get a string but you need a num. Maybe try "port=serial(str2num(get(handles.edit_text_box,'string')));" ?
  댓글 수: 2
pradeep kumar
pradeep kumar 2014년 8월 12일
thanks for reply but in port=serial('COM6'); COM6 should be string, i have try all possible experiments but no success.
error is --Invalid PORT specified.
Joakim Magnusson
Joakim Magnusson 2014년 8월 13일
Ah sorry then, i guess your serial port is not in use? Because then you cant connect the serial port object to the device i think.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by