hero
Home About Hardware Guide

Categories

Archive

July 2024

June 2024

May 2024

April 2024

March 2024

February 2024

January 2024

December 2023

November 2023

October 2023

September 2023

August 2023

July 2023

June 2023

May 2023

April 2023

March 2023

February 2023

January 2023

December 2022

back to home

Beckhoff on my mind - Part 2 - Writing back to TwinCAT PLCs

26 June 2024 • 2 mins

Welcome to the second part of our Beckhoff TwinCAT series. In Part 1 - Connecting TwinCAT PLCs, we discussed the basics of connecting TwinCAT and Peakboard. In today’s article, we will talk about writing back to TwinCAT. Compared to the relatively tricky router / connection task from the first part, writing back is fairly easy.

The TwinCAT program

In this article, we will build a calculator. Here’s how the calculator works:

  1. The user enters two numbers into the Peakboard app.
  2. Peakboard sends the numbers to a TwinCAT PLC.
  3. The TwinCAT PLC sums up the two numbers and writes the result into a third variable.
  4. The Peakboard app reads from the third variable to get back the result.

The following screenshot shows the TwinCAT program: three integer variables along with exactly one line of actual code to sum them up.

image

The Peakboard side

Let’s switch to Peakboard Designer. We set up the data source and can easily access the three variables. Although we only need iResult, we select all of them for clarity and logging purposes.

image

The following screenshot shows the canvas. We have three text controls: two for input and one for the result. The result text box is directly bound to the corresponding column in the data source. The table element below is only necessary for checking how the raw data behaves. It’s not actually necessary for our example. All the magic happens behind the Calculate button.

image

Now, let’s look at the process that does the actual writing. We use a Beckhoff Write variable Building Block. It takes in three arguments:

  • The connection.
  • The destination variable name.
  • The actual value, which is fed directly from the text box.

image

If you prefer to use LUA, here’s the same function written as raw LUA statements:

connections.getfromid('fgl8+PJgAZEtwwxF/W6yR7VW7aI=').writevariable('MAIN', 'iInput1', screens['Screen1'].txtInput1.text)
connections.getfromid('fgl8+PJgAZEtwwxF/W6yR7VW7aI=').writevariable('MAIN', 'iInput2', screens['Screen1'].txtInput2.text)

Conclusion and result

The following GIF shows the app during runtime. The user input is sent to TwinCAT, calculated, and then presented the next time the data source is refreshed.

image

Beckhoff on my mind - Part 2 - Writing back to TwinCAT PLCs

Newsletter

Want to get notified when a new article is published? Sign up below!