Arduino IDE API for VS Code extensions.
This VS Code extension does not provide any functionality but a bridge between the Arduino IDE and external tools implemented as a VS Code extension. Please reference arduino/arduino-ide#58 to see why this VSIX has been created.
⚠️ This extension has nothing to do with the Visual Studio Code extension for Arduino.
See the full API on GitHub.
If you're developing an external tool for the Arduino IDE, this extension will be available at runtime from the IDE.
If you want to use the Arduino APIs, you have to do the followings:
-
Install the Arduino API types from
npm
:npm install vscode-arduino-api --save
-
Consume the
ArduinoContext
extension API in your VS Code extension:import * as vscode from 'vscode'; import type { ArduinoContext } from 'vscode-arduino-api'; export function activate(context: vscode.ExtensionContext) { const context: ArduinoContext = vscode.extensions.getExtension( 'dankeboy36.vscode-arduino-api' )?.exports; if (!context) { // Failed to load the Arduino API. return; } // Use the Arduino API in your VS Code extension. // Read the state. // Register a command to access the sketch path and show it as an information message. context.subscriptions.push( vscode.commands.registerCommand('myExtension.showSketchPath', () => { vscode.window.showInformationMessage( `Sketch path: ${context.sketchPath}` ); }) ); // Listen on state change. // Register a listener to show the FQBN of the currently selected board as an information message. context.onDidChangeSketch((event) => { if (event.changedProperties.includes('board')) { vscode.window.showInformationMessage( `FQBN: ${event.object.board?.fqbn}` ); } }); }
This extension contributes the following settings:
arduinoAPI.log
: set totrue
to enable logging of state updates. It'sfalse
by default.arduinoAPI.compareBeforeUpdate
: set totrue
to relax the state update. Iftrue
, a value will be updated when the new value and the current value are notdeepStrictEqual
.
- Q: What does
⚠️ @alpha
mean? - A: This API is in an alpha state and might change. The initial idea of this project was to establish a bare minimum layer and help Arduino IDE tool developers start with something. I make breaking changes only when necessary, keep it backward compatible, or provide a migration guide in the future. Please prepare for breaking changes.
- Q: Why do I have to install
vscode-arduino-api
fromnpm
. - A:
vscode-arduino-api
only contains types for the API. The actual code will be part of the VS Code extension.
- Q: Are there any dependent examples?
- A: Yes, for example, dankeboy36/esp-exception-decoder or earlephilhower/arduino-littlefs-upload.