Skip to content

Instantly share code, notes, and snippets.

@sunipkm
Created December 15, 2023 20:57
Show Gist options
  • Select an option

  • Save sunipkm/47a622bc2513ce0912703f90a89f8d69 to your computer and use it in GitHub Desktop.

Select an option

Save sunipkm/47a622bc2513ce0912703f90a89f8d69 to your computer and use it in GitHub Desktop.
Arduino VS Code Extension Setup

Arduino CLI

Install the CLI using brew:

$ brew install arduino-cli

Add the following package repo and install:

$ arduino-cli config init --additional-urls https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
$ arduino-cli core update-index

Set Arduino.Path and Arduino.CommandPath in VS Code:

"arduino.useArduinoCli": true,
"arduino.path": "/path/to/arduino-cli",
"arduino.commandPath": "arduino-cli"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment