Click here to Skip to main content
15,888,733 members
Articles / Web Development / HTML
Tip/Trick

OMRON PLC TCP Interface

Rate me:
Please Sign up or sign in to vote.
4.91/5 (36 votes)
14 Oct 2016CPOL3 min read 393.3K   18K   35   164
Base class for OMRON PLC communications

mcONROM ScreenShot

Introduction

In our company, we use OMRON PLC to manage our production machines. Initially, we had a SCADA application to obtain data stored in the PLC. The truth is that I wanted a simple solution that allows me to create Windows services to get data from PLC, instead of using a dedicated PC for this task. I tried CX-Server Lite, but its components require a WindowsForm application, and cannot be used in Windows services. This is the reason why I decided to write this class.

The library consists of a main class, a transport layer class, currently for TCP, and one class to manage the 'FINS' orders via TCP. The transport and orders layer are based on two interfaces, ITransport, IFINSCommand. This will easily allow to add more functionality (UDP, Serial, ...).

Background

This class uses synchronous sockets to communicate with the PLC. Keep in mind that a communication issue could block the current thread. I think it is advisable to use a secondary thread to avoid this problem. As you can see, this class does not launch message box windows neither console messages, most functions return bool values and you should use .LastError() function to check the result.

The current version implements 3 PLC messages:

  • [1,1] MEMORY AREA READ finsMemoryAreaRead()
  • [1,2] MEMORY AREA WRITE finsMemoryAreaWrite()
  • [5,1] CONTROLLER DATA READ finsConnectionDataRead()

And some methods to deal with DM area:

  • ReadDM()
  • ReadDMs()
  • WriteDM()
  • ClearDMs()

And two new methods to deal with CIO Bit area:

  • ReadCIOBit()
  • WriteCIOBit()

Take a look at tcpFINSCommand.cs and you'll notice that it's really easy to add new methods for another PLC message.

Using the Code

First and foremost, add a reference for the mc.Omron.vx.xx.dll to your project.

Add one mcOMRON.OmronPLC object to your project and initialize it using one transport type (only TCP is available by now):

C#
public partial class TestPLC : Form
{
    //
    // plc class
    //
    mcOMRON.OmronPLC <var>plc;

    /// <summary>
    /// constructor
    /// </summary>
    public TestPLC()
    {
        InitializeComponent();

        // initialize a new plc object with tcp transport layer
        //
        this.plc = new mcOMRON.OmronPLC(mcOMRON.TransportType.Tcp);
    }
...

Before you Connect() with the PLC, you must set up the TCP connection parameters. As the OmronPlc uses the interface class, you must cast it to the corresponding tcpFINSCommand class and then call SetTCPParams method.

C#
/// <summary>
/// try to connect to the plc
/// </summary>
private void Connect()
{
    if (ip.Text == "") return;
    if (port.Text == "") return;

    try
    {
        // set ip:port for command layer, may cast to tcpFINSCommand to set ip and port
        //
        mcOMRON.tcpFINSCommand tcpCommand = ((mcOMRON.tcpFINSCommand)plc.FinsCommand);
        tcpCommand.SetTCPParams(IPAddress.Parse(ip.Text), Convert.ToInt32(port.Text));
                
        // connection
        //
        if (! plc.Connect())
        {
            throw new Exception(plc.LastError);
        }
...

By default, this class uses Byte, UInt16 and UInt32 variables, and arrays are passed by ref.

C#
/// <summary>
/// read a single DM
/// </summary>
private void ReadDM()
{
    if (dm_position.Text == "") return;
    UInt16 dmval=0;
    try
    {
        if (! plc.ReadDM(Convert.ToUInt16(dm_position.Text), ref dmval))
        {
            throw new Exception(plc.LastError);
        }

        dm_value.Text = dmval.ToString();
        
        dialog.Text = plc.LastDialog("READ DM");
        dialog.AppendText("DM VALUE: " + dmval.ToString());
    }
    catch (Exception ex)
    {
        MessageBox.Show("ReadDM() Error: " + ex.Message);
    }
}

As you can see in the screenshot, I've added a debug functionality. If you call LastDialog() after sending any command, you can get the dialog between PC and PLC in hexadecimal format.

Points of Interest

Would you like to add a handler for new PLC message?

Let me show you the actual method: MemoryAreaWrite()

C#
/// <summary>
/// MEMORY AREA WRITE
/// </summary>
/// <param name="area"></param>
/// <param name="address"></param>
/// <param name="count"></param>
/// <param name="data"></param>
/// <returns></returns>
public bool MemoryAreaWrite(MemoryArea area, UInt16 address, UInt16 count, ref Byte [] data)
{
    try
    {
        // command & subcomand
        //
        this.MC = 0x01;
        this.SC = 0x02;

        // memory area
        //
        this.cmdFins[F_PARAM] = (Byte)area;
        
        // address
        //
        this.cmdFins[F_PARAM + 1] = (Byte)((address >> 8) & 0xFF);
        this.cmdFins[F_PARAM + 2] = (Byte)(address & 0xFF);

        // special flag
        //
        this.cmdFins[F_PARAM + 3] = (Byte)(0);

        // count items
        //
        this.cmdFins[F_PARAM + 4] = (Byte)((count >> 8) & 0xFF);
        this.cmdFins[F_PARAM + 5] = (Byte)(count & 0xFF);

        // set command length (12 + additional params)
        //
        this.finsCommandLen = 18;

        // send the message
        //
        return FrameSend(data);
    }
    catch (Exception ex)
    {
        this._lastError = ex.Message;
        return false;
    }
}

You must set Main code and Subcode properties and use cmdFins[] array to set additional parameters. Finally, set the (finsCommandLen) command length and call FrameSend() to send the message.

History

October 2016

  • There was a bug in MemoryArea values, I was using wrong values.
  • I've added specific funtions for signed values.

November 2016

  • I've added some functions in BTool class to work with Bits (IsBitSet, SetBit, UnsetBit).
  • I've added two methods to access CIO Bit area.

This is it for now.

Please feel free to contact me if you have any questions about this class.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer Vilardell Purti Group
Spain Spain
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
AnswerRe: Getting Response code error Pin
Joan Magnet23-Sep-21 22:24
Joan Magnet23-Sep-21 22:24 
GeneralRe: Getting Response code error Pin
Member 1472936123-Sep-21 22:28
Member 1472936123-Sep-21 22:28 
GeneralRe: Getting Response code error Pin
Joan Magnet23-Sep-21 22:36
Joan Magnet23-Sep-21 22:36 
GeneralRe: Getting Response code error Pin
Member 1472936123-Sep-21 23:55
Member 1472936123-Sep-21 23:55 
GeneralRe: Getting Response code error Pin
daniel-thoss2-Nov-21 3:01
daniel-thoss2-Nov-21 3:01 
GeneralRe: Getting Response code error Pin
Gabriel Espaso30-Jan-24 9:19
professionalGabriel Espaso30-Jan-24 9:19 
GeneralRe: Getting Response code error Pin
Member 1472936127-Sep-21 0:06
Member 1472936127-Sep-21 0:06 
GeneralRe: Getting Response code error Pin
Joan Magnet28-Sep-21 6:07
Joan Magnet28-Sep-21 6:07 
GeneralRe: Getting Response code error Pin
Member 1472936129-Sep-21 19:25
Member 1472936129-Sep-21 19:25 
QuestionError NADS 32 Pin
Foglio7713-Sep-21 3:11
Foglio7713-Sep-21 3:11 
AnswerRe: Error NADS 32 Pin
Joan Magnet13-Sep-21 3:50
Joan Magnet13-Sep-21 3:50 
GeneralRe: Error NADS 32 Pin
Foglio7713-Sep-21 5:01
Foglio7713-Sep-21 5:01 
QuestionReturned string value Pin
Scott Fitzpatrick 202127-Aug-21 2:07
Scott Fitzpatrick 202127-Aug-21 2:07 
AnswerRe: Returned string value Pin
Joan Magnet29-Aug-21 6:47
Joan Magnet29-Aug-21 6:47 
SuggestionRe: Returned string value Pin
daniel-thoss2-Nov-21 2:54
daniel-thoss2-Nov-21 2:54 
QuestionDM values morethan Unit16 Pin
Kim Ivan Bay-an4-Oct-20 22:06
Kim Ivan Bay-an4-Oct-20 22:06 
QuestionRead/Write cycle takes a long time Pin
heikkis30-Sep-20 6:06
heikkis30-Sep-20 6:06 
AnswerRe: Read/Write cycle takes a long time Pin
Member 147293613-Oct-21 19:37
Member 147293613-Oct-21 19:37 
GeneralRe: Read/Write cycle takes a long time Pin
Joan Magnet3-Oct-21 20:44
Joan Magnet3-Oct-21 20:44 
GeneralRe: Read/Write cycle takes a long time Pin
Member 147293614-Oct-21 1:00
Member 147293614-Oct-21 1:00 
QuestionCan't Read value over 5 digit Pin
ALEDDELVIN16-Jul-20 16:41
ALEDDELVIN16-Jul-20 16:41 
QuestionProblem when readin/writing Pin
Member 131693601-Jun-20 10:26
Member 131693601-Jun-20 10:26 
AnswerRe: Problem when reading/writing Pin
Member 131693602-Jun-20 10:36
Member 131693602-Jun-20 10:36 
QuestionIs There a method to use NJ Tags instead of addresses? Pin
Foglio772-Mar-20 22:39
Foglio772-Mar-20 22:39 
AnswerRe: Is There a method to use NJ Tags instead of addresses? Pin
Joan Magnet25-Mar-20 3:10
Joan Magnet25-Mar-20 3:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.