Skip to content

Instantly share code, notes, and snippets.

@kopp
Created December 30, 2022 20:19
Show Gist options
  • Save kopp/4c4ce3ad2f4cd2fc0ce66e73ebb5901f to your computer and use it in GitHub Desktop.
Save kopp/4c4ce3ad2f4cd2fc0ce66e73ebb5901f to your computer and use it in GitHub Desktop.
Arduino with VSCode

Install extension https://github.com/microsoft/vscode-arduino

Create a .vscode/settings.json file, that makes sure, that the C/C++ extension is enabled. (By default, I use the clangd extension for intellisense.)

{
    "C_Cpp.intelliSenseEngine":"default",
    "C_Cpp.autocomplete": "default",
    "C_Cpp.errorSquiggles": "enabledIfIncludesResolve"
}

And distable the clangd extension for this workspace.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment