Skip to content

Instantly share code, notes, and snippets.

@ijash
Last active March 18, 2019 20:28
Show Gist options
  • Save ijash/e11ce75525f6ab01b5a48c8f3a6e1ec6 to your computer and use it in GitHub Desktop.
Save ijash/e11ce75525f6ab01b5a48c8f3a6e1ec6 to your computer and use it in GitHub Desktop.
Arduino vscode setting intellisense

add this line to settings.json (file>preferences>settings):

"C_Cpp.intelliSenseEngine": "Tag Parser",
"C_Cpp.default.includePath": [
  "${env.HOME}/.arduino"
  ]

and add to auto-generated c_cpp_properties.json in .vscode folder:

{
    "configurations": [
        {
            "includePath": [
                "${env.HOME}/.arduino"
            ]
        }
    ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment