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


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


说明

在给定坐标处将文本写入屏幕。

用法

screen.text(text, xPos, yPos);

参数

text: char 数组,要在屏幕上书写的文本 xPos: int,要开始在屏幕上绘制文本的 x 轴位置 yPos: int,要开始绘制的 y 轴位置文本到屏幕

返回

示例

#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 text color to white
  screen.stroke(255,255,255);

  // write text to the screen in the top left corner
  screen.text("Testing!", 0, 0);
}

void loop() {

}

相关用法


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