- 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!