Hello,
I have a Fez Raptor which I got over the Thanksgiving Day Feztivities which I am very happy with… I purchased a DisplayTE35 module a couple weeks ago to bring some visualization to a program I am in the middle of writing. However the touch capability does not seems to work. I have tried several cables and several variation applications that uses the touch. Has anyone encountered this and what was you resolution to it?
I am on Windows 8.1, VS 2013 Community Edition, SDK R5.
using System;
using System.Collections;
using System.Threading;
using Microsoft.SPOT;
using Microsoft.SPOT.Presentation;
using Microsoft.SPOT.Presentation.Controls;
using Microsoft.SPOT.Presentation.Media;
using Microsoft.SPOT.Presentation.Shapes;
using Microsoft.SPOT.Touch;
using Gadgeteer.Networking;
using GT = Gadgeteer;
using GTM = Gadgeteer.Modules;
using Gadgeteer.Modules.GHIElectronics;
using GHI.Glide;
namespace Raptilean
{
    public partial class Program
    {
        // This method is run when the mainboard is powered up or reset.   
        void ProgramStarted()
        {
            GlideTouch.Initialize();
            var cal = new GHI.Glide.Display.CalibrationWindow(false, false);
            cal.CloseEvent += cal_CloseEvent;
            Glide.MainWindow = cal;
        }
        void cal_CloseEvent(object sender)
        {
            //Do something here
        }
    }
}