nanoFramework.Iot.Device.Ft6xx6x 1.2.422

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package nanoFramework.Iot.Device.Ft6xx6x --version 1.2.422
NuGet\Install-Package nanoFramework.Iot.Device.Ft6xx6x -Version 1.2.422
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="nanoFramework.Iot.Device.Ft6xx6x" Version="1.2.422" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add nanoFramework.Iot.Device.Ft6xx6x --version 1.2.422
#r "nuget: nanoFramework.Iot.Device.Ft6xx6x, 1.2.422"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install nanoFramework.Iot.Device.Ft6xx6x as a Cake Addin
#addin nuget:?package=nanoFramework.Iot.Device.Ft6xx6x&version=1.2.422

// Install nanoFramework.Iot.Device.Ft6xx6x as a Cake Tool
#tool nuget:?package=nanoFramework.Iot.Device.Ft6xx6x&version=1.2.422

Ft6xx6x/Ft6336GU - Touch screen controller

The FT6xx6x are touch screens controllers. M5Core2 has a FT6336U. This driver supports the variants FT6236G, FT6336G , FT6336U and FT6426. The sample has been built and tested with a M5Core2.

Documentation

Usage

Important: make sure you properly setup the I2C pins especially for ESP32 before creating the I2cDevice, make sure you install the nanoFramework.Hardware.ESP32 nuget:

//////////////////////////////////////////////////////////////////////
// when connecting to an ESP32 device, need to configure the I2C GPIOs
// used for the bus
Configuration.SetPinFunction(21, DeviceFunction.I2C1_DATA);
Configuration.SetPinFunction(22, DeviceFunction.I2C1_CLOCK);

For other devices like STM32, please make sure you're using the preset pins for the I2C bus you want to use.

Note: this sample requires a M5Core2. If you want to use another device, just remove all the related nugets.

M5Core2.InitializeScreen();
I2cConnectionSettings settings = new(1, Ft6xx6x.DefaultI2cAddress);
using I2cDevice device = I2cDevice.Create(settings);
using GpioController gpio = new();

using Ft6xx6x sensor = new(device);
var ver = sensor.GetVersion();
Debug.WriteLine($"version: {ver}");
sensor.SetInterruptMode(false);
Debug.WriteLine($"Period active: {sensor.PeriodActive}");
Debug.WriteLine($"Period active in monitor mode: {sensor.MonitorModePeriodActive}");
Debug.WriteLine($"Time to enter monitor: {sensor.MonitorModeDelaySeconds} seconds");
Debug.WriteLine($"Monitor mode: {sensor.MonitorModeEnabled}");
Debug.WriteLine($"Proximity sensing: {sensor.ProximitySensingEnabled}");

gpio.OpenPin(39, PinMode.Input);
// This will enable an event on GPIO39 on falling edge when the screen if touched
gpio.RegisterCallbackForPinValueChangedEvent(39, PinEventTypes.Falling, TouchInterrupCallback);

while (true)
{
    Thread.Sleep(20);
}

void TouchInterrupCallback(object sender, PinValueChangedEventArgs pinValueChangedEventArgs)
{
    Debug.WriteLine("Touch interrupt");
    var points = sensor.GetNumberPoints();
    if (points == 1)
    {
        var point = sensor.GetPoint(true);
                // Some controllers supports as well events, you can get access to them as well thru point.Event
        Debug.WriteLine($"ID: {point.TouchId}, X: {point.X}, Y: {point.Y}, Weight: {point.Weigth}, Misc: {point.Miscelaneous}");
    }
    else if (points == 2)
    {
        var dp = sensor.GetDoublePoints();
        Debug.WriteLine($"ID: {dp.Point1.TouchId}, X: {dp.Point1.X}, Y: {dp.Point1.Y}, Weight: {dp.Point1.Weigth}, Misc: {dp.Point1.Miscelaneous}");
        Debug.WriteLine($"ID: {dp.Point2.TouchId}, X: {dp.Point2.X}, Y: {dp.Point2.Y}, Weight: {dp.Point2.Weigth}, Misc: {dp.Point2.Miscelaneous}");
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on nanoFramework.Iot.Device.Ft6xx6x:

Package Downloads
nanoFramework.M5Core2 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package includes the nanoFramework.M5Core2 assembly for .NET nanoFramework C# projects.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on nanoFramework.Iot.Device.Ft6xx6x:

Repository Stars
nanoframework/nanoFramework.IoT.Device
📦 This repo includes .NET nanoFramework implementations for various sensors, chips, displays, hats and drivers
Version Downloads Last updated
1.2.422 1,230 11/9/2023
1.2.420 102 11/9/2023
1.2.316 1,920 5/16/2023
1.2.278 789 3/29/2023
1.2.204 3,142 12/29/2022
1.2.141 2,317 10/25/2022
1.2.82 3,597 9/14/2022
1.1.113.2032 8,074 6/23/2022
1.1.28 6,937 4/26/2022
1.1.25 737 4/25/2022
1.1.24 747 4/24/2022
1.1.23 729 4/23/2022
1.1.22 1,033 4/22/2022
1.1.21 429 4/21/2022
1.1.18 1,025 4/21/2022
1.1.17 732 4/20/2022
1.1.11 418 4/19/2022
1.1.7 1,020 4/18/2022
1.1.6 746 4/17/2022
1.1.5 754 4/16/2022
1.1.4 760 4/15/2022
1.1.1 430 4/14/2022
1.0.300 1,966 3/31/2022
1.0.21-preview.116 130 3/25/2022
1.0.21-preview.38 316 1/31/2022
1.0.21-preview.35 171 1/30/2022
1.0.21-preview.34 137 1/29/2022
1.0.21-preview.33 135 1/28/2022
1.0.21-preview.29 134 1/28/2022
1.0.21-preview.28 150 1/28/2022
1.0.21-preview.26 143 1/27/2022
1.0.21-preview.24 131 1/27/2022
1.0.21-preview.23 133 1/27/2022
1.0.21-preview.22 134 1/27/2022
1.0.21-preview.20 138 1/27/2022
1.0.21-preview.17 127 1/26/2022
1.0.21-preview.16 143 1/25/2022
1.0.21-preview.7 126 1/22/2022
1.0.21-preview.5 131 1/21/2022
1.0.21-preview.3 131 1/21/2022
1.0.21-preview.2 131 1/21/2022
1.0.21-preview.1 128 1/21/2022
1.0.20 457 1/19/2022
1.0.15 430 1/15/2022
1.0.10 285 1/11/2022
1.0.1 472 12/28/2021