Updated UI for configuration and added shutdown of harmony and nest

connections.
This commit is contained in:
Admin
2016-02-16 16:52:12 -06:00
parent 9cb275230e
commit 1d6a4c1432
4 changed files with 30 additions and 0 deletions

View File

@@ -97,5 +97,13 @@ public class NestHome {
public Nest getTheNest() {
return theNest;
}
public void closeTheNest() {
theNest.endNestSession();
theNest = null;
theSession = null;
nestItems = null;
}
}