PlatformIO로 TTGO T-Display 이동

TTGO T-Display를 구입했습니다만, 여러가지 보드가 잇달아 발매되는 요즘, 빨리도 다음의 보드가 손에 들어왔으므로, 쌓아 보드가 되어 버리기 전에 만지는 방법만으로도 남겨 두려고 생각합니다.



TTGO T-Display 샘플(초기 출하 상태로 들어 있는 것)은 여기 에 있습니다.
기본적으로는 여기에 써 있는 거리를 PlatformIO로 했을 뿐입니다만,
그 전에 먼저 PlatformIO에서 새 프로젝트를 만들고 Board는 TTGO T1을 선택합니다.


프로젝트를 만든 후 다음 단계로 진행합니다.

1.Install the following dependency library files:



  • TFT_eSPI
  • Button2

  • 이것은 PlatformIO > Libraries 로 각각 "TFT_eSPI""Button2"로 검색하면 나오므로 그대로 인스톨 합니다.


    2.TFT_eSPI settings


  • Install TFT_eSPI, in TFT_eSPI/User_Setup_Select.h , comment out the default settings #include <User_Setup.h> , select #include <User_Setups/Setup25_TTGO_T_Display.h> , Save Settings.

  • 이것은 PlatformIO > Libraries > Installed
    에서 방금 설치한 TFT_eSPI를 선택하고 Reveal 버튼을 누르면 설치 폴더가 열립니다.


    열린 폴더에서 User_Setup_Select.h를 열고 작성한대로
    //#include <User_Setup.h>           // Default setup is root library folder
    

    코멘트 아웃,
    #include <User_Setups/Setup25_TTGO_T_Display.h>    // file for ESP32 and TTGO T-Display ST7789V SPI bus TFT
    

    의 주석 처리를 해제합니다.

    다음으로 TTGO-T-Display.ino 의 내용을 그대로 main.cpp copipe 해,
    새 파일>bmp.h를 만들고 여기에 bmp.h 의 내용 그대로 복사합니다.



    나중에 빌드하면 공장 출하 시의 샘플이 표시됩니다.

    좋은 웹페이지 즐겨찾기