Hallo,
I have a FEZ Cobra III over a GXP - Header Modul to a display TE35 connected and implemented the example: https://www.ghielectronics.com/docs/315/glide . The button will be shown on the display, but unfortunately the touch does not work. The same display works at a Cobra2 with Gadgeteer and glide without problems. Also I’ve replaced the GXP - Modul already unfortunately without success. Must I netmf project still more assemblies referencing?
FEZConfig
Loader (TinyBooter) version information:
4.3.8.1 on this computer.
4.3.8.1 on this device.
The Loader (TinyBooter) is up to date. <<<
Firmware (TinyCLR) version information:
4.3.8.1 on this computer.
4.3.8.1 on this device.
The Firmware (TinyCLR) is up to date. <<<
LCD Configuration over FEZ Config
Sourcecode
Option Explicit On
Option Strict On
Imports System
Imports System.Threading
Imports GHI.Glide
Imports GHI.Glide.UI
Imports GHI.Glide.Display
Imports Microsoft.SPOT
Namespace TestCobra3
Public Module Module1
Private WithEvents btn As GHI.Glide.UI.Button
Dim MyWindows As Window
Sub Main()
Call StartTest()
Thread.Sleep(Timeout.Infinite)
End Sub
Private Sub StartTest()
MyWindows = GlideLoader.LoadWindow(Resources.GetString(Resources.StringResources.TestWindow))
GlideTouch.Initialize()
btn = TryCast(MyWindows.GetChildByName("btn"), Button)
Glide.MainWindow = MyWindows
End Sub
Private Sub btn_TapEvent(sender As Object) Handles btn.TapEvent
Debug.Print("Button tapped.")
End Sub
End Module
End Namespace
Thank you for all the information