Teensy 3.2/3.1 connection with FT800-EVE-microe

Status
Not open for further replies.

suntchi56

New member
Hi all,
I'm trying to run the basic "HellowWorld" app, with a teensy 3.2 and FT800 display, but I'm not sure if the connections I've made are correct: MOSI=11,MISO=12,SCK=13
But the following: CS= ?, INT=?, PD=? where are connected
I tried this program, but it doesn't work :(
I also tried other GD2 libraries without success.
Is there someone who can help me.

#include "SPI.h"
#include "GD2.h"

void setup()
{
Serial.begin(9600);
GD.begin();
}

void loop()
{
GD.ClearColorRGB(0x103000);
GD.Clear();
GD.cmd_text(GD.w / 2, GD.h / 2, 31, OPT_CENTER, "Hello world");
GD.swap();
}
 
Sorry but before, I was not able to attach this image. This is my first time using this forum.
Teensy_3.2-FT800-EVE-mikroe.jpg
I'm trying to understand the performance of this display with different MCUs
I have already tried these MCUs, but with the teensy I have some difficulties
Arduino-MEGA-FT800-EVE-mikroe-microSD-Reader - Copia.jpg
STM32-FT800-PINOUT.jpg
 
Status
Not open for further replies.
Back
Top