Komut
point()
Açıklama
Verilen koordinatlara bir nokta çizer. İlk parametre nokta için yatay değer, ikinci parametre nokta için dikey değerdir.
Sözdizimi
ekran noktası (xPos, yPos);
Parametreler
- xPos: int, noktanın yatay konumu
- yPos: int, noktanın dikey konumu
İadeler
Yok
Misal
#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.fill(255,255,255);
// draw a pixel in the screen's center
screen.point(screen.width()/2, screen.height()/2);
}
void loop() {
}
#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.fill(255,255,255);
// draw a pixel in the screen's center
screen.point(screen.width()/2, screen.height()/2);
}
void loop() {
}