AtCore  1.0.72
AtCore is a API to manage the serial connection between the computer and 3D Printers.
beddeform.h
Go to the documentation of this file.
1 /* AtCore KDE Libary for 3D Printers
2  SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
3  SPDX-FileCopyrightText: 2019 Chris Rizzitello <rizzitello@kde.org>
4 */
5 
6 #pragma once
7 
8 #include <QObject>
9 
10 #include "atcore_export.h"
11 
18 class ATCORE_EXPORT BedDeform : public QObject
19 {
20  Q_OBJECT
21  Q_PROPERTY(QVariantList bedDeformationGrid READ bedDeformationGrid NOTIFY dataChanged)
22 public:
27  explicit BedDeform(QObject *parent = nullptr);
32  void decodeDeform(const QStringList &rawData);
44  QVariantList bedDeformationGrid();
45 signals:
46  void dataChanged(const QVariantList &data);
47 
48 private:
51 };
BedDeform::d
BedDeformPrivate * d
Definition: beddeform.h:49
BedDeform::BedDeformPrivate
Definition: beddeform.cpp:9
BedDeform
The Bed Deform class.
Definition: beddeform.h:18