Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Ubuntu 18.04 기준으로 설명함.

vscode 설치 및 설정

현재 최신버전인 1.43.1 에서는 arduino 사용시 버그 있는 것이 있어서 최신 버전 삭제하고 수동으로 1.42.1 설치하였음. (arduino serial monitor 가 작동하지 않았음) 이전 버전 설치는 릴리즈 페이지에서 수동으로 dep 파일 받아서 설치하였음.

https://code.visualstudio.com/updates/v1_42

vscode 설정

설정에서 update mode를 none 으로 설정하여 vccode 자동 업데이트를 막음. (OS 차원에서도 필요할듯)

https://code.visualstudio.com/docs/supporting/faq#_how-do-i-opt-out-of-vs-code-autoupdates

https://code.visualstudio.com/docs/setup/linux

arduino 관련

vscode 에 필요한 extentions 를 설치하여 사용함.

https://platformio.org/platformio-ide 이용을 할 때는 PlatformIO IDE 가 계속 재설치되는 증상이 있었다. atom을 쓴 경우에도 마찬가지인데 해결책을 몰라서 포기. PlatformIO IDE가 사용을 해보니 편안하기는 하다.

Arduino for Visual Studio Code 설치.

https://marketplace.visualstudio.com/items?itemName=vsciot-vscode.vscode-arduino

설치 후 arduino 관련한 몇가지 설정이 필요함. 최소한 arduino.path 는 필요하다. board type, port , Baud Rate 는 수정을 해서 사용을 하는 것이 편하다.

$ cat ~/.config/Code/User/settings.json
{
"C_Cpp.updateChannel": "Insiders",
"arduino.path": "/snap/arduino/current",
"arduino.board": "arduino:avr:uno",
"arduino.port": "/dev/ttyACM0",
"arduino.defaultBaudRate": 115200,
"window.zoomLevel": 0,
"update.mode": "none"
}

  • Arduino: Upload Alt + Cmd + U or Alt + Ctrl + U

  • Arduino: Verify Alt + Cmd + R or Alt + Ctrl + R

설정파일 위치.

https://code.visualstudio.com/docs/getstarted/settings#_settings-file-locations

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.