Skip to content
| Marketplace
Sign in
Visual Studio>Controls>Modbus/TCP Client Driver for .NET 8.0, 7.0, 6.0, 5.0 HMI/SCADA Apps
Modbus/TCP Client Driver for .NET 8.0, 7.0, 6.0, 5.0 HMI/SCADA Apps

Modbus/TCP Client Driver for .NET 8.0, 7.0, 6.0, 5.0 HMI/SCADA Apps

Automated Solutions, Inc

automatedsolutions.com
|
1,178 installs
| (0) | Free Trial
Modbus/TCP client communications driver for connectivity to Modbus/TCP server devices. Use Visual Studio to build .NET 8.0, 7.0, 6.0, 5.0 & Core 3.1+ HMI, SCADA, etc. apps that run on Windows, Linux & Android.
Download

ASComm IoT - Modbus/TCP Client Communications Driver for .NET 8.0, 7.0, 6.0, 5.0, Core, and .NET Framework 4.6.1+ Developers.

Automated Solutions ASComm IoT is a fully managed .NET communications library that allows you to read and write tags and registers on programmable logic controllers (PLC), programmable automation controllers (PAC), and instrumentation.

Use Visual Basic, C# and C++ to create HMI, SCADA, data logging, and Industrial IoT applications targeting .NET 8.0, 7.0, 6.0, 5.0 and .NET Core 3.1+, .NET Framework 4.6.1+, Universal Windows Platform (UWP), Desktop, ASP .NET Core, service that run on Windows 11, Windows 10, Linux and Android.

Features & Benefits

Modbus/TCP Client Driver

  • Does not require Schneider or third-party drivers.
  • Does not require OPC
  • Register optimization to minimize transactions
  • Extremely high performance - capable of < 5 mSec transaction time

General

  • Runs on Windows 11, Windows 10, Linux, and Android
  • Runs on Windows 10 IoT Core devices like Raspberry Pi
  • Can be used to power your IoT edge devices
  • 100% managed code
  • .NET 8.0, 7.0, 6.0, 5.0 compatible
  • .NET Core 3.1 and higher compatible
  • .NET Framework 4.6.1 and higher compatible
  • .NET Standard 2.0 compatible
  • Visual Studio.NET 2017, 2019 & 2022 Compatible
  • Supported Project types include Desktop, UWP, Web, WPF, console, worker service and Windows service apps
  • Easily connect to your factory floor systems
  • All drivers included in single component, providing consistent API regardless of target device brand or model
  • Data items can be added to groups, which can be configured for timed polling
  • Multiple groups can be created per device to accommodate multiple update rates
  • Supports data change and error events
  • Built-in serialization allows you to save/load your entire communications configuration with a single line of code
  • Single component runs multiple concurrent protocols
  • Object inheritance provides consistent user interface, regardless of underlying communications protocol

Documentation / Examples

  • Includes .NET 6.0, .NET Core, .NET Framework, Android and UWP example applications with associated C# and VB source code
  • Extensive Help documentation contains topics for getting started, driver specific functionality, design considerations, licensing, etc.
  • Extensive API documentation for software developers

License

  • Non-commercial and Commercial licensing available
  • Licensing can be accomplished via the Internet, telephone, or email
  • No Hardware Keys - software licensing mechanism is simple and intuitive
  • Licenses for each driver can be purchased individually, so you only pay for the drivers that you need
  • Allows for unattended license transfer across machines
  • Immediate Internet delivery and online license activation.
  • No runtime fees or keys for non-commercial applications.

Drivers

Drivers available for the following brands/models

  • Allen Bradley ControlLogix, CompactLogix, GuardLogix, Micro800 via Ethernet
  • Allen-Bradley PLC-5, SLC 500, MicroLogix via Ethernet
  • GE, Emerson - Series 90, VersaMax, PACSystems RXi, RX3i, RX7i via Ethernet
  • Modbus/TCP Client via Ethernet
  • Siemens S7-1500, 1200, 400, 300, 200 via Ethernet

Simple Code Examples

C#

// Declare using statement 
using MBClient = AutomatedSolutions.ASCommStd.MB.Client;

// This function creates all required ASComm objects sets initial properties, performs a write and read, then disposes the ASComm objects  
void SimpleReadAndWrite()  
{  
  // Create a Channel  
  MBClient.Net.Channel myChannel = new MBClient.Net.Channel();  

  // Create a device at IP Address 192.168.0.171  
  MBClient.Device myDevice = new MBClient.Device("192.168.0.171");  
  // device uses Modicon 5-digit addressing  
  myDevice.AddressType = AddressType.MODICON_5_DIGIT;  

  // Create Group with active flag set to false (no background scanning).   
  MBClient.Group myGroup = new MBClient.Group(false, 500);  

  // Create an item that represents one holding register at address 40001  
  MBClient.Item myItem = new MBClient.Item("40001", 1, TagType.HOLDING_REGISTER);  

  // Add device to channel  
  myChannel.Devices.Add(myDevice);  
  // Add group to device  
  myDevice.Groups.Add(myGroup);  
  // Add item to group  
  myGroup.Items.Add(myItem);  

  //Write one tag  
  try  
  {  
    // Perform a write with value from text box  
    myItem.Write(textBoxItemWrite.Text);  
  }  
  catch (Exception ex)  
  {  
    // Error occurred, implement error handler  
  }  

  // Read one tag  
  try  
  {  
    // Perform a read, save value to text box  
    myItem.Read();  
    textBoxItemRead.Text = myItem.Values[0].ToString();  
  }  
  catch (Exception ex)  
  {  
    // Error occurred, implement error handler  
  }  

  // Dispose channel at application shutdown  
  myChannel.Dispose();  
}

VB

' Declare imports statement  
Imports MBClient = AutomatedSolutions.ASCommStd.MB.Client

' This function creates all required ASComm objects, sets initial properties, performs a write and read, then disposes the ASComm objects  
Private Sub SimpleReadAndWrite()  
  ' Create a Channel  
  Dim myChannel As New MBClient.Net.Channel()  

  ' Create a Device at IP Address 192.168.0.171  
  Dim myDevice As New MBClient.Device("192.168.0.171")  
  ' device uses Modicon 5-digit addressing  
  myDevice.AddressType = AddressType.MODICON_5_DIGIT  

  ' Create Group with active flag set to false (no background scanning).   
  Dim myGroup As New MBClient.Group(False, 500)  

  ' Create an item that represents one holding register at address 40001  
  Dim myItem As New MBClient.Item("40001", 1, TagType.HOLDING_REGISTER)  

  ' Add device to channel  
  myChannel.Devices.Add(myDevice)  
  ' Add group to device  
  myDevice.Groups.Add(myGroup)  
  ' Add item to group  
  myGroup.Items.Add(myItem)  

  'Write one tag  
  Try  
    ' Perform a write with value from text box  
    myItem.Write(textBoxItemWrite.Text)  
  Catch ex As Exception  
    ' Error occurred, implement error handler  
  End Try  

  ' Read one tag  
  Try  
    ' Perform a read, save value to text box  
    myItem.Read()  
    textBoxItemRead.Text = myItem.Values(0).ToString()  
  Catch ex As Exception  
    ' Error occurred, implement error handler  
  End Try  

  ' Dispose channel at application shutdown  
  myChannel.Dispose()  
End Sub

Related Links

Automated Solutions Website

ASComm IoT Product Page

MB/TCP Client Driver Page

Download 30-day Trial

Revision History

License Agreement

Support Page

Contact

707-578-5882  voice

sales@automatedsolutions.com

https://www.automatedsolutions.com

Company

Automated Solutions develops and sells software products for industrial and process automation. We also provide custom development services using our products for organizations that need custom HMI, SCADA, interface, or logging applications, but are short on development resources.

Our software products do not target specific industries. They are used in diverse industries such as agriculture, automotive, mining, gas, building, construction, food & dairy, beer, wine & spirits, textile, mills, and petroleum. You can even find our software on submarines, in amusement parks, and Internet telescopes.

Founded in 1994, over 3300 companies now use our software products globally to build high-performance, cost-effective HMI, SCADA, machine control, and data logging applications.

Other products and companies referred to herein are trademarks or registered trademarks of their respective companies or mark holders.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft