Programatically configure arduino in standalone application

5 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

Kshitij Chhabra
Kshitij Chhabra am 27 Dez. 2021
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 Kommentar
David Wilby
David Wilby am 6 Jan. 2022
Bearbeitet: David Wilby am 6 Jan. 2022
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.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Arduino Hardware finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by