Updated FHEM for command

Started Broadlink implementation
This commit is contained in:
bsamuels
2018-01-18 16:54:21 -06:00
parent 4b048c2a7f
commit 5a052d9374
15 changed files with 725 additions and 305 deletions

View File

@@ -4123,6 +4123,7 @@ app.controller('EditController', function ($scope, $location, bridgeService) {
$scope.onDevices.splice(i, 1);
}
}
$scope.newOnItem = {};
};
$scope.addItemDim = function (anItem) {
@@ -4140,6 +4141,7 @@ app.controller('EditController', function ($scope, $location, bridgeService) {
$scope.dimDevices.splice(i, 1);
}
}
$scope.newDimItem = {};
};
$scope.addItemOff = function (anItem) {
@@ -4157,6 +4159,7 @@ app.controller('EditController', function ($scope, $location, bridgeService) {
$scope.offDevices.splice(i, 1);
}
}
$scope.newOffItem = {};
};
$scope.addItemColor = function (anItem) {
@@ -4174,6 +4177,7 @@ app.controller('EditController', function ($scope, $location, bridgeService) {
$scope.colorDevices.splice(i, 1);
}
}
$scope.newColorItem = {};
};