当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Arduino TFT - fill()用法及代码示例


说明

在屏幕上绘制对象之前调用,它设置形状和文本的填充颜色。

fill() 要求红色、绿色和蓝色通道中的每一个都具有 8 位值,但屏幕不会以这种保真度显示。红色和蓝色值缩放为 5 位颜色(32 个离散步骤),绿色为 6 位颜色(64 个离散步骤)。

用法

screen.fill(red, green, blue);

参数

红色:int 0-255 绿色:int 0-255 蓝色:int 0-255

返回

示例

#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() {

}

相关用法


注:本文由纯净天空筛选整理自arduino.cc大神的英文原创作品 TFT - fill()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。