Komut
fill()
Açıklama
Ekranda bir nesne çizmeden önce çağrılan şekiller ve metnin dolgu rengini ayarlar.
fill (), kırmızı, yeşil ve mavi kanalların her biri için 8 bit değer bekler, ancak ekran bu aslına uygun olarak görüntülenmez. Kırmızı ve mavi değerler 5 bit renge ölçeklendirilir (32 ayrık adım) ve yeşil 6 bit renge (64 ayrık adım) eşitlenir.
Sözdizimi
ekran dolgusu (kırmızı, yeşil, mavi);
Parametreler
- kırmızı: int 0-255
- yeşil: int 0-255
- mavi: int 0-255
İ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 white box in the screen center
screen.rect(screen.width()/2+10,screen.height()/2+10,screen.width()/2-10,screen.height()/2-10);
}
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 white box in the screen center
screen.rect(screen.width()/2+10,screen.height()/2+10,screen.width()/2-10,screen.height()/2-10);
}
void loop() {
}