Quality,
Affordable,
Manufacturing
& Design
Services
- Turn Key Assembly
- Parts Acquisition
- Box Build
- System Assembly
- Functional Testing



- PCB Assembly
- Surface Mount
- Through Hole
- BGA, uBGA, LGA
- Prototype and Production
- Re-Work and Repair


Shield - Adafruit 2.8" TFT Touch v2

This project will show you how to use the Adafruit 2.8" TFT Touch Shield v2 with your board.


  1. Connect the TFT Touch shield to your board.
  2. In the Kinetis Design Studio IDE, select the File menu and choose New then Kinetis Project.
  3.  

 

 

 

 

 

 

  1. In the Project Explorer on the left, under Sources, double click to open the file "arduinoApp.cpp".
  2. Copy and paste the following code into this file to replace it's contents:
//--------- Blinking LED Test

int ledPin = 6;                 // LED connected to this digital pin number

void setup()
{
    Serial.begin(115200);        // initialize the uart to 115200 baud
    pinMode(ledPin, OUTPUT);    // sets the digital pin as output
    Serial.println("LED blinking ON and OFF every second..");        // send string out serial port
}

void loop()
{
    digitalWrite(ledPin, HIGH);        // sets the LED on
    delay(1000);                      // waits for a second

    digitalWrite(ledPin, LOW);        // sets the LED off
    delay(1000);                      // waits for a second
}

  1. Select Project from the main menu and choose Build Project.
  2. If there are any errors they will be displayed in the Problems tab.

Now follow the steps under Debugging your ARM Board Project.

Shield Pins

Board RX TX D2 D3 D4 D5 D6 D7 D8 D9 D10 D11 D12 D13   SDA SCI A5 A4 A3 A2 A1 A0
CMM-K60D C16 C17 B9 A1 B23 A2 C2 C3 A0 C4 D0 D2 D3 D1   E25 E24 C10 C11 B11 B10 B3 B2
CMM-K22F