mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-20 08:51:16 +00:00
Finished Nest implementation and default ip selection to not be
127.0.0.1 Fixes #12 Fixes #20
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user