clxx.libplctag.NET 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package clxx.libplctag.NET --version 2.0.0
NuGet\Install-Package clxx.libplctag.NET -Version 2.0.0
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="clxx.libplctag.NET" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add clxx.libplctag.NET --version 2.0.0
#r "nuget: clxx.libplctag.NET, 2.0.0"
#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 clxx.libplctag.NET as a Cake Addin
#addin nuget:?package=clxx.libplctag.NET&version=2.0.0

// Install clxx.libplctag.NET as a Cake Tool
#tool nuget:?package=clxx.libplctag.NET&version=2.0.0

clx.libplctag.NET

Work in progress

This is an async high level API for libplctag.NET wrapper, it supports CLX only (Controllogix, Compactlogix). As a long time pylogix user, I wanted an easier API, and hence why I am writing this library.

API

There are two main ways to read/write a tags or arrays, both of these methods return a Response object similar to pylogix.

Response class:

public class Response<T>
{
    public string TagName { get; }
    public T Value { get; }
    public string Status { get; }

Response: SomeTag SomeValue Success

PLC instance

There are three ways to create a PLC instance:

// PLC is on default slot 0
var myPLC = new PLC("192.168.1.196");
// PLC is on a slot other than 0
var myPLC = new PLC("192.168.1.196", 2);
// PLC is an a custom path
var myPLC = new PLC("192.168.1.196", "1,0");

You can also adjust the timeout property in seconds:

myPLC.Timeout = 5;

Individual tags

The examples show boolean, but it is the same workflow for all plc types. (bool, dint, int, sint, lint, real, string)

Read:

var result = await myPLC.Read("BaseBOOL", TagType.Bool);
Console.WriteLine(result);

Response: BaseBOOL True Success

In the previous response, Response.Value = True. True is a string.

Write:

var result = await myPLC.Write("BaseBOOL", TagType.Bool, false);
Console.WriteLine(result);

Response: BaseBOOL False Success

There are also methods which return correct types, but you'll have to provide a proper plc mapper. In this case, you don't have to provide the TagType.

Read:

var result = await myPLC.ReadTag<BoolPlcMapper, bool>("BaseBOOL");
Console.WriteLine(result);

Response: BaseBOOL True Success

In the previous response, Response.Value = True. True is a boolean.

Write:

var result = await myPLC.WriteTag<BoolPlcMapper, bool>("BaseBOOL", false);
Console.WriteLine(result);

Response: BaseBOOL False Success

Read Write Entire Arrays

The library also supports reading/writing arrays, and array ranges.

Read:

var result = await myPLC.Read("BaseBOOLArray", TagType.Bool, 128);
Console.WriteLine(result);

Response: BaseBOOLArray System.String[] Success

Write:

bool[] boolArr = new bool[128];
var result = await myPLC.Write("BaseBOOLArray", TagType.Bool, boolArr, 128);
Console.WriteLine(result);

Response: BaseBOOLArray  Success

Using mappers:

Read:

var result = await myPLC.ReadTag<BoolPlcMapper, bool[]>("BaseBOOLArray", new int[] { 128 });
Console.WriteLine(result);

Response: BaseBOOLArray System.Boolean[] Success

Write:

bool[] boolArr = new bool[128];
var result = await myPLC.WriteTag<BoolPlcMapper, bool[]>("BaseBOOLArray", alist.ToArray(),new int[] { 128 });
Console.WriteLine(result);

Response: BaseBOOLArray  Success

Read Write Array ranges

As of now the Read ranges is nothing but a syntactic sugar function. A full array read happens, then I extract whatever range was requested. The Response.Value is a string array.

Read range, start index [0], getting 10 items:

var result = await myPLC.Read("BaseBOOLArray[0]", TagType.Bool, 128, 10);
Console.WriteLine(result);

Response: BaseBOOLArray[0] System.String[] Success

Console.WriteLine(result.Value.Length);

10

Writing ranges to arrays is using an optimized function internally by only writing the bytes necessary for the range needed.

Write range, start index [0], writing 10 items:

bool[] boolArr = new bool[10];
var result = await myPLC.Write("BaseBOOLArray[0]", TagType.Bool, boolArr, 128);
Console.WriteLine(result);

Response: BaseBOOLArray  Success
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
2.0.2 319 12/16/2023
2.0.1 731 6/14/2022
2.0.0 682 6/21/2021