Skip to content

Overview

Sample Projects

Applications (snaps) for ctrlX CORE targets can be written in several programming language or even as shell scripts.

For creating your own applications, the ctrlX AUTOMATION SDK offers sample projects that can be used as source of code snippets as templates. The sample projects are saved in sub folders according to their programming language or their type.

Here an overview of the sample project types and their subfolders.

Important

Run the install script listet in column three once before you are working with one or more sample projects. These scripts are located in /home/boschrexroth/scripts. See also install-scripts.

Sample Project Type Link to Projects Install Script
C/C++ samples-cpp/README.md ~/scripts/install-cpp-aarch64-libs.sh
Go samples-go/README.md ~/scripts/install-go.sh
Python samples-python/README.md
.NET samples-net/README.md ~/scripts/install-dotnet-sdk.sh
ANGULAR samples-angular/README.md
Node.js samples-node/README.md ~/scripts/install-nodejs-npm.sh
Shell scripting samples-sh/README.md
Snap samples-snap/README.md
IEC 61131-3 samples-iec61131/README.md

Building Snaps

Important

All project folders are containing these scripts to build snaps:

  • build-snap-amd64.sh: Build an amd64 snap for a ctrlX COREvirtual.
  • build-snap-arm64.sh: Build an arm64 (aarch64) snap for a ctrlX CORE.

You can call these scripts from the command line:

./build-snap-amd64.sh
./build-snap-arm64.sh

or from Visual Studio Code:

  • Select main menu item Terminal --> Run Build Task
  • Select build snap amd64 for building a snap for a ctrlX COREvirtual
  • Select build snap arm64 for building a snap for a ctrlX CORE.

At the end of the build process the snap file should be available in the root folder of your project.

See below for further Run Build Task items.

Installing a Snap Manually

Right click the snap file in the Visual Studio Code EXPLORER and select 'Download'. Visual Studio Code stores it in your home directory on your host computer. For Windows 10 this is %USERPROFILE%, in Linux this is: ~/

Start a Web browser, login into your ctrlX CORE:

  • Select Settings - Apps
  • Switch to Service Mode
  • Click Install from file
  • Select the downloaded file
  • Switch to Operation Mode

Building and Installing a Snap Automated by Script

Using the bash script build-upload-log-snap.sh in the ctrlX AUTOMATION SDK folder scripts/ You can create a snap file, upload it, install it on a ctrlX CORE and view the log output.

The script can be started either from the command line or with the additional Run Build Task items of the Visual Studio Code IDE.

Starting Script from the Command Line

Change into a sample project folder (e.g. samples-cpp/datalayer.client) and enter

 ../../scripts/build-upload-log-snap.sh -help

All parameters and their default values are listed.

E.g. to build and install a snap for a ctrlX COREvirtual with Network Adapter enter

../../scripts/build-upload-log-snap.sh -NA

But we recommend calling this script from Visual Studio Code. See next chapter.

Starting Script as Visual Studio Build Task

Additional to the two Build Tasks mentioned above there are further tasks:

  • Build upload snap - ctrlX COREvirtual Network Adapter
  • Build upload snap - ctrlX COREvirtual Port Forwarding
  • Build upload log snap - ctrlX CORE 192.168.1.1
  • Build upload snap

The first three tasks are calling the script with the parameter set needed for the according destination. There is sno need to select further parameters.

If you are choosing the last item each parameter is prompted.

Feel free to add more tasks or adapt the existing ones.