Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void setup() {
- // put your setup code here, to run once:
- Serial.begin(9600);//bauds
- textos_L(STR);
- }
- void textos_L(String STR){
- tft.setCursor(0,3); //inicia o cursor em Width e heigth
- tft.initR(INITR_BLACKTAB); //backgraud preto
- tft.setTextSize(1); // tamanho font aligment
- tft.fillScreen(ST7735_BLACK); // filscren
- tft.setTextColor(ST7735_RED); // cor font
- tft.print("Bem10jfx.blogspot.com"); // texto font
- tft.setCursor(5,13);
- tft.setTextColor(ST7735_WHITE);
- tft.setTextSize(5);
- tft.print("JAVAFX");
- tft.setCursor(0,100);//w h
- tft.setTextColor(ST7735_GREEN);
- tft.setTextSize(3);
- tft.print("ARDUINO");
Advertisement
Add Comment
Please, Sign In to add comment