1
1
package com .bwssystems .nest .controller ;
2
2
3
- import java .io .BufferedReader ;
4
- import java .io .InputStreamReader ;
5
-
6
3
import org .apache .http .client .methods .HttpPost ;
7
4
import org .apache .http .entity .StringEntity ;
8
5
import org .slf4j .Logger ;
@@ -36,22 +33,20 @@ public void setTargetTemperature(Float theTemp) {
36
33
String theUrl = theSession .getTransport_url () + "/v2/put/shared." + deviceName ;
37
34
HttpPost postRequest = new HttpPost (theUrl );
38
35
String target = null ;
36
+ log .debug ("current thermostat target type is: " + deviceDetail .getCurrentScheduleMode ());
39
37
if (deviceDetail .getCurrentScheduleMode ().toLowerCase () == "range" ) {
38
+ log .debug ("current thermostat temperature is: " + Float .toString (sharedDetail .getTargetTemperature ()));
40
39
if (theTemp < sharedDetail .getTargetTemperature ())
41
40
target = "target_temperature_low" ;
42
41
else
43
42
target = "target_temperature_high" ;
44
43
}
45
44
else
46
45
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 );
55
50
postRequest .setEntity (requestBody );
56
51
String theResponse = theSession .execute (postRequest );
57
52
log .debug ("setTargetTemperature response: " + theResponse );
@@ -61,11 +56,13 @@ public void setTargetTemperature(Float theTemp) {
61
56
}
62
57
63
58
public void setTargetType (String theType ) {
59
+ log .debug ("current thermostat target type is: " + deviceDetail .getCurrentScheduleMode ());
64
60
if (theType .equals ("cool" ) || theType .equals ("heat" ) || theType .equals ("range" ) || theType .equals ("off" )) {
65
61
String theUrl = theSession .getTransport_url () + "/v2/put/shared." + deviceName ;
66
62
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 );
69
66
postRequest .setEntity (requestBody );
70
67
String theResponse = theSession .execute (postRequest );
71
68
log .debug ("setTargetType response: " + theResponse );
@@ -75,11 +72,13 @@ public void setTargetType(String theType) {
75
72
}
76
73
77
74
public void setFanMode (String theMode ) {
75
+ log .debug ("current thermostat fan mode is: " + deviceDetail .getFanMode ());
78
76
if (theMode .equals ("on" ) || theMode .equals ("auto" )) {
79
77
String theUrl = theSession .getTransport_url () + "/v2/put/device." + deviceName ;
80
78
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 );
83
82
postRequest .setEntity (requestBody );
84
83
String theResponse = theSession .execute (postRequest );
85
84
log .debug ("setFanMode response: " + theResponse );
0 commit comments