Skip to content

Commit fdd8e8a

Browse files
committed
Updated debug logging for Home and Thermostat.
1 parent f8bad75 commit fdd8e8a

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.bwssystems</groupId>
44
<artifactId>nest-controller</artifactId>
5-
<version>1.0.6</version>
5+
<version>1.0.7</version>
66
<packaging>jar</packaging>
77

88
<name>Nest Controller</name>

src/main/java/com/bwssystems/nest/controller/Home.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ public void reinitialize(StructureDetail aDetail) {
2929
public void setAway(Boolean isAway) {
3030
String theUrl = theSession.getTransport_url() + "/v2/put/structure." + theName;
3131
HttpPost postRequest = new HttpPost(theUrl);
32-
StringEntity requestBody = new StringEntity("{\"away_timestamp\":" + Long.toString(new Date().getTime()) + ",\"away\":" + isAway.toString() + ",\"away_setter\":0}", NestSession.parsedContentType);
33-
log.debug("setAway for home: " + theUrl + " with body: " + requestBody);
32+
String requestString = "{\"away_timestamp\":" + Long.toString(new Date().getTime()) + ",\"away\":" + isAway.toString() + ",\"away_setter\":0}";
33+
StringEntity requestBody = new StringEntity(requestString, NestSession.parsedContentType);
34+
log.debug("setAway for home: " + theUrl + " with body: " + requestString);
3435
postRequest.setEntity(requestBody);
3536

3637
String theResponse = theSession.execute(postRequest);

src/main/java/com/bwssystems/nest/controller/Thermostat.java

+14-15
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
package com.bwssystems.nest.controller;
22

3-
import java.io.BufferedReader;
4-
import java.io.InputStreamReader;
5-
63
import org.apache.http.client.methods.HttpPost;
74
import org.apache.http.entity.StringEntity;
85
import org.slf4j.Logger;
@@ -36,22 +33,20 @@ public void setTargetTemperature(Float theTemp) {
3633
String theUrl = theSession.getTransport_url() + "/v2/put/shared." + deviceName;
3734
HttpPost postRequest = new HttpPost(theUrl);
3835
String target = null;
36+
log.debug("current thermostat target type is: " + deviceDetail.getCurrentScheduleMode());
3937
if(deviceDetail.getCurrentScheduleMode().toLowerCase() == "range") {
38+
log.debug("current thermostat temperature is: " + Float.toString(sharedDetail.getTargetTemperature()));
4039
if(theTemp < sharedDetail.getTargetTemperature())
4140
target = "target_temperature_low";
4241
else
4342
target = "target_temperature_high";
4443
}
4544
else
4645
target = "target_temperature";
47-
StringEntity requestBody = new StringEntity("{\"target_change_pending\":true,\"" + target + "\":" + String.format("%3.1f", theTemp)+ "}", NestSession.parsedContentType);
48-
try {
49-
BufferedReader theLine = new BufferedReader(new InputStreamReader(requestBody.getContent()));
50-
log.debug("setTargetTemperature for thermostat: " + theUrl + " with body: " + theLine.readLine());
51-
}
52-
catch(Exception e) {
53-
log.debug("setTargetTemperature for thermostat: " + theUrl + " with body: error parsing body");
54-
}
46+
47+
String requestString = "{\"target_change_pending\":true,\"" + target + "\":" + String.format("%3.1f", theTemp)+ "}";
48+
StringEntity requestBody = new StringEntity(requestString, NestSession.parsedContentType);
49+
log.debug("setTargetTemperature for thermostat: " + theUrl + " with body: " + requestString);
5550
postRequest.setEntity(requestBody);
5651
String theResponse = theSession.execute(postRequest);
5752
log.debug("setTargetTemperature response: " + theResponse);
@@ -61,11 +56,13 @@ public void setTargetTemperature(Float theTemp) {
6156
}
6257

6358
public void setTargetType(String theType) {
59+
log.debug("current thermostat target type is: " + deviceDetail.getCurrentScheduleMode());
6460
if(theType.equals("cool") || theType.equals("heat") || theType.equals("range") || theType.equals("off")) {
6561
String theUrl = theSession.getTransport_url() + "/v2/put/shared." + deviceName;
6662
HttpPost postRequest = new HttpPost(theUrl);
67-
StringEntity requestBody = new StringEntity("{\"target_temperature_type\":\"" + theType + "\"}", NestSession.parsedContentType);
68-
log.debug("setTargetType for thermostat: " + theUrl + " with body: " + requestBody);
63+
String requestString = "{\"target_temperature_type\":\"" + theType + "\"}";
64+
StringEntity requestBody = new StringEntity(requestString, NestSession.parsedContentType);
65+
log.debug("setTargetType for thermostat: " + theUrl + " with body: " + requestString);
6966
postRequest.setEntity(requestBody);
7067
String theResponse = theSession.execute(postRequest);
7168
log.debug("setTargetType response: " + theResponse);
@@ -75,11 +72,13 @@ public void setTargetType(String theType) {
7572
}
7673

7774
public void setFanMode(String theMode) {
75+
log.debug("current thermostat fan mode is: " + deviceDetail.getFanMode());
7876
if(theMode.equals("on") || theMode.equals("auto")) {
7977
String theUrl = theSession.getTransport_url() + "/v2/put/device." + deviceName;
8078
HttpPost postRequest = new HttpPost(theUrl);
81-
StringEntity requestBody = new StringEntity("{\"fan_mode\":\"" + theMode + "\"}", NestSession.parsedContentType);
82-
log.debug("setFanMode for thermostat: " + theUrl + " with body: " + requestBody);
79+
String requestString = "{\"fan_mode\":\"" + theMode + "\"}";
80+
StringEntity requestBody = new StringEntity(requestString, NestSession.parsedContentType);
81+
log.debug("setFanMode for thermostat: " + theUrl + " with body: " + requestString);
8382
postRequest.setEntity(requestBody);
8483
String theResponse = theSession.execute(postRequest);
8584
log.debug("setFanMode response: " + theResponse);

0 commit comments

Comments
 (0)