File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1116,6 +1116,9 @@ HomeSeerAccessory.prototype = {
11161116 garageDoorOpenerService
11171117 . getCharacteristic ( Characteristic . TargetDoorState )
11181118 . on ( 'set' , this . setTargetDoorState . bind ( this ) ) ;
1119+ garageDoorOpenerService
1120+ . getCharacteristic ( Characteristic . TargetDoorState )
1121+ . on ( 'get' , this . getCurrentDoorState . bind ( this ) ) ;
11191122 garageDoorOpenerService
11201123 . getCharacteristic ( Characteristic . ObstructionDetected )
11211124 . on ( 'get' , this . getObstructionDetected . bind ( this ) ) ;
@@ -1136,6 +1139,9 @@ HomeSeerAccessory.prototype = {
11361139 lockService
11371140 . getCharacteristic ( Characteristic . LockCurrentState )
11381141 . on ( 'get' , this . getLockCurrentState . bind ( this ) ) ;
1142+ lockService
1143+ . getCharacteristic ( Characteristic . LockTargetState )
1144+ . on ( 'get' , this . getLockCurrentState . bind ( this ) ) ;
11391145 lockService
11401146 . getCharacteristic ( Characteristic . LockTargetState )
11411147 . on ( 'set' , this . setLockTargetState . bind ( this ) ) ;
You can’t perform that action at this time.
0 commit comments