添加了温度测试

This commit is contained in:
xin
2025-03-10 09:55:18 +08:00
parent 1269e520e2
commit 50cc3c0aff
68 changed files with 25280 additions and 1555 deletions

View File

@ -0,0 +1,17 @@
//
// Created by xin on 24-12-11.
//
#include <iostream>
#include <TemperaTureWoker.h>
#include <QtCore/QCoreApplication>
#include <qthread.h>
int main(int argc, char* argv[])
{
QCoreApplication aaaaa(argc, argv);
std::cout<<"Hello World";
TemperaTureWoker *pTemperaTureWoker = new TemperaTureWoker();
return aaaaa.exec();
}