Hi ,
I've been looking for a Teensy 3.6 library for a ssd1963 controller for 7" 800x480 display with hr2046 ressistive touch screen.
I used UTFT library for screen, but I want to use a touch screen with it. I tried Utouch and URtouch library too. Both of them working very well with mega2560 an DUE but Touchscreen working very strangely with the Teensy 3.6 boards.
I use the UTFT calibration sketch to run and the touch seems to work, but the results are out of sceen range and completely different values .
What is wrong, Can you help me?
#include <UTFT.h>
#include <URTouch.h>
UTFT myGLCD(SSD1963_800ALT,42,40,52,53);// teensy 36ok
// UTFT(byte model, int RS, int WR,int CS, int RST, int SER)
// #define PORTS USE_B_D_PORTS
// ("DB_0=16, DB_1=17, DB_2=19, DB_3=18, DB_4=0, DB_5=1, DB_6=29, DB_7=30")
// ("DB_8=2, DB_9=14, DB_10=7, DB_11=8, DB_12=6, DB_13=20, DB_14=21, DB_15=5")
// UTouch(byte tclk, byte tcs, byte din, byte dout, byte irq)
//URTouch(byte tclk, byte tcs, byte tdin, byte dout, byte irq);
URTouch myTouch( 13, 10, 11, 12, 24); //tensy3.6
#define TOUCH_ORIENTATION LANDSCAPE
....
...
rest of the URTouch_calibration.ino