Rock Breakage Machine Desktop Software

Description

This project was developed for a mining startup as a user interface to control their rock breakage characterization testing machine. The machine is used to characterize rock samples and determine their breakage properties, which are used to optimize the mining process.

Technical Details

I was assigned to design and develop the entire user interface using the Qt framework in C++ and QML. This application is responsible for controlling the machine states, collecting data recieved from the main embedded board and displaying it in real time to the user, as well as saving it to log files for further analysis. It also allows users to configure the machine parameters and calibrate the various precision sensors based on proprietary algorithms.

Key Concepts

  • Qt framework, with QML for the frontend and C++ for the backend
  • Multithreaded C++ application to handle real-time data display, serial communication, and file I/O
  • Custom serial protocol to communicate with the embedded board, capable of collecting data as fast as 10 kHz

Main Challenges

The most challenging part of this project was maintaining high-speed data collection via USB while also displaying the data in real-time to the user without data loss. This was achieved by using a multithreaded application, where the main thread is responsible for displaying the data and has lower priority than the secondary thread, responsible for collecting the data from the serial port and sending it to the main thread via a thread-safe queue. Buffering techniques were also used to avoid data loss on the serial bus.

Results

The application was developed over the course of 4 months in 2022 and was successfully deployed alongside the machine.

Desktop dashboard
Desktop dashboard
Desktop dashboard

Built with

C++
Qt
QML
CMake
USB