- Please reinstall the support package for Arduino and try to program it again.
- Try programming the board with Arduino IDE to make sure that the board is working properly.
Can't initiate Arduino with LCD library in MATLAB
조회 수: 12 (최근 30일)
이전 댓글 표시
I receive the following error:
>> a = arduino('/dev/cu.usbmodem11201','uno','libraries','ExampleLCD/LCDAddon');
Cannot program board Uno (/dev/cu.usbmodem11201). Please make sure the board is supported and
the port and board type are correct. For more information, see Arduino Hardware Troubleshooting.
But I don't receive an error if I execute:
>> a = arduino('/dev/cu.usbmodem11201','uno')
댓글 수: 0
답변 (1개)
Siraj
2023년 9월 29일
Hi!
It seems that when you run the following code you encounter an error.
a = arduino('/dev/cu.usbmodem11201','uno','libraries','ExampleLCD/LCDAddon');
However, when you run the code without specifying libraries, don’t experience any errors.
a = arduino('/dev/cu.usbmodem11201','uno');
It appears that the issue might be related to including libraries while initializing the Arduino board. It is important to double-check the library you are using and ensure that everything is correct. If you have confirmed that there are no issues with the library, you can try the following steps to troubleshoot the problem:
Additionally, please refer to the link below to troubleshoot the Arduino hardware support package:
Try executing the command with 'TraceOn' and 'ForceBuild' set to true as seen in the following:
a = arduino('/dev/cu.usbmodem11201','uno','libraries','ExampleLCD/LCDAddon','TraceOn',true,'ForceBuild',true);
This command should produce a lengthy error output, which can be used to further debug the issue.
Hope this helps.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Arduino Hardware에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!