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
+5-5
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,9 @@ The Arduino CLI can be downloaded from the repository's [release page](https://g
29
29
- If you use the CLI you will have to set `arduino.path` since the CLI does not have a default path.
30
30
31
31
## Installation
32
-
Open VS Code and press <kbd>F1</kbd> or <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd> to open command palette, select **Install Extension** and type `vscode-arduino`.
32
+
Open VS Code and press <kbd>F1</kbd> or <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd> *or* <kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd> to open command palette, select **Install Extension** and type `vscode-arduino`.
33
33
34
-
Or launch VS Code Quick Open (<kbd>Ctrl</kbd> + <kbd>P</kbd>), paste the following command, and press enter.
34
+
Or launch VS Code Quick Open (<kbd>Ctrl</kbd> + <kbd>P</kbd>*or* <kbd>Cmd</kbd> + <kbd>P</kbd> ), paste the following command, and press enter.
35
35
```bash
36
36
ext install vscode-arduino
37
37
```
@@ -42,7 +42,7 @@ You can also install directly from the Marketplace within Visual Studio Code, se
42
42
You can find code samples and tutorials each time that you connect a supported device. Alternatively you can visit our [IoT Developer Blog Space](https://devblogs.microsoft.com/iotdev/) or [Get Started Tutorials](https://docs.microsoft.com/azure/iot-hub/iot-hub-arduino-iot-devkit-az3166-get-started).
43
43
44
44
## Commands
45
-
This extension provides several commands in the Command Palette (<kbd>F1</kbd> or <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd>) for working with `*.ino` files:
45
+
This extension provides several commands in the Command Palette (<kbd>F1</kbd> or <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd>*or* <kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd>) for working with `*.ino` files:
46
46
47
47
-**Arduino: Board Manager**: Manage packages for boards. You can add 3rd party Arduino board by configuring `Additional Board Manager URLs` in the board manager.
48
48
-**Arduino: Change Baud Rate**: Change the baud rate of the selected serial port.
@@ -83,7 +83,7 @@ This extension provides several commands in the Command Palette (<kbd>F1</kbd> o
83
83
|`arduino.defaultTimestampFormat`| Format of timestamp printed before each line of Serial Monitor output. You can find list of all available placeholders [here](https://strftime.org). |
84
84
|`arduino.disableIntelliSenseAutoGen`| When `true` vscode-arduino will not auto-generate an IntelliSense configuration (i.e. `.vscode/c_cpp_properties.json`) by analyzing Arduino's compiler output. |
85
85
86
-
The following Visual Studio Code settings are available for the Arduino extension. These can be set in global user preferences <kbd>Ctrl</kbd> + <kbd>,</kbd> or workspace settings (`.vscode/settings.json`). The latter overrides the former.
86
+
The following Visual Studio Code settings are available for the Arduino extension. These can be set in global user preferences <kbd>Ctrl</kbd> + <kbd>,</kbd> *or* <kbd>Cmd</kbd> + <kbd>,</kbd> or workspace settings (`.vscode/settings.json`). The latter overrides the former.
87
87
88
88
```json
89
89
{
@@ -198,7 +198,7 @@ Make sure that your Arduino board can work with [STLink](http://www.st.com/en/de
198
198
199
199
Steps to start debugging:
200
200
1. Plug in your board to your development machine properly. For those boards that do not have an on-board debugging chip, you need to use a STLink or JLink connector.
201
-
2. Go to the **Debug View** (<kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>D</kbd>). and set breakpoints in your source files.
201
+
2. Go to the **Debug View** (<kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>D</kbd>*or* <kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>D</kbd>). and set breakpoints in your source files.
202
202
3. Press <kbd>F5</kbd> to select your debugging environment.
203
203
4. When your breakpoint is hit, you can see variables and add expression(s) to watch on the Debug Side Bar.
0 commit comments