Double_G

ILI9341

Nov 18th, 2020 (edited)
589
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. void loop() {
  2.  
  3. tft.setFreeFont(FSB18);
  4. tft.setTextSize(2);
  5. tft.setTextColor(TFT_BLACK,TFT_BLACK);
  6. tft.drawCentreString(ido, 160, 90, GFXFF);
  7. timeClient.update();
  8. ido = timeClient.getFormattedTime();
  9. tft.setFreeFont(FSB18);
  10. tft.setTextSize(2);
  11. tft.setTextColor(TFT_WHITE,TFT_BLACK);
  12. tft.drawCentreString(ido, 160, 90, GFXFF);
  13. delay(1000);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment