dankeboy36 / vscode-arduino-api

Arduino IDE API for VS Code extensions
https://github.com/dankeboy36/vscode-arduino-api/blob/main/docs/interfaces/ArduinoContext.md
MIT License
3 stars 0 forks source link
arduino arduino-ide theia-ide vscode vscode-extension

vscode-arduino-api

Build

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.

API

See the full API on GitHub.

How to Use

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:

  1. Install the Arduino API types from npm:

    npm install vscode-arduino-api --save
  2. 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}`
          );
        }
      });
    }

Extension Settings

This extension contributes the following settings:

FAQs