-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathHoneywellThermo-TCC.groovy
860 lines (730 loc) · 29.9 KB
/
HoneywellThermo-TCC.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
/**
* IMPORT URL: https://raw.githubusercontent.com/HubitatCommunity/HoneywellThermo-TCC/master/HoneywellThermo-TCC.groovy
*
* Total Comfort API
*
* Based on Code by Eric Thomas, Edited by Bob Jase, and C Steele
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
* for the specific language governing permissions and limitations under the License.
*
*
* csteele: v1.2.2 replaced F/C selection with value from Location in the hub.
* csteele: v1.2 option of polling interval, off through 60 min. added txtEnable for Description logging.
* csteele: v1.1.5 allow option of permanent or temporary hold.
* csteele: v1.1 merged Pull Request from rylatorr: Use permanent hold instead of temporary
* csteele: v1.0 added Cobra's Version Check code, modified debug logging to match Hubitat standards, (on/off and 30 min limit)
* removed Relative Humidity and SmartThings "main" paragraph
*
* (Bob) version 10 deals with the fact that Honeywell decided to poison the well with expired cookies
* I also changed it so that it polls for an update every 60 seconds
* lgk version 9 an indicator on the bottom which indicates if following schedule or vacation or temp hold.
* it also displays green for following schedule and red for other modes.
* you can also select it to cancel a hold and go back to following schedule.
* however, the temp will not update till next refresh even though you have cancelled the hold.
* One problem, is that the colors are not working correctly in ios currently and the label is not
* wrapping in android as it is supposed to.
* lgk version 8 figured out how to do time without user input of time zone offset.. and this works with and without
* daylight saving time.
* lgk version 7, change the new operating state to be a value vs standard tile
* to work around a bug smartthings caused in the latest 2.08 release with text wrapping.
* related also added icons to the operating state, and increase the width of the last update
* to avoid wrapping.
* lgk version 6 add support for actually knowing the fan is on or not (added tile),
* and also the actual operating state ie heating,cooling or idle via new response variables.
* lgk version 5, due to intermittant update failures added last update date/time tile so that you can see when it happended
* not there is a new input tzoffset which defaults to my time ie -5 which you must set .
* lgk version 4 supports celsius and fahrenheit with option, and now colors.
* lgk v 3 added optional outdoor temp sensors and preferences for it, also made api login required.
*
*/
metadata {
definition (name: "Total Comfort API B", namespace:
"Total Comfort API", author: "Eric Thomas, lg kahn, C Steele") {
capability "Polling"
capability "Thermostat"
capability "Refresh"
capability "Temperature Measurement"
capability "Sensor"
// capability "Relative Humidity Measurement"
command "heatLevelUp"
command "heatLevelDown"
command "coolLevelUp"
command "coolLevelDown"
command "setFollowSchedule"
attribute "outdoorHumidity", "number"
attribute "outdoorTemperature", "number"
attribute "lastUpdate", "string"
attribute "followSchedule", "string"
attribute "DriverAuthor", "string"
attribute "DriverVersion", "string"
attribute "DriverStatus", "string"
attribute "DriverUpdate", "string"
attribute "ThermostatOperatingState", "string"
}
preferences {
input name: "username", type: "text", title: "Username", description: "Your Total Comfort User Name", required: true
input name: "password", type: "password", title: "Password", description: "Your Total Comfort password",required: true
input name: "honeywelldevice", type: "text", title: "Device ID", description: "Your Device ID", required: true
input name: "enableOutdoorTemps", type: "enum", title: "Do you have the optional outdoor temperature sensor and want to enable it?", options: ["Yes", "No"], required: false, defaultValue: "No"
input name: "setPermHold", type: "enum", title: "Will Setpoints be temporary or permanent?", options: ["Temporary", "Permanent"], required: false, defaultValue: "Temporary"
input name: "pollIntervals", type: "enum", title: "Set the Poll Interval.", options: [0:"off", 60:"1 minute", 120:"2 minutes", 300:"5 minutes",600:"10 minutes",900:"15 minutes",1800:"30 minutes",3600:"60 minutes"], required: true, defaultValue: "600"
input name: "debugOutput", type: "bool", title: "Enable debug logging?", defaultValue: true
input name: "txtEnable", type: "bool", title: "Enable descriptionText logging", defaultValue: true
}
}
// Driver Version ***** with great thanks and acknowlegment to Cobra (CobraVmax) for his original version checking code ********
def setVersion(){
state.Version = "1.2.2"
state.InternalName = "HoneywellThermoTCC"
sendEvent(name: "DriverAuthor", value: "cSteele")
sendEvent(name: "DriverVersion", value: state.version)
sendEvent(name: "DriverStatus", value: state.Status)
}
def coolLevelUp() {
if (location.temperatureScale == "F")
{
int nextLevel = device.currentValue("coolingSetpoint") + 1
if( nextLevel > 99){
nextLevel = 99
}
logDebug "Setting cool set point up to: ${nextLevel}"
setCoolingSetpoint(nextLevel)
}
else
{
int nextLevel = device.currentValue("coolingSetpoint") + 0.5
if( nextLevel > 37){
nextLevel = 37
}
logDebug "Setting cool set point up to: ${nextLevel}"
setCoolingSetpoint(nextLevel)
}
}
def coolLevelDown() {
if (location.temperatureScale == "F")
{
int nextLevel = device.currentValue("coolingSetpoint") - 1
if( nextLevel < 50){
nextLevel = 50
}
logDebug "Setting cool set point down to: ${nextLevel}"
setCoolingSetpoint(nextLevel)
}
else
{
double nextLevel = device.currentValue("coolingSetpoint") - 0.5
if( nextLevel < 10){
nextLevel = 10
}
logDebug "Setting cool set point down to: ${nextLevel}"
setCoolingSetpoint(nextLevel)
}
}
def heatLevelUp() {
if (location.temperatureScale == "F")
{
logDebug "in fahrenheit level up"
int nextLevel = device.currentValue("heatingSetpoint") + 1
if( nextLevel > 90){
nextLevel = 90
}
logDebug "Setting heat set point up to: ${nextLevel}"
setHeatingSetpoint(nextLevel)
}
else
{
logDebug "in celsius level up"
double nextLevel = device.currentValue("heatingSetpoint") + 0.5
if( nextLevel > 33){
nextLevel = 33
}
logDebug "Setting heat set point up to: ${nextLevel}"
setHeatingSetpoint(nextLevel)
}
}
def heatLevelDown() {
if (location.temperatureScale == "F")
{
logDebug "in fahrenheit level down"
int nextLevel = device.currentValue("heatingSetpoint") - 1
if( nextLevel < 40){
nextLevel = 40
}
logDebug "Setting heat set point down to: ${nextLevel}"
setHeatingSetpoint(nextLevel)
}
else
{
logDebug "in celsius level down"
double nextLevel = device.currentValue("heatingSetpoint") - 0.5
if( nextLevel < 4){
nextLevel = 4
}
logDebug "Setting heat set point down to: ${nextLevel}"
setHeatingSetpoint(nextLevel)
}
}
// parse events into attributes
def parse(String description) {
}
// handle commands
def setHeatingSetpoint(Double temp)
{
device.data.SystemSwitch = 'null'
device.data.HeatSetpoint = temp
device.data.CoolSetpoint = 'null'
device.data.HeatNextPeriod = 'null'
device.data.CoolNextPeriod = 'null'
device.data.StatusHeat = state.PermHold
device.data.StatusCool = state.PermHold
device.data.FanMode = 'null'
setStatus()
if(device.data.SetStatus==1)
{
sendEvent(name: 'heatingSetpoint', value: temp as double)
}
}
def setHeatingSetpoint(temp) {
device.data.SystemSwitch = 'null'
device.data.HeatSetpoint = temp
device.data.CoolSetpoint = 'null'
device.data.HeatNextPeriod = 'null'
device.data.CoolNextPeriod = 'null'
device.data.StatusHeat = state.PermHold
device.data.StatusCool = state.PermHold
device.data.FanMode = 'null'
setStatus()
if(device.data.SetStatus==1)
{
sendEvent(name: 'heatingSetpoint', value: temp as Integer)
}
}
def setFollowSchedule() {
logDebug "in set follow schedule"
device.data.SystemSwitch = 'null'
device.data.HeatSetpoint = 'null'
device.data.CoolSetpoint = 'null'
device.data.HeatNextPeriod = 'null'
device.data.CoolNextPeriod = 'null'
device.data.StatusHeat='0'
device.data.StatusCool='0'
device.data.FanMode = 'null'
setStatus()
if(device.data.SetStatus==1)
{
logDebug "Successfully sent follow schedule.!"
// runIn(60,getStatus)
// runEvery1Minutes (getStatus)
}
}
def setCoolingSetpoint(double temp) {
device.data.SystemSwitch = 'null'
device.data.HeatSetpoint = 'null'
device.data.CoolSetpoint = temp
device.data.HeatNextPeriod = 'null'
device.data.CoolNextPeriod = 'null'
device.data.StatusHeat = state.PermHold
device.data.StatusCool = state.PermHold
device.data.FanMode = 'null'
setStatus()
if(device.data.SetStatus==1)
{
sendEvent(name: 'coolingSetpoint', value: temp as double)
}
}
def setCoolingSetpoint(temp) {
device.data.SystemSwitch = 'null'
device.data.HeatSetpoint = 'null'
device.data.CoolSetpoint = temp
device.data.HeatNextPeriod = 'null'
device.data.CoolNextPeriod = 'null'
device.data.StatusHeat = state.PermHold
device.data.StatusCool = state.PermHold
device.data.FanMode = 'null'
setStatus()
if(device.data.SetStatus==1)
{
sendEvent(name: 'coolingSetpoint', value: temp as Integer)
}
}
def setTargetTemp(temp) {
device.data.SystemSwitch = 'null'
device.data.HeatSetpoint = temp
device.data.CoolSetpoint = temp
device.data.HeatNextPeriod = 'null'
device.data.CoolNextPeriod = 'null'
device.data.StatusHeat = state.PermHold
device.data.StatusCool = state.PermHold
device.data.FanMode = 'null'
setStatus()
}
def setTargetTemp(double temp) {
device.data.SystemSwitch = 'null'
device.data.HeatSetpoint = temp
device.data.CoolSetpoint = temp
device.data.HeatNextPeriod = 'null'
device.data.CoolNextPeriod = 'null'
device.data.StatusHeat = state.PermHold
device.data.StatusCool = state.PermHold
device.data.FanMode = 'null'
setStatus()
}
def off() {
setThermostatMode(2)
}
def auto() {
setThermostatMode(4)
}
def heat() {
setThermostatMode(1)
}
def emergencyHeat() {
}
def cool() {
setThermostatMode(3)
}
def setThermostatMode(mode) {
device.data.SystemSwitch = mode
device.data.HeatSetpoint = 'null'
device.data.CoolSetpoint = 'null'
device.data.HeatNextPeriod = 'null'
device.data.CoolNextPeriod = 'null'
device.data.StatusHeat = state.PermHold
device.data.StatusCool = state.PermHold
device.data.FanMode = 'null'
setStatus()
def switchPos
if(mode==1)
switchPos = 'heat'
if(mode==2)
switchPos = 'off'
if(mode==3)
switchPos = 'cool'
/* lgk modified my therm has pos 5 for auto vision pro */
if(mode==4 || swithPos == 5)
switchPos = 'auto'
if(device.data.SetStatus==1)
{
sendEvent(name: 'thermostatMode', value: switchPos)
}
}
def fanOn() {
setThermostatFanMode(1)
}
def fanAuto() {
setThermostatFanMode(0)
}
def fanCirculate() {
setThermostatFanMode(2)
}
def setThermostatFanMode(mode) {
device.data.SystemSwitch = 'null'
device.data.HeatSetpoint = 'null'
device.data.CoolSetpoint = 'null'
device.data.HeatNextPeriod = 'null'
device.data.CoolNextPeriod = 'null'
device.data.StatusHeat='null'
device.data.StatusCool='null'
device.data.FanMode = mode
setStatus()
def fanMode
if(mode==0)
fanMode = 'auto'
if(mode==1)
fanMode = 'on'
if(mode==2)
fanMode = 'circulate'
if(device.data.SetStatus==1)
{
sendEvent(name: 'thermostatFanMode', value: fanMode)
}
}
def setStatus() {
device.data.SetStatus = 0
login()
logDebug "Executing 'setStatus'"
def today= new Date()
logDebug "https://www.mytotalconnectcomfort.com/portal/Device/SubmitControlScreenChanges"
logDebug "setting heat setpoint to $device.data.HeatSetpoint"
logDebug "setting cool setpoint to $device.data.CoolSetpoint"
def params = [
uri: "https://www.mytotalconnectcomfort.com/portal/Device/SubmitControlScreenChanges",
headers: [
'Accept': 'application/json, text/javascript, */*; q=0.01', // */ comment
'DNT': '1',
'Accept-Encoding': 'gzip,deflate,sdch',
'Cache-Control': 'max-age=0',
'Accept-Language': 'en-US,en,q=0.8',
'Connection': 'keep-alive',
'Host': 'mytotalconnectcomfort.com',
'Referer': "https://www.mytotalconnectcomfort.com/portal/Device/Control/${settings.honeywelldevice}",
'X-Requested-With': 'XMLHttpRequest',
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36',
'Cookie': device.data.cookiess ],
body: [ DeviceID: "${settings.honeywelldevice}", SystemSwitch : device.data.SystemSwitch ,HeatSetpoint :
device.data.HeatSetpoint, CoolSetpoint: device.data.CoolSetpoint, HeatNextPeriod:
device.data.HeatNextPeriod,CoolNextPeriod:device.data.CoolNextPeriod,StatusHeat:device.data.StatusHeat,
StatusCool:device.data.StatusCool,FanMode:device.data.FanMode,ThermostatUnits: location.temperatureScale]
]
logDebug "params = $params"
httpPost(params) { response ->
logDebug "Request was successful, $response.status"
}
logDebug "SetStatus is 1 now"
device.data.SetStatus = 1
}
def getStatus() {
logDebug "Executing getStatus"
logDebug "enable outside temps = $enableOutdoorTemps"
def today= new Date()
logDebug "https://www.mytotalconnectcomfort.com/portal/Device/CheckDataSession/${settings.honeywelldevice}?_=$today.time"
def params = [
uri: "https://www.mytotalconnectcomfort.com/portal/Device/CheckDataSession/${settings.honeywelldevice}",
headers: [
'Accept': '*/*',
'DNT': '1',
'Cache' : 'false',
'dataType': 'json',
'Accept-Encoding': 'plain',
'Cache-Control': 'max-age=0',
'Accept-Language': 'en-US,en,q=0.8',
'Connection': 'keep-alive',
'Referer': 'https://www.mytotalconnectcomfort.com/portal',
'X-Requested-With': 'XMLHttpRequest',
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36',
'Cookie': device.data.cookiess ],
]
logDebug "doing request"
try {
httpGet(params) { response ->
logDebug "Request was successful, $response.status"
//logInfo "data = $response.data"
logDebug "ld = $response.data.latestData"
def curTemp = response.data.latestData.uiData.DispTemperature
def fanMode = response.data.latestData.fanData.fanMode
def switchPos = response.data.latestData.uiData.SystemSwitchPosition
def coolSetPoint = response.data.latestData.uiData.CoolSetpoint
def heatSetPoint = response.data.latestData.uiData.HeatSetpoint
def statusCool = response.data.latestData.uiData.StatusCool
def statusHeat = response.data.latestData.uiData.StatusHeat
def curHumidity = response.data.latestData.uiData.IndoorHumidity
def Boolean hasOutdoorHumid = response.data.latestData.uiData.OutdoorHumidityAvailable
def Boolean hasOutdoorTemp = response.data.latestData.uiData.OutdoorTemperatureAvailable
def curOutdoorHumidity = response.data.latestData.uiData.OutdoorHumidity
def curOutdoorTemp = response.data.latestData.uiData.OutdoorTemperature
def displayUnits = response.data.latestData.uiData.DisplayUnits
def fanIsRunning = response.data.latestData.fanData.fanIsRunning
def equipmentStatus = response.data.latestData.uiData.EquipmentOutputStatus
def holdTime = response.data.latestData.uiData.TemporaryHoldUntilTime
def vacationHold = response.data.latestData.uiData.IsInVacationHoldMode
logDebug "got holdTime = $holdTime"
logDebug "got Vacation Hold = $vacationHold"
if (holdTime != 0)
{ logDebug "sending temporary hold"
sendEvent(name: 'followSchedule', value: "TemporaryHold")
}
if (vacationHold == true)
{ logDebug "sending vacation hold"
sendEvent(name: 'followSchedule', value: "VacationHold")
}
if (vacationHold == false && holdTime == 0)
{
logDebug "Sending following schedule"
sendEvent(name: 'followSchedule', value: "FollowingSchedule")
}
// logDebug "displayUnits = $displayUnits"
state.DisplayUnits = $displayUnits
//Operating State Section
//Set the operating state to off
def operatingState = "Unknown"
// lgk operating state not working here.. shows both on ie 1 when heat doesnt go on to 67 and heat till 76 and current is 73
//Check the status of heat and cool
// lgk old method now use equipment status
if (equipmentStatus == 1) {
operatingState = "Heating"
} else if (equipmentStatus == 2) {
operatingState = "Cooling"
} else if (equipmentStatus == 0) {
operatingState = "Idle"
} else {
operatingState = "Unknown"
}
logInfo("Set operating State to: ${operatingState}")
// set fast state
def fanState = "Unknown"
if (fanIsRunning == true)
fanState = "On"
else fanState = "Idle"
logInfo("Set Fan operating State to: ${fanState}")
//End Operating State
// logDebug ("curTemp: ${curTemp}")
// logDebug ("fanMode: ${fanMode}")
// logDebug ("switchPos: ${switchPos}")
//fan mode 0=auto, 2=circ, 1=on
if(fanMode==0)
fanMode = 'auto'
if(fanMode==1)
fanMode = 'on'
if(fanMode==2)
fanMode = 'circulate'
if(switchPos==1)
switchPos = 'heat'
if(switchPos==2)
switchPos = 'off'
if(switchPos==3)
switchPos = 'cool'
if(switchPos==4 || switchPos==5)
switchPos = 'auto'
// def formattedCoolSetPoint = String.format("%5.1f", coolSetPoint)
// def formattedHeatSetPoint = String.format("%5.1f", heatSetPoint)
// def formattedTemp = String.format("%5.1f", curTemp)
//
// def finalCoolSetPoint = formattedCoolSetPoint as BigDecimal
// def finalHeatSetPoint = formattedHeatSetPoint as BigDecimal
// def finalTemp = formattedTemp as BigDecimal
//Send events
sendEvent(name: 'thermostatOperatingState', value: operatingState)
sendEvent(name: 'fanOperatingState', value: fanState)
sendEvent(name: 'thermostatFanMode', value: fanMode)
sendEvent(name: 'thermostatMode', value: switchPos)
sendEvent(name: 'coolingSetpoint', value: coolSetPoint )
sendEvent(name: 'heatingSetpoint', value: heatSetPoint )
sendEvent(name: 'temperature', value: curTemp, state: switchPos)
sendEvent(name: 'relativeHumidity', value: curHumidity as Integer)
//logDebug "location = $location.name tz = $location.timeZone"
def now = new Date().format('MM/dd/yyyy h:mm a',location.timeZone)
//def now = new Date()
//def tf = new java.text.SimpleDateFormat("MM/dd/yyyy h:mm a")
//tf.setTimeZone(TimeZone.getTimeZone("GMT${settings.tzOffset}"))
//def newtime = "${tf.format(now)}" as String
// sendEvent(name: "lastUpdate", value: newtime, descriptionText: "Last Update: $newtime")
sendEvent(name: "lastUpdate", value: now, descriptionText: "Last Update: $now")
if (enableOutdoorTemps == "Yes")
{
if (hasOutdoorHumid)
{
sendEvent(name: 'outdoorHumidity', value: curOutdoorHumidity as Integer)
}
if (hasOutdoorTemp)
{
sendEvent(name: 'outdoorTemperature', value: curOutdoorTemp as Integer)
}
}
}
}
catch (e) {
log.warn "Something went wrong: $e"
}
}
def getHumidifierStatus()
{
def params = [
uri: "https://www.mytotalconnectcomfort.com/portal/Device/Menu/GetHumData/${settings.honeywelldevice}",
headers: [
'Accept': '*/*',
'DNT': '1',
'dataType': 'json',
'cache': 'false',
'Accept-Encoding': 'plain',
'Cache-Control': 'max-age=0',
'Accept-Language': 'en-US,en,q=0.8',
'Connection': 'keep-alive',
'Host': 'rs.alarmnet.com',
'Referer': 'https://www.mytotalconnectcomfort.com/portal/Menu/${settings.honeywelldevice}',
'X-Requested-With': 'XMLHttpRequest',
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36',
'Cookie': device.data.cookiess ],
]
try {
httpGet(params) { response ->
logDebug "GetHumidity Request was successful, $response.status"
logDebug "response = $response.data"
// logDebug "ld = $response.data.latestData"
// logDebug "humdata = $response.data.latestData.humData"
logInfo("lowerLimit: ${response.data.latestData.humData.lowerLimit}")
logInfo("upperLimit: ${response.data.humData.upperLimit}")
logInfo("SetPoint: ${response.data.humData.Setpoint}")
logInfo("DeviceId: ${response.data.humData.DeviceId}")
logInfo("IndoorHumidity: ${response.data.humData.IndoorHumidity}")
}
}
catch (e) {
log.error "Something went wrong: $e"
}
}
def api(method, args = [], success = {}) {
}
// Need to be logged in before this is called. So don't call this. Call api.
def doRequest(uri, args, type, success) {
}
def refresh() {
logDebug "Executing 'refresh'"
def unit = location.temperatureScale
logDebug "pollInterval: $pollInterval, units: = $unit"
login()
//getHumidifierStatus()
getStatus()
}
def login() {
logInfo "Executing 'login'"
def params = [
uri: 'https://www.mytotalconnectcomfort.com/portal',
headers: [
'Content-Type': 'application/x-www-form-urlencoded',
'Accept': 'application/json, text/javascript, */*; q=0.01', // */
'Accept-Encoding': 'sdch',
'Host': 'www.mytotalconnectcomfort.com',
'DNT': '1',
'Origin': 'www.mytotalconnectcomfort.com/portal/',
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36'
],
body: [timeOffset: '240', UserName: "${settings.username}", Password: "${settings.password}", RememberMe: 'false']
]
device.data.cookiess = ''
try {
httpPost(params) { response ->
logDebug "Request was successful, $response.status"
logDebug response.headers
String allCookies = ""
//response.getHeaders('Set-Cookie').each {
// logDebug "---Set-Cookie: ${it.value}"
// }
response.getHeaders('Set-Cookie').each {
String cookie = it.value.split(';|,')[0]
Boolean skipCookie = false
def expireParts = it.value.split('expires=')
try {
def cookieSegments = it.value.split(';')
for (int i = 0; i < cookieSegments.length; i++) {
def cookieSegment = cookieSegments[i]
String cookieSegmentName = cookieSegment.split('=')[0]
if (cookieSegmentName.trim() == "expires") {
String expiration = cookieSegment.split('=')[1]
Date expires = new Date(expiration)
Date newDate = new Date() // right now
if (expires < newDate ) {
skipCookie=true
//logDebug "-skip cookie: $it.value"
} else {
//logDebug "+not skipping cookie: expires=$expires. now=$newDate. cookie: $it.value"
}
}
}
}
catch (e) {
logDebug "!error when checking expiration date: $e ($expiration) [$expireParts.length] {$it.value}"
}
allCookies = allCookies + it.value + ';'
if(cookie != ".ASPXAUTH_TH_A=") {
if (it.value.split('=')[1].trim() != "") {
if (!skipCookie) {
logDebug "Adding cookie to collection: $cookie"
device.data.cookiess = device.data.cookiess+cookie+';'
}
}
}
}
logDebug "cookies: $device.data.cookiess"
}
}
catch (e) {
log.warn "Something went wrong: $e"
}
}
def isLoggedIn() {
if(!device.data.auth) {
logDebug "No device.data.auth"
return false
}
def now = new Date().getTime();
return device.data.auth.expires_in > now
}
def poll() {
logInfo "in poll: $pollInterval"
pollInterval = pollIntervals.toInteger()
if (pollInterval) runIn(pollInterval, poll)
refresh()
}
def updated() {
logDebug "in updated"
pollInterval = pollIntervals.toInteger()
state.DisplayUnits = location.temperatureScale
logDebug "display units now = $state.DisplayUnits"
logDebug "debug logging is: ${debugOutput == true}"
log.warn "description logging is: ${txtEnable == true}"
unschedule()
if (debugOutput) runIn(1800,logsOff)
if (setPermHold == "Permanent") { state.PermHold = 2 } else { state.PermHold = 1 }
logDebug "PermHold now = ${state.PermHold}"
poll()
version()
}
def installed() {
state.DisplayUnits = location.temperatureScale
logDebug "display units now = $state.DisplayUnits"
}
def logsOff(){
log.warn "debug logging disabled..."
device.updateSetting("debugOutput",[value:"false",type:"bool"])
}
private logDebug(msg) {
if (settings?.debugOutput || settings?.debugOutput == null) log.debug "$msg"
}
private logInfo(msg) {
if (settings?.txtEnable || settings?.txtEnable == null) log.info "$msg"
}
// Driver Version ***** with great thanks and acknowlegment to Cobra (CobraVmax) for his original version checking code ********
def version(){
schedule("0 0 8 ? * FRI *", updateCheck) // Cron schedule - How often to perform the update check - (This example is 8am every Friday)
updateCheck()
}
def updateCheck(){
setVersion()
def paramsUD = [uri: "https://hubitatcommunity.github.io/HoneywellThermo-TCC/versions.json" ] // This is the URI & path to your hosted JSON file
try {
httpGet(paramsUD) { respUD ->
// log.warn " Version Checking - Response Data: ${respUD.data}" // Troubleshooting Debug Code - Uncommenting this line should show the JSON response from your webserver
def copyrightRead = (respUD.data.copyright)
state.Copyright = copyrightRead
def newVerRaw = (respUD.data.versions.Driver.(state.InternalName))
def newVer = (respUD.data.versions.Driver.(state.InternalName).replace(".", ""))
def currentVer = state.Version.replace(".", "")
state.UpdateInfo = (respUD.data.versions.UpdateInfo.Driver.(state.InternalName))
state.author = (respUD.data.author)
if(newVer == "NLS"){
state.Status = "<b>** This driver is no longer supported by $state.author **</b>"
log.warn "** This driver is no longer supported by $state.author **"
}
else if(currentVer < newVer){
state.Status = "<b>New Version Available (Version: $newVerRaw)</b>"
log.warn "** There is a newer version of this driver available (Version: $newVerRaw) **"
log.warn "** $state.UpdateInfo **"
}
else if(currentVer > newVer){
state.Status = "<b>You are using a Test version of this Driver (Version: $newVerRaw)</b>"
} else {
state.Status = "Current"
logInfo "You are using the current version of this driver"
}
}
}
catch (e) {
log.warn "Something went wrong: CHECK THE JSON FILE AND IT'S URI - $e"
}
if(state.Status == "Current"){
state.UpdateInfo = "N/A"
sendEvent(name: "DriverUpdate", value: state.UpdateInfo)
sendEvent(name: "DriverStatus", value: state.Status)
} else {
sendEvent(name: "DriverUpdate", value: state.UpdateInfo)
sendEvent(name: "DriverStatus", value: state.Status)
}
sendEvent(name: "DriverAuthor", value: state.author)
sendEvent(name: "DriverVersion", value: state.Version)
}