Home Page | Language Reference (extended) | SD Reference | Libraries | Comparison | Changes
Initialize the TFT module. All general TFT functions are dependent on this.
none
#include <ArduinoRobot.h>
void
setup
(
)
{
Robot.begin
(
)
;
Robot.beginTFT
(
)
;
//Initialize the TFT module
}
void
loop
(
)
{
Robot.fill
(
255
,
255
,
255
)
;
Robot.text
(
"Hello World"
,
0
,
0
)
;
delay
(
2000
)
;
Robot.fill
(
0
,
0
,
0
)
;
Robot.text
(
"Hello World"
,
0
,
0
,
false
)
;
//It's necessary to erase the old text, before showing new text
Robot.fill
(
255
,
255
,
255
)
;
Robot.text
(
"I am a robot"
,
0
,
0
)
;
delay
(
3000
)
;
Robot.fill
(
0
,
0
,
0
)
;
Robot.text
(
"I am a robot"
,
0
,
0
)
;
}
Corrections, suggestions, and new documentation should be posted to the Forum.
The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.