DocsArrow - Elements Webflow Library - BRIX Templates
Publish and Upload .NET console application

Publish and Upload .NET console application

Instructions for publishing, uploading and running your console application on Parallax Control Hardware

Create new console application

To write your code in C#, simply create a new console application for .NET 8.0.

Install ParallaxControlSystemLibrary.dll

The Library will give you access to the hardware and touch-panel api.

Download the package directly from your terminal :

dotnet add package ParallaxControlSystemLibrary

Or Install directly from your IDE's nuget section by searching for:

ParallaxControlSystemLibrary

Initialize Worker Service

To ensure your console application remains running, you must implement the `SystemInitialize()` function into your program. This initializes a worker service, which allows the console application to continue running in the background. The `SystemInitialize()` function also acts as the program's starting point.

Add this snippet to your `Program.cs` file:

       
       ParallaxControlSystemLibrary.InitializeSystem.Start(() =>
       {
           Console.WriteLine("Hello, World!");//program entry point
       });
Publishing Options

You may choose to publish your project to target Parallax Hardware, or run it on your local machine for testing. The publishing option will create a Unix Executable File.

This Unix Executable File should be uploaded to the processor

Publish Project (Parallax Hardware)

When you are ready to load code to the processor, publish your project with the following settings:

Deployment mode: Self-Contained

Target runtime: linux-arm64

Trim unused assemblies: true

Produce single file: true

Rider IDE Publish Options
Publish Project (Local Machine)

If you would like to test locally, publish your project with the following settings:

Deployment mode: Self-Contained

Target runtime: <select your system environment>

Trim unused assemblies: true

Produce single file: true

Load Program

Login to the processors web page and select the Unix Executable File that was created from your IDE.

For example, here is the file path of the published console program on my computer when targeting linux-arm64, yours may be different: /Users/bruce/Downloads/ConsoleApp2/ConsoleApp2/bin/Release/net8.0/linux-arm64/publish

Steps to load program:

Status Page > Choose File > Upload

Load Program (Moves program from uploads folder to ~/ home directory)

Allow Program (Enables execution permissions)

Start Program (Starts the program and enables auto-restart of the program in the event of system power loss)

View Console Logs

Need to see the console logs?

Log into the processor by terminal: ssh pi@<ipaddress>

The console app will be in your home directory.

Run the application "./<programname>"

Check that the program is loaded

Run the application