custom library I created for arduino cannot be run through matlab
조회 수: 6 (최근 30일)
이전 댓글 표시
Hi, whenever I try to run my program for a gas sensor. An error message comes up:
ExampleAddon/MQ3Uni is ad addon library Icreated in Matlab. However, when I create a pragram with this library I get the error below. I would like to recieve help on this. I tried the insructions given on Arduino Hardware Troubleshooting. However, I did not get solution to the problem.
Thanks
댓글 수: 0
채택된 답변
Nishant Gupta
2020년 7월 10일
Can you please try this workaround and see if it is working or not. First see if arduino object can be created without using custom libraries.
Run the following command to see if this works fine:
a = arduino('COM3','Uno', 'TraceOn',true);
If this works fine, create arduino object with custom library and have trace on:
arduinoObj = arduino('COM3','Uno','Libraries','ExampleAddon/MQ3Uni','ForceBuild',true,'TraceOn',true);
This will give you debug information and upload errors of Arduino IDE at the MATLAB command window. There are some common possible causes of the error. Depending on what you see in your trace log, try the one that applies as follows:
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Instrument Control Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!