We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
by bryan241:
It took me a while to find the problem for the thermostat...
You should change the following lines in DevicesInfo.java.
if (row.has("SetPoint")){ setPoint = row.getLong("SetPoint"); }
should be changed to :
if (row.has("SetPoint")){ setPoint = Double.parseDouble(row.getString("SetPoint")); }
Because row.getLong("SetPoint") is parsed to integer.
http://www.domoticz.com/forum/viewtopic.php?f=37&t=8884&start=340#p67426
The text was updated successfully, but these errors were encountered:
#165 Thermostat issue with settings whole points
92d6c0b
No branches or pull requests
by bryan241:
It took me a while to find the problem for the thermostat...
You should change the following lines in DevicesInfo.java.
if (row.has("SetPoint")){
setPoint = row.getLong("SetPoint");
}
should be changed to :
if (row.has("SetPoint")){
setPoint = Double.parseDouble(row.getString("SetPoint"));
}
Because row.getLong("SetPoint") is parsed to integer.
http://www.domoticz.com/forum/viewtopic.php?f=37&t=8884&start=340#p67426
The text was updated successfully, but these errors were encountered: