Finished implementation of HAL calls to the API. Testing next.

This commit is contained in:
Admin
2016-05-26 16:06:48 -05:00
parent 6b4693eaaf
commit d7e29e2ee5
11 changed files with 201 additions and 117 deletions

View File

@@ -5,6 +5,7 @@ public class HalDevice {
private String haldevicename;
private String haladdress;
private String halname;
private DeviceElements buttons;
public String getHaldevicetype() {
return haldevicetype;
}
@@ -29,4 +30,10 @@ public class HalDevice {
public void setHalname(String halname) {
this.halname = halname;
}
public DeviceElements getButtons() {
return buttons;
}
public void setButtons(DeviceElements buttons) {
this.buttons = buttons;
}
}