[VSCode]PlatformIO에서 사용할 라이브러리 위치 및 환경 설정

2024년 07월 19일 by 진아사랑해

    [VSCode]PlatformIO에서 사용할 라이브러리 위치 및 환경 설정 목차
반응형

PlatformIO 환경에서 esp32-s3를 사용한 프로그램을 개발하기 시작했습니다.

필요한 라이브러리를 다운로드 받고, 환경설정을 해야 함으로 이에 대한 내용을 알아보겠습니다.

 

 라이브러리 위치

platformIO에서 사용하는 라이브러리들은 

 

Search

Explore popular packages, connect with the PlatformIO Community

registry.platformio.org

이 사이트에서 좌측 상단에 있는 Serach를 사용하여 원하는 라이브러리를 검색할 수 있습니다.

 

 dependency 설정

라이브러리가 정상적으로 PlatformIO 환경에서 작동하기 위해서는 의존성(dependency)에 대한 선언이 되어야 합니다.

이에 대한 자세한 내용은

 

Dependency Management — PlatformIO latest documentation

Please take a look at the example below. The dep_1 and dep_2 dependencies are common to the release and debug working environments, whereas the dep_3 is a specific only for the debug working environment. The [env:debug] section overrides common lib_deps op

docs.platformio.org

이 문서에는 좋은 예와 나쁜 예제가 나와 있음으로 참고하시기 바랍니다.

 

반응형