// // Created by xin on 24-12-12. // #ifndef TEMPERATUREWOKER_H #define TEMPERATUREWOKER_H #include "QObject" #include #include #include "nlohmann/json.hpp" struct tempera_group { float tempera[8]={0}; }; using json = nlohmann::json; class TemperaTureWoker:public QObject { Q_OBJECT public: TemperaTureWoker(); QList m_Tempreaturegroups; void ReadTempreature(); private: QSerialPort *m_SerialPort; bool m_isInit=false; }; #endif //TEMPERATUREWOKER_H