Finished implementation of headers and tested. Added calls for TCP

request with UDP and also added the value replacement for dimming, this
needs to be tested.
This commit is contained in:
Admin
2016-04-25 16:48:59 -05:00
parent ee45cee8e3
commit aecd589308
7 changed files with 147 additions and 25 deletions

View File

@@ -1,13 +1,13 @@
package com.bwssystems.HABridge.api;
public class CallItem {
private String Item;
private String item;
public String getItem() {
return Item;
return item;
}
public void setItem(String item) {
Item = item;
public void setItem(String anitem) {
item = anitem;
}
}