KRAK LLC

Arduino Modbus connection to a C-more HMI | January 4, 2013

Using an Arduino to collect information from an array of sensors is an economical alternative to using a PLC when the data collection is not critical. In this post I will explain the basics of connecting the hardware of an Arduino to a C-More touch panel from Automation direct. I will then show a basic setting to allow MODBUS communication to work between the two devices.

Hardware you will need:

C-more touch screen: http://www.automationdirect.com/adc/Shopping/Catalog/Operator_Interfaces/C-more_Touch_Panels/C-more_Touch_Panels_(all_sizes)/EA7-S6M-R

C-more Comm cable: http://www.automationdirect.com/adc/Shopping/Catalog/Operator_Interfaces/C-more_Touch_Panels/C-more_Touch_Panel_Programming_Software_-a-_Cables/EA-2CBL

Arduino, in this case I used a Duemilanove:

http://www.nkcelectronics.com/arduino-duemilanove.html

RS232 to TTL converter:

http://www.nkcelectronics.com/RS232-to-TTL-converter-board-DTE-with-Male-DB9-33V-to-5V_p_369.html

Parts to make a rj12 to db9 connection. I actually used a serial cable cut in half and spliced into a RJ45 jack. You may want to consider a part like this:

http://www.buy.com/retail/product.asp?sku=229955393&listingid=209691315

Software you will need:

C-more programming software:

http://www.automationdirect.com/adc/Shopping/Catalog/Operator_Interfaces/C-more_Touch_Panels/C-more_Touch_Panel_Programming_Software_-a-_Cables/EA-PGMSW

The Arduino IDE, I used version 1.01. At the time of writing this 1.03 is available.

http://code.google.com/p/arduino/downloads/list

The MODBUS library that I got to work with the C-more.

http://code.google.com/p/arduino-modbus-slave/downloads/detail?name=MODBUS.zip&can=2&q=

*note this library does not work with Arduino IDE prior to the 1.00 release.

Setting up the hardware.

Create the connector to convert the db9 connection to the RJ12 connection.

http://media.nkcelectronics.com/downloads/rs232ttl_DTE_v1.1.pdf

DB9 connections required are pin 2, 3,and 5. Pin 7 and 8 will not be used.

To make the RJ45 jack as I did connect make these connections.

DB9 — RJ45

Pin 2 – B4

Pin 3 – B5

Pin 5 – B2

When plugging in the RJ12 to the RJ45, be sure to center the plug in the jack.

( of course you can create your own DB9 to DB15 cable instead )

clip_image002

http://www.automationdirect.com/static/specs/cmorecables.pdf

DB9 |–| DB15

Pin 2 – Pin 3

Pin 3 – Pin 2

Pin 5 – Pin 5

Connecting the Arduino with the RS232 to TTL DTE board

Place jumpers on the RTS and CTS connections at the top of the board. clip_image004

Then make these following connections:

Arduino |—| DTE

5V – VCC

Gnd – GND

Digital pin 0 – RX (Use a jumper wire or place a switch in the middle of this connection.)

Digital pin 1 – TX

Do not connect the RTS or CTS pins from the board to anything.

Configure the Software.

For the Arduino:

Place the MOBUS library into the Arduino IDE library. See this for more information on how to do that: http://arduino.cc/en/Guide/Libraries

You can also copy the MODBUSslave example into the example folder.

Launch the Arduino IDE.

Open the MODBUSslave example. ( from the example menu or by navigating to it in the MODBUS library folder.

Now connect to your board. Remove the jumper to the RX pin. ( or turn off the switch if you used one) This will allow the computer to communicate with the Arduino. If you forget to do this, the DTE board will interfere with the upload of the sketch.

Upload the Example to the board.

Once complete, reconnect RX to D0.

C-more setup.

In the C-more software, Start a new project for the panel you have.

Go to Setup -> Panel Manager

On the com port, select the DEV001. Now would be a good time to rename this to ARDUINO.clip_image006

Set PLC Protocol to Modicon Modbus RTU

Select direct connection

Set PLC SLAVE number to 1.

Baud Rate 9600

Parity None

Stop bit 1

Control RTS No

Require CTS No

Select RS 485 No

Byte Order High Byte, Low Byte

Word Order Low Word, High Word

Character Order in register Char1, Char2

Registers per Message 32

Coils per message 64

Register Write Function Code 06

Coil Write Function Code 05

Time out 30

Poll time 3

Click ok.

Let’s place a Numeric Display on the screen,

In the Data Display tag open the tag database to create a new tag.

Click on Add

clip_image007

Select ARDUINO for the device name, Give the tag a name like ReadOnlyRandom.

Set it to Unsigned INT 16

Select memory type 3

Enter an address of 1

Click ADD, Select the new tag Click OK. (notice that the PLC address is shown as 30001)

Click OK again to assign the tag to the display.

Save and send the project to the C-more.

Test it!

Connect the C-more to the Arduino using the com cable.

You should see LEDs on the DTE board flicker and a random number updating on the C-more screen. Congratulations, you have gotten past the biggest hurdle to getting a C-more to talk to an Arduino.

If you do not see this, check that you have RX and Digital pin 0 connected. Also try swapping the RX and TX connections.

Writing to an Arduino

Ok so now you can read from an Arduino, but how about writing to it.

Continuing with the example, let’s add a Numeric Entry in the same fashion as we did with the Numeric Display.

But this time when you add the new tag, Name it WriteableNumber with a memory type of 4 and an address of 9.

clip_image008

Save and transfer the project to the screen.

You should now see a 9 in the new entry.

Change the 9 to a different number. Now you have written to the Arduino.

To make use the register in the Arduino, update the example to use regBank.get(40009).

So in this post I covered how to setup the hardware to between a C-more touch screen HMI, and an Arduino. I also showed how to load the MODBUS library and example onto the Arduino. Lastly I showed how to configure the settings on the C-more to make use of the MODBUS RTU protocol in conjunction with the supported features of the Arduino.

The MODBUS library I used is not the only one available on the web, but it is the first one I got to work with a C-more.

Remember, when you are uploading to the Arduino, you must remove the RX connection.

In the next post, I will share a derived library that takes advantage of SoftSerial. This will allow You to connect the DTE board to Pins 2 and 3 instead of 0 and 1. There by allowing you to upload to the Arduino while remaining connected to the C-more.

Lastly I will share some methods to make it easy to read and write discrete bits using whole registers, instead of coils.

Please let me know what you think of this post. I welcome questions and feedback.

Resources:

http://code.google.com/p/arduino-modbus-slave/downloads/detail?name=MODBUS.zip&can=2&q=

http://www.nkcelectronics.com/RS232-to-TTL-converter-board-DTE-with-Male-DB9-33V-to-5V_p_369.html

http://arduino.cc/en/

http://en.wikipedia.org/wiki/Modbus

http://www.automationdirect.com/static/specs/cmorecables.pdf

http://media.nkcelectronics.com/downloads/rs232ttl_DTE_v1.1.pdf

http://forum.automationdirect.com


7 Comments »

  1. Thanks so much for your tutorial. I have several PLC’s
    including a DL260, DL05 and a Click along with a
    CmoreMicro touch screen panel. I have often thought using the touch screen and PLC along with interfacing to a micro could be useful. I do have an Aruino UNO and also a wide assortment of Atmel chips. I have been using the ICCAVR C compiler but wanted to use a Linux (Ubuntu) to develope with the Atmel. So far, unable to get AVR-GCC, CodeBlocks working. But at least I can use the Arduino IDE in Linux.
    Once again, thanks for your efforts.

    Comment by J. Lopez — January 5, 2013 @ 2:04 pm

    • You are very welcome. This tutorial was made in part because I had never worked with Modbus, let alone using it connect different devices together. I had a big learning curve of experimenting with different libraries for the Arduino. I did not have a lot of success. I am fairly certain that the replies and feed back I have had so far are a good indicator that many people have been struggling with this.

      Comment by krakllc — January 5, 2013 @ 10:43 pm

  2. Great Stuff! I was able to connect to a cmore micro prior to reading this. Any new modbus implementation for arduino you develop is really appreciated. I think more folks will see the benefits of the protocol as it becomes easier to use. Thanks.

    Comment by joncmor — January 20, 2013 @ 8:17 am

  3. Very interesting tutorial! I have been attempting to get this working with my EA7-S6M-R touch screen, but having some problems. I followed the tutorial step-by-step and cannot display any numbers.

    *

    I programmed the touch panel with C-more using the modicon modbus RTU protocol and same configuration. The test program with numerical display unsigned int 16 bit at address 30001 was uploaded successfully.

    *

    I copied the ModBus library into the arduino/libraries folder, and successfully loaded MODBUSslave to the Arduino Uno R3 using Arduino IDE 1.0.

    *

    After assembling the DTE converter I wired it to the Arduino pins 5V to VCC, GND to GND, D1 to TX, D0 to RX with a push-button switch in between RX and D0. Also added jackets to the CTS an RTS vertical headers.

    Then I connected the DB9 port of the DTE to the DB15 port of the touch panel in this fashion:

    DTE DB9 —-> TFT DB15

    Pin 2 —-> Pin 3. RXD(232C)
    Pin 3 —-> Pin 2. TXD(RS232C)
    Pin 5 —-> Pin 5. Logic GND

    *

    After completing this I tested the system together and could not display any data on the panel. I received the error PLC-010: Data size does not match, and PLC-009-different function received from PLC. Sometimes the connection times out. The DTE board does not flash at all. I adjusted the Arduino code with Serial.println(regBank.get(30001)); and it caused the TX / RX lights to flicker.

    If you could help me get this working it would be greatly appreciated. Thank you!

    Comment by Eric — February 21, 2013 @ 6:21 am

    • Eric,
      Thank you for the feed back. One little gotcha that these boards can present is that both the USB programming port, and the serial port use the same rx and tx pins. Try to unplug the USB cable from your computer after you upload the program to the Arduino. It may take the C-More a minute or two to read from the Arduino.
      This is a limitation that I now resolve with the use of soft serial that I have injected into the MODBUS libraries. I plan on sharing the updated libraries along with a post to explain how to use them. That will come as time allows.

      If that does not resolve the issue check these other points:
      1 In the sketch, be sure to run the slave method.
      2 Double check the data size matches on both ends. Casting a value to word prior to setting in the regbank may help.

      I hope this helps. Please let me know if you are able to resolve the issue with one of these suggestions.

      Comment by krakllc — February 21, 2013 @ 12:14 pm

  4. Can’t wait for your next post!

    Comment by joncmor — April 26, 2013 @ 3:49 am

  5. thanks for the info I look forward to trying it I ordered parts already have the panel now I hope I can figure out the arduino side as far as how to get numbers / etc values back and forth

    Comment by Andy — May 30, 2013 @ 8:42 pm


Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.

%d bloggers like this: