Programatically configure arduino in standalone application

5 次查看(过去 30 天)
Hi,
In a standalone application which uses the Arduino Hardware Support Package, on connecting to the arduino, the "Configure Arduino" dialog is launched, asking the user to specify port, board and path to the ardunio IDE.
Is there a way to programmatically bypass this manual config step?
Thanks

采纳的回答

Kshitij Chhabra
Kshitij Chhabra 2021-12-27
Hi,
For a clean installation, the IDE Path should be automatically configured when you install the Arduino Support Package. You can check the following MATLAB Answer to debug probable causes.
Additionally, the path can be set by the following command
arduinoio.IDERoot = 'Link To Path'
Hope it helps!
  1 个评论
David Wilby
David Wilby 2022-1-6
编辑:David Wilby 2022-1-6
Thanks Kshitij, this didn't completely solve the problem for me but it lead me in the right direction. This is because I'm specifically referring to a deployed application, i.e. isdeployed returns true.
In this case I've found by digging into the arduino class, that you can specify the port and board name, along with the arduino IDE path when instantiating, and this will configure the arduino connection and prevent the 'Configure...' dialog from being presented to the user (which was the undesirable part for me in this case).
for example:
a = arduino('COM4', 'Uno', 'ArduinoIDEPath', 'C:\Program Files\arduino-1.8.16')
The ArduinoIDEPath Name-Value pair is not documented here (https://uk.mathworks.com/help/supportpkg/arduinoio/ref/arduino.html#namevaluepairarguments), but can be found in the source code.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Arduino Hardware 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by