필터 지우기
필터 지우기

USB relay not working

조회 수: 15 (최근 30일)
Jessica Yorzinski
Jessica Yorzinski 2022년 8월 27일
댓글: Jessica Yorzinski 2022년 8월 28일
I am using this USB relay:
SMAKN LCUS-1 type USB relay module USB intelligent control switch USB switch
To power a dosing pump:
Gikfun 12V DC Dosing Pump Peristaltic Dosing Head with Connector For Arduino Aquarium Lab Analytic Diy AE1207
This is the python code that gets it working and also has this .exe installed (SerialSend.exe; https://batchloaf.wordpress.com/serialsend/):
subprocess.check_output("serialsend.exe /baudrate 9600 /hex \\xA0\\x01\\x01\\xA2", shell=True)
time.sleep(10)
subprocess.check_output("serialsend.exe /baudrate 9600 /hex \\xA0\\x01\\x00\\xA1", shell=True)
Any tips in converting this to Matlab? I’ve tried this but nothing happens:
relayopen='\\xA0\\x01\\x01\\xA2';
relayclose='\\xA0\\x01\\x00\\xA1';
Ports=serialportlist;
JuicePort=Ports(3);
s=serial(JuicePort);
fopen(s)
fprintf(s,relayopen)
fclose(s)

답변 (1개)

Walter Roberson
Walter Roberson 2022년 8월 27일
relayopen = '\xA0\x01\x01\xA2';
relayclose = '\xA0\x01\x00\xA1';
Ports = serialportlist;
JuicePort = Ports(3);
s = serial(JuicePort, 'BaudRate', 9600);
fopen(s)
fprintf(s,relayopen)
fclose(s)
Note that serial() is going to go away, and you should change to serialport()
  댓글 수: 3
Walter Roberson
Walter Roberson 2022년 8월 28일
relayopen = 0xA00101A2;
relayclose = 0xA00100A1;
Ports = serialportlist;
JuicePort = Ports(3);
s = serial(JuicePort, 'BaudRate', 9600, 'ByteOrder', 'bigendian');
fopen(s);
fwrite(s, relayopen);
sleep(5);
fwrite(s, relayclose);
fclose(s)
Jessica Yorzinski
Jessica Yorzinski 2022년 8월 28일
Thanks for giving me something else to try! Unfortunately, it is still the case that the pump isn't triggered (even though that Python code running on the same machine does trigger it). There are no errors-- just nothing happens. Any other things I could try?

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

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by