text

text( )

Description
Draws text

Syntax
text(string, x, y

Parameters
  string : text to be displayed
  x        : x-coordinate of  text
  y        : y-coordinate of  text

Usages

text("abc", 100, 100)



Examples in arduino

#include "AppGosu.h"
AppGosu app;

void  setup() {
     app.start();
     app.clearAll();

     app.text("ABC 123", 100, 100);

}
void loop() {

}



Examples in other MCU 


printf("text('ABC 123',100,100);");


     

















from AppGosu
-----------------------------------------

No comments: