From f2251311a8523b6c24839ccd1e6834ef065c679f Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Mon, 16 Mar 2026 16:48:34 +0100 Subject: Imaging (m/n) commands: start/stop, masks, image count, n reply --- demo/CommandsPage.qml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'demo/CommandsPage.qml') diff --git a/demo/CommandsPage.qml b/demo/CommandsPage.qml index 2e4437b..5a084e6 100644 --- a/demo/CommandsPage.qml +++ b/demo/CommandsPage.qml @@ -123,6 +123,36 @@ ColumnLayout { } } + // --- Imaging --- + GroupBox { + Layout.fillWidth: true + enabled: Xpl2Client.connected + title: "Imaging" + + GridLayout { + anchors.fill: parent + columns: 4 + + Button { + text: "Start Imaging" + + onClicked: Xpl2Client.imagingStart(1.0) + } + + Button { + text: "Stop Imaging" + + onClicked: Xpl2Client.imagingStop() + } + + Button { + text: "Image Count" + + onClicked: Xpl2Client.imageCount() + } + } + } + // --- Printheads --- GroupBox { Layout.fillHeight: true -- cgit v1.2.3