fill()

描述

在萤幕上显示任何东西前呼叫这个函式,该函式使得显示的图形以及文字被指定的颜色填满。

fill() 的三个参数 red, green, blue,大小都是 8-bit,但是 fill() 在显示时,red 和 blue 只会使用 5-bit,green 只会使用 6-bit,使用等比例的方法把原本的值缩小。

语法


screen.fill(red, green, blue);

参数

red:红色的数值,范围为 0~255,型态为 int
green:绿色的数值,范围为 0~255,型态为 int
blue:蓝色的数值,范围为 0~255,型态为 int

回传

无回传值

范例

#include <SPI.h>
#include <TFT.h>

#define cs   10
#define dc   9
#define rst  8

TFT screen = TFT(cs, dc, rst);


void setup() {
  // 初始化 TFT 物件
  screen.begin();

  // 设定背景色为黑色
  screen.background(0,0,0);

  // 用白色填满显示的图形
  screen.fill(255,255,255);

  // 在正中央画一个长方形
  screen.rect(screen.width()/2+10,screen.height()/2+10,screen.width()/2-10,screen.height()/2-10);
}

void loop() {

}

See also

TFT
noStroke()
stroke()
noFill()


函式库参考主页面

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.