- 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 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Siraj
on 29 Sep 2023
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 Comments
See Also
Categories
Find more on Arduino Hardware in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!