You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 1, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -55,12 +55,14 @@ The following Visual Studio Code settings are available for the Arduino extensio
55
55
```json
56
56
{
57
57
"arduino.path": "C:/Program Files (x86)/Arduino",
58
+
"arduino.commandPath": "run-arduino.bat",
58
59
"arduino.additionalUrls": "",
59
-
"arduino.logLevel": "info",
60
+
"arduino.logLevel": "info",
60
61
"arduino.enableUSBDetection": true
61
62
}
62
63
```
63
64
-`arduino.path` - Path to Arduino, you can use a custom version of Arduino by modifying this setting to include the full path. Example: `C:\\Program Files\\Arduino` for Windows, `/Applications` for Mac, `/home/$user/Downloads/arduino-1.8.1` for Linux. (Requires a restart after change). The default value is automatically detected from your Arduino IDE installation path.
65
+
-`arduino.commandPath` - Path to an executable (or script) relative to `arduino.path`. You can use a custom launch script to run Arduino by modifying this setting. (Requires a restart after change) Example: `run-arduino.bat` for Windows, `Contents/MacOS/run-arduino.sh` for Mac, `bin/run-arduino.sh` for Linux."
64
66
-`arduino.additionalUrls` - Additional URLs for 3rd party packages. You can have multiple URLs in one string with comma(,) as separator, or have a string array. The default value is empty.
65
67
-`arduino.logLevel` - CLI output log level. Could be info or verbose. The default value is `"info"`.
66
68
-`arduino.enableUSBDetection` - Enable/disable USB detection from the VSCode Arduino extension. The default value is `true`.
Copy file name to clipboardExpand all lines: package.json
+5
Original file line number
Diff line number
Diff line change
@@ -413,6 +413,11 @@
413
413
"default": "",
414
414
"description": "Path to Arduino, you can use a custom version of Arduino by modifying this setting to include the full path. Example: 'C:\\Program Files\\Arduino' for Windows, '/Applications' for Mac, '/home/$user/Downloads/arduino-1.8.1' for Linux. (Requires a restart after change)"
415
415
},
416
+
"arduino.commandPath": {
417
+
"type": "string",
418
+
"default": "",
419
+
"description": "Path to a script relative to 'arduino.path', you can use a custom launch script to run Arduino by modifying this setting. Example: 'run-arduino.bat' for Windows, 'Contents/MacOS/run-arduino.sh' for Mac, 'bin/run-arduino.sh' for Linux. (Requires a restart after change)"
0 commit comments