Skip to content

Instantly share code, notes, and snippets.

@seantibor
Created June 1, 2019 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save seantibor/6c71cfec8182b4867c7c52bec369e6df to your computer and use it in GitHub Desktop.
Save seantibor/6c71cfec8182b4867c7c52bec369e6df to your computer and use it in GitHub Desktop.
Copy to CircuitPython Device task for VS Code
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Copy to CircuitPython Device",
"type": "shell",
"command": "cp -f ${file} /Volumes/*PY/code.py",
"presentation": {
"reveal": "never"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment