Skip to content

qitechgmbh/control

Repository files navigation

QiTech Control

QiTech Control is an industrial control panel software for the next generation of QiTech recycling machines built on top of Beckhoff Automation hardware.

Repo Structure

Frontend

  • /electron: Frontend code for the control software built with React and Electron.

Backend

  • /server: Glue between Beckhoff and Electron. Implements machine logic.
  • /stepper-driver: Generic stepper driver for absolute, relative & speed movements with PID controllers.
  • /ethercat-hal: Hardware abstraction layer for Beckhoff (and possibly other EtherCat) devices and protocols.
  • /ethercat-hal-derive: Macros for ethercat-hal
  • /control-core: Core control logic for the server.

Operating System

  • /nixos: Custom Linux with realtime kernel & preconfigured for touchscreens.

Other

  • /docs: Documentation for the project.

Technology Choices

Backend

To interface with Beckhoff and other EtherCAT devices we need an EtherCAY master stoftware. Possibilities are PySOEM (Python), SOEM (C) and Ethercrab (Rust). For realtime operation only C and Rust are suitable. We chose Rust because of safety and confidence in the written code.

SocketIO was chosen for performant event driven communication from the backend to the server. But we still use REST with axum for the communication thet benefits from the request/response model.

We use Smol for EtherCAT IO in the control loop for it's performance and Tokio for server IO because of it's ecosystem and maturity.

Frontend

We could combine the code of the frontend and backend using Doxius but it lacks good Linux support. We chose Electron with React for it's maturity and ecosystem. For the UI we use Shadcn components and Tailwind for styling. For routing we use TanStack Router.

Dev Setup

Backend

  • Rust stable 1.86^ toolchain (install via rustup)
  • rust-analyzer extension for VSCode
  • Set your interface in server/src/ethercat/init.rs like en10
  • Connect a Beckhoff EK1100 to your interface
  • run cd server && cargo run to start the server (localhost:3001)

Frontend

  • nodejs and npm installed
  • run cd electron && npm i && npm run start to start the frontend

Machines

Machine Type Version Release Date Description Change to Previous Version Vendor ID Machine ID Implemented Docs
Winder V1 ??? Winding Filaments & Similar - 1 (Qitech Industries GmbH) 1 Reserved -
Winder V2 2025 Winding Filaments & Similar Reengineered Traverse 1 (Qitech Industries GmbH) 2 In Progress
Extruder V1 ??? Single Screw Extruder - 1 (Qitech Industries GmbH) 3 Reserved -
Extruder V2 2025 Single Screw Extruder PT100 Thermometers, Optional Additional Heating Zone 4 1 (Qitech Industries GmbH) 4 Not Yet
Waterway V1 2025 Filament Water Cooling - 1 (Qitech Industries GmbH) 5 Not Yet

More Docs

  • Architecture & Data Flow

    • Example Winder V2
  • Electron

    • Folder Structure
    • Routing with TanStack Router
    • Design with Tailwind & Shadcn
    • ...
  • Interfacing with Electron/Server

    • SocketIO
      • Machine Room
      • Main Room
    • REST
      • Machine Mutations
      • Write Device Identification
  • Server

    • Control Loop Setup
      • Control Loop Thread
        • realtime
      • Maindevice
      • Group
      • Extracting Device Identifications
      • Identifying Groups
      • Validating Machines
      • Run Control Loop
    • Control Loop
    • Machine/Device Identification
    • Machines
      • When to create a new Machine?
        • Versioning
        • Code sharing
      • Creating/Validating a Machine
        • Validation
        • Configuration
    • Machine Implementation Guide
      • Link: How to create a Device
      • Link: How to create an Actor
      • Link: How to create a Machine
        • API (SocketIO + REST)
        • Creation/Validation Logic
          • Optional/Mandatory Devices
          • Validate Devices
        • Business Logic
      • Link: How to create Machine Abstraction (Like Traverse/Puller/...)
      • Forward act in winder.
  • Control Core

    • Actors
    • SocketIO
      • Rooms & Caching
      • Joining leaving rooms
      • RoomId
      • Our rooms vs native socketIO rooms
      • Caching
        • Serverside Caching
        • Clientside Caching
    • REST
  • Ethercat HAL

  • Ethercat Basics

  • Operating System

    • Why
    • How

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •