Added temperature monitor screen. Added current factors for BMS configuration

This commit is contained in:
Yury Shuvakin
2023-03-21 10:10:28 +03:00
parent 7c732215ec
commit 0daea7162a
17 changed files with 1496 additions and 326 deletions

View File

@@ -22,6 +22,7 @@
#include "utility.h"
#include "translator.h"
#include "firmwareupdatehelper.h"
#include "currenttablemodel.h"
#include <QApplication>
#include <QFontDatabase>
@@ -76,6 +77,7 @@ int main(int argc, char *argv[])
qmlRegisterType<Commands>("Cubo", 1, 0, "Commands");
qmlRegisterType<ConfigParams>("Cubo", 1, 0, "ConfigParams");
qmlRegisterType<FirmwareUpdateHelper>("Cubo", 1, 0, "FirmwareUpdateHelper");
qmlRegisterType<CurrentTableModel>("Cubo", 1, 0, "CurrentTableModel");
engine.addImportPath(QStringLiteral("qrc:/"));
engine.load(QUrl(QStringLiteral("qrc:/MainWindow.qml")));