This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Simon Stürz 37c2d0219d add debug categories to each plugin
fix loading vendorId
improoved man page
improoved help message
add extern ids to extern-plugininfo.h
2019-04-01 20:48:17 +02:00

211 lines
4.9 KiB
C++

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Copyright (C) 2015 Simon Stuerz <simon.stuerz@guh.guru> *
* *
* This file is part of guh. *
* *
* Guh is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, version 2 of the License. *
* *
* Guh is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with guh. If not, see <http://www.gnu.org/licenses/>. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "wallthermostat.h"
#include "extern-plugininfo.h"
WallThermostat::WallThermostat(QObject *parent) :
MaxDevice(parent)
{
}
double WallThermostat::comfortTemp() const
{
return m_comfortTemp;
}
void WallThermostat::setComfortTemp(const double &comfortTemp)
{
m_comfortTemp = comfortTemp;
}
double WallThermostat::ecoTemp() const
{
return m_ecoTemp;
}
void WallThermostat::setEcoTemp(const double &ecoTemp)
{
m_ecoTemp = ecoTemp;
}
double WallThermostat::maxSetPointTemp() const
{
return m_maxSetPointTemp;
}
void WallThermostat::setMaxSetPointTemp(const double &maxSetPointTemp)
{
m_maxSetPointTemp = maxSetPointTemp;
}
double WallThermostat::minSetPointTemp() const
{
return m_minSetPointTemp;
}
void WallThermostat::setMinSetPointTemp(const double &minSetPointTemp)
{
m_minSetPointTemp = minSetPointTemp;
}
bool WallThermostat::informationValid() const
{
return m_informationValid;
}
void WallThermostat::setInformationValid(const bool &informationValid)
{
m_informationValid = informationValid;
}
bool WallThermostat::errorOccured() const
{
return m_errorOccured;
}
void WallThermostat::setErrorOccured(const bool &errorOccured)
{
m_errorOccured = errorOccured;
}
bool WallThermostat::isAnswereToCommand() const
{
return m_isAnswerToCommand;
}
void WallThermostat::setIsAnswereToCommand(const bool &isAnswereToCommand)
{
m_isAnswerToCommand = isAnswereToCommand;
}
bool WallThermostat::initialized() const
{
return m_initialized;
}
void WallThermostat::setInitialized(const bool &initialized)
{
m_initialized = initialized;
}
bool WallThermostat::batteryLow() const
{
return m_batteryLow;
}
void WallThermostat::setBatteryLow(const bool &batteryLow)
{
m_batteryLow = batteryLow;
}
bool WallThermostat::linkStatusOK() const
{
return m_linkStatusOK;
}
void WallThermostat::setLinkStatusOK(const bool &linkStatusOK)
{
m_linkStatusOK = linkStatusOK;
}
bool WallThermostat::panelLocked() const
{
return m_panelLocked;
}
void WallThermostat::setPanelLocked(const bool &panelLocked)
{
m_panelLocked = panelLocked;
}
bool WallThermostat::gatewayKnown() const
{
return m_gatewayKnown;
}
void WallThermostat::setGatewayKnown(const bool &gatewayKnown)
{
m_gatewayKnown = gatewayKnown;
}
bool WallThermostat::dtsActive() const
{
return m_dtsActive;
}
void WallThermostat::setDtsActive(const bool &dtsActive)
{
m_dtsActive = dtsActive;
}
int WallThermostat::deviceMode() const
{
return m_deviceMode;
}
void WallThermostat::setDeviceMode(const int &deviceMode)
{
m_deviceMode = deviceMode;
switch (deviceMode) {
case Auto:
m_deviceModeString = "Auto";
break;
case Manual:
m_deviceModeString = "Manuel";
break;
case Temporary:
m_deviceModeString = "Temporary";
break;
case Boost:
m_deviceModeString = "Boost";
break;
default:
m_deviceModeString = "-";
break;
}
}
QString WallThermostat::deviceModeString() const
{
return m_deviceModeString;
}
double WallThermostat::setpointTemperature() const
{
return m_setpointTemperature;
}
void WallThermostat::setSetpointTemperatre(const double &setpointTemperature)
{
m_setpointTemperature = setpointTemperature;
}
double WallThermostat::currentTemperature() const
{
return m_currentTemperature;
}
void WallThermostat::setCurrentTemperatre(const double &currentTemperature)
{
m_currentTemperature = currentTemperature;
}