Skip to content

Create Configure New Test Project

PatHock edited this page Feb 22, 2018 · 2 revisions
  1. Create new branch off of the "Develop" branch
  2. Using Git, checkout that new branch you created
  3. Create a new folder in the repository under "/YCP_EVOS/Test_Projects/{your project name}"
  4. In VSCode, press Ctrl+Shift+N, navigate to your newly created folder and click "Select Folder" in the bottom right corner of the window
  5. In VSCode, press Ctrl+Shift+P, type in "platformio: new terminal" (pressing Enter will auto-complete the command)
  6. In the terminal tab that appears, if you have a Teensy 3.6 type in: "platformio init --board teensy36" or if you have a Teensy 3.5 type in: "platformio init --board teensy35"
  7. After it initializes the directory, make a new file under the "src" folder and call it "main.cpp"
  8. To commit your changes, click the "Y" looking icon to get to the GitHub tab of VSCode to type your commit message at the top of the sidebar

VSCode IntelliSense

  • Close and reopen VSCode for project you just created
  • This solves the "include path" issue and also enables PlatformIO keyboard shortcuts
Clone this wiki locally