Home Page | Language Reference (extended) | SD Reference | Libraries | Comparison | Changes
TFTLibrary > TFT
Reports the width of the TFT screen in pixels.
screen.width();
none
int : the width of the screen in pixels
#include <SPI.h>
#include <TFT.h> // Arduino TFT library
#define cs 10
#define dc 9
#define rst 8
TFT screen = TFT(cs, dc, rst)
;
void
setup
(
)
{
// initialize the screen
screen.begin
(
)
;
// make the background black
screen.background
(
0
,
0
,
0
)
;
// set the stroke color to white
screen.stroke
(
255
,
255
,
255
)
;
// set the fill color to grey
screen.fill
(
127
,
127
,
127
)
;
// draw a rectangle in the center of screen
screen.line
(screen.width
(
)
/
2
-
5
, screen.height
(
)
/
2
-
5
,
10
,
10
)
;
}
void
loop
(
)
{
}
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.