EsploraTFT

名称

EsploraTFT

説明

Arduino Esploraボードを使うときに生成される、TFTクラスのインスタンスの名称。

書式

EsploraTFT;

引数

なし。

戻り値

なし。

使用例

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#include <Esplora.h>
#include <SPI.h>
#include <TFT.h>            // Arduino LCD library

void setup() {
  // initialize the screen
  EsploraTFT.begin();

  // make the background white
  EsploraTFT.background(255,255,255);
}

void loop() {

}

オリジナルのページ

https://www.arduino.cc/reference/en/libraries/tft/esploratft/

最終更新日

January 8, 2024

inserted by FC2 system