nanoFramework.Iot.Device.Chs6540
1.0.16
Prefix Reserved
nanoFramework.Iot.Device.Chsc6540
Additional DetailsTypo in package name. Package no longer maintained.
dotnet add package nanoFramework.Iot.Device.Chs6540 --version 1.0.16
NuGet\Install-Package nanoFramework.Iot.Device.Chs6540 -Version 1.0.16
<PackageReference Include="nanoFramework.Iot.Device.Chs6540" Version="1.0.16" />
paket add nanoFramework.Iot.Device.Chs6540 --version 1.0.16
#r "nuget: nanoFramework.Iot.Device.Chs6540, 1.0.16"
// Install nanoFramework.Iot.Device.Chs6540 as a Cake Addin #addin nuget:?package=nanoFramework.Iot.Device.Chs6540&version=1.0.16 // Install nanoFramework.Iot.Device.Chs6540 as a Cake Tool #tool nuget:?package=nanoFramework.Iot.Device.Chs6540&version=1.0.16
Chs6540 - Touch screen controller
The Chs6540 is the touch screen controllers of the M5Stack Tough.
Documentation
- More information on the touch controller, unfortunately, the datasheet isn't available.
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 M5Stack Tough. If you want to use another device, just remove all the related nugets.
using System.Device.Gpio;
using System.Device.I2c;
using System.Diagnostics;
using System.Threading;
using Iot.Device.Chs6540;
using nanoFramework.Hardware.Esp32;
//////////////////////////////////////////////////////////////////////
// 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);
I2cConnectionSettings settings = new(1, Chs6540.DefaultI2cAddress);
using I2cDevice device = I2cDevice.Create(settings);
using GpioController gpio = new();
using Chs6540 sensor = new(device);
sensor.SetInterruptMode(true);
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
-
- nanoFramework.CoreLibrary (>= 1.12.0)
- nanoFramework.System.Device.I2c (>= 1.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|