Click here to Skip to main content
15,886,362 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 391.2K   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

 
QuestionError Read PLC Omron Sysmac CP1h Pin
gimenezfrg15-Oct-18 17:36
gimenezfrg15-Oct-18 17:36 
QuestionOnly DM and CIO Bit able to read? Pin
Member 1289531220-Jun-18 22:04
Member 1289531220-Jun-18 22:04 
Questionmc.Omron.vx.xx.dll code Pin
KenkoJones14-Jun-18 9:18
KenkoJones14-Jun-18 9:18 
AnswerRe: mc.Omron.vx.xx.dll code Pin
Joan Magnet25-Mar-20 3:12
Joan Magnet25-Mar-20 3:12 
QuestionRegarding implementing event Pin
Member 903162611-Jun-18 19:46
Member 903162611-Jun-18 19:46 
QuestionJoan excellent example. Pin
Member 114541036-Jun-18 10:15
Member 114541036-Jun-18 10:15 
QuestionHow to write 1word ( 4byte) to OMRON PLC using FINS command Pin
Member 1315767029-May-18 19:14
Member 1315767029-May-18 19:14 
QuestionIs it possible to read Extended Memory addresses Pin
Member 1382294511-May-18 8:55
Member 1382294511-May-18 8:55 
Thanks for you share, I just found it I plan on testing it very soon, I was just wondering if there is a way to read EMx memory registers.
QuestionC++ Interface class Pin
sysinteng28-Apr-18 5:07
sysinteng28-Apr-18 5:07 
QuestionDoesn't work for me. Any Advice for me ? Pin
Gabriele Pettenò11-Apr-18 22:03
Gabriele Pettenò11-Apr-18 22:03 
AnswerRe: Doesn't work for me. Any Advice for me ? Pin
Joan Magnet19-Apr-18 4:57
Joan Magnet19-Apr-18 4:57 
QuestionCX Simulator Pin
banczazsolt20-Dec-17 0:49
banczazsolt20-Dec-17 0:49 
AnswerRe: CX Simulator Pin
Joan Magnet18-Apr-18 21:22
Joan Magnet18-Apr-18 21:22 
SuggestionThanks you code Pin
Member 1347160717-Oct-17 22:55
Member 1347160717-Oct-17 22:55 
GeneralRe: Thanks you code Pin
Joan Magnet18-Apr-18 21:23
Joan Magnet18-Apr-18 21:23 
QuestionClass to Float and Text from Byte Pin
Victor Alfonso Hdz17-Aug-17 12:50
Victor Alfonso Hdz17-Aug-17 12:50 
AnswerRe: Class to Float and Text from Byte Pin
Joan Magnet18-Apr-18 21:25
Joan Magnet18-Apr-18 21:25 
QuestionUWP Apps Pin
Mustafa Uludag1-Jul-17 8:48
Mustafa Uludag1-Jul-17 8:48 
AnswerRe: UWP Apps Pin
Joan Magnet18-Apr-18 21:27
Joan Magnet18-Apr-18 21:27 
GeneralRe: UWP Apps Pin
Mustafa Uludag24-Apr-18 2:32
Mustafa Uludag24-Apr-18 2:32 
GeneralRe: UWP Apps Pin
Joan Magnet13-May-18 23:00
Joan Magnet13-May-18 23:00 
QuestionI'm tryed read the value of variable of D1 of CX programmer, but when the value > 9999, returned 0. How i can worked with Int32 or UInt32 of var "ref"? Pin
Member 1226472729-Jun-17 15:42
Member 1226472729-Jun-17 15:42 
AnswerRe: I'm tryed read the value of variable of D1 of CX programmer, but when the value > 9999, returned 0. How i can worked with Int32 or UInt32 of var "ref"? Pin
Joan Magnet19-Apr-18 4:55
Joan Magnet19-Apr-18 4:55 
QuestionReceive variables and their clp values Pin
Member 1226472729-Jun-17 0:42
Member 1226472729-Jun-17 0:42 
QuestionProblem with connecting to Omron PLC trough Ethernet card CS1W-ETN11 Pin
Member 1281357323-May-17 3:32
Member 1281357323-May-17 3:32 

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.