TFT - EsploraTFT

Description

This is the named instance of the TFT class when targeting the Arduino Esplora board.

Syntax

EsploraTFT

Parameters

none

Returns

none

Example

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

}