Finished Nest implementation and default ip selection to not be

127.0.0.1

Fixes #12
Fixes #20
This commit is contained in:
Admin
2016-01-21 16:44:24 -06:00
parent ac59398aa0
commit 37d346f558
11 changed files with 70 additions and 39 deletions

View File

@@ -2,7 +2,7 @@ package com.bwssystems.NestBridge;
public class NestItem {
private String name;
private String Id;
private String id;
private String type;
private String location;
public String getName() {
@@ -12,10 +12,10 @@ public class NestItem {
this.name = name;
}
public String getId() {
return Id;
return id;
}
public void setId(String id) {
Id = id;
public void setId(String anid) {
id = anid;
}
public String getType() {
return type;