TFT LCD로 많은것을 표현할 수 있지만 이번에는 제공되는 라이브러리를 이용하여서 그래프를 그려보자. 어떠한 센서값을 출력하여서 그래프를 그린다. TFT LCD 세팅에 대한 내용은 이전 게시글을 보길 바란다. #include // Arduino LCD library #include // pin definition for the Uno #define cs 10 #define dc 9 #define rst 8// pin definition for the Leonardo // #define cs 7 // #define dc 0 // #define rst 1TFT TFTscreen = TFT(cs, dc, rst);// position of the line on screen int xPos = 0;void s..