Brainboxes.IO 2.0.0

dotnet add package Brainboxes.IO --version 2.0.0
                    
NuGet\Install-Package Brainboxes.IO -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="Brainboxes.IO" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Brainboxes.IO" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Brainboxes.IO" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Brainboxes.IO --version 2.0.0
                    
#r "nuget: Brainboxes.IO, 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.
#:package Brainboxes.IO@2.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Brainboxes.IO&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Brainboxes.IO&version=2.0.0
                    
Install as a Cake Tool

Brainboxes.IO

Official .NET library for monitoring and controlling Brainboxes Ethernet-attached data acquisition and control devices.

Getting Started

using Brainboxes.IO;

using (var device = EDDevice.Create("192.168.0.100"))
{
    device.Connect();

    // Set digital output 0 high
    device.Outputs[0].Value = 1;

    // Read all digital inputs
    foreach (var input in device.Inputs)
    {
        Console.WriteLine($"Input {input.IONumber}: {input.Value}");
    }
}

Monitor Input Changes

using (var device = EDDevice.Create("192.168.0.100"))
{
    device.Connect();

    device.IOLineStateChanged += (sender, e) =>
    {
        Console.WriteLine($"Line {e.Line} changed to {e.State}");
    };

    Console.ReadKey();
}

Supported Devices

Series Devices Description
ED ED-204, ED-516, ED-527, ED-549, ED-560, ED-582, ED-588 Ethernet Remote IO (digital and analog)
ES ES-246, ES-257, ES-446, ES-457 Ethernet to Serial
BB BB-400 Industrial Raspberry Pi with I/O

Features

  • Two protocols: ASCII (DCON) on port 9500 and Modbus TCP on port 502
  • Digital I/O: Read inputs, control outputs, count transitions
  • Analog I/O: Read analog inputs, set analog outputs, configurable data formats
  • Event-driven: Subscribe to input state changes and device status events
  • Serial communication: Send and receive data through Ethernet-to-serial converters
  • Thread-safe: Built-in locking for concurrent access
  • Connection monitoring: Automatic detection of connection loss and device availability

Target Frameworks

Framework Platform
.NET 10 Windows, Linux, macOS
.NET Standard 2.1 Any compatible runtime
.NET Standard 2.0 Any compatible runtime
.NET Framework 4.8 Windows

License

Unlicense (public domain)

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
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 Brainboxes.IO:

Package Downloads
Omletec.Abax10.IoT.BB400Client

The Abax10 BB400 client service is a class library used to capture and publish telemetry data to the Abax10 platform

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.0 292 2/9/2026
1.7.2 5,862 12/13/2024
1.7.0 2,926 5/13/2024
1.6.7 216 4/29/2024
1.6.6 13,524 2/15/2022
1.6.5 203 2/9/2022
1.6.0 2,115 10/27/2021
1.5.1.1 2,188 9/28/2021
1.5.1 4,220 3/2/2020
1.5.0.9 1,456 11/10/2019
1.5.0.7 3,970 3/16/2019
1.5.0.6 1,689 9/21/2018
Loading failed