Thermostat pour piloter jusqu'à 4 radiateurs avec fil pilote
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
942 B

  1. // SPDX-License-Identifier: GPL-3.0-or-later
  2. /*
  3. * Qt mutizone MQTT thermostat
  4. *
  5. * Copyright (C) 2019 Richard Genoud
  6. *
  7. */
  8. #ifndef MAINWINDOW_H
  9. #define MAINWINDOW_H
  10. #include <QMainWindow>
  11. #include <QPushButton>
  12. #include <QtWidgets>
  13. #include <QVector>
  14. #include "zoneitem.h"
  15. #include "backgroundloop.h"
  16. #include "settings.h"
  17. class MainWindow : public QMainWindow
  18. {
  19. Q_OBJECT
  20. public:
  21. explicit MainWindow(QWidget *parent = NULL);
  22. ~MainWindow();
  23. private:
  24. QPushButton m_state_btn;
  25. BackgroundLoop m_backLoop;
  26. QVector<ZoneItem *> m_zones;
  27. enum power_states m_pwr_state;
  28. void update_state_btn(enum power_states st);
  29. private slots:
  30. void temperature_slot(int idx, double val);
  31. void hygro_slot(int idx, double val);
  32. void availability_slot(int idx, bool ok);
  33. void change_state(void);
  34. signals:
  35. void new_pwr_state(enum power_states state);
  36. };
  37. #endif // MAINWINDOW_H
  38. /* vim: set tabstop=8 shiftwidth=8 softtabstop=0 noexpandtab: */