mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-19 08:28:46 +00:00
request with UDP and also added the value replacement for dimming, this needs to be tested.
14 lines
204 B
Java
14 lines
204 B
Java
package com.bwssystems.HABridge.api;
|
|
|
|
public class CallItem {
|
|
private String item;
|
|
|
|
public String getItem() {
|
|
return item;
|
|
}
|
|
|
|
public void setItem(String anitem) {
|
|
item = anitem;
|
|
}
|
|
}
|