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


Arduino TFT - TFT用法及代码示例


说明

用于绘制到 Arduino TFT 屏幕的基类。使用它来创建 TFT 类的命名实例以在您的草图中引用。

如果使用 Arduino Explora,则不需要调用它,所有对屏幕的引用都通过 EsploraTFT 处理。

用法

TFT(cs, dc, rst); for using hardware SPI
TFT(cs, dc, mosi, sclk, rst); for use on any pins

参数

cs: int, 片选管脚 dc: int, rst 用管脚: int, 复位管脚 mosi: int, 不使用硬件时用于 MOSI 通信的管脚 SPI sclk: int, 不使用时用于共享时钟管脚使用硬件 SPI

返回

示例

#include <SPI.h>
#include <TFT.h>            // Arduino LCD 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);

  // turn off fill coloring
  screen.noFill();

  // draw a rectangle in the center of screen
  screen.line(screen.width()/2-5, screen.height()/2-5, 10, 10);
}

void loop() {

}

相关用法


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