use of com.zsmartsystems.zigbee.zcl.ZclCluster in project com.zsmartsystems.zigbee by zsmartsystems.
the class ZigBeeConsoleReportingUnsubscribeCommand method process.
@Override
public void process(ZigBeeNetworkManager networkManager, String[] args, PrintStream out) throws IllegalArgumentException, InterruptedException, ExecutionException {
if (args.length != 6) {
throw new IllegalArgumentException("Invalid number of arguments");
}
final ZigBeeEndpoint endpoint = getEndpoint(networkManager, args[1]);
final int clusterId = parseCluster(args[3]);
final ZclCluster cluster;
final String direction = args[2].toUpperCase();
if ("IN".equals(direction)) {
cluster = endpoint.getInputCluster(clusterId);
} else if ("OUT".equals(direction)) {
cluster = endpoint.getOutputCluster(clusterId);
} else {
throw new IllegalArgumentException("Cluster direction must be IN or OUT");
}
final int attributeId = parseAttribute(args[4]);
final ZclAttribute attribute = cluster.getAttribute(attributeId);
final CommandResult result = cluster.setReporting(attribute, 0, 0xFFFF, null).get();
if (result.isSuccess()) {
final ConfigureReportingResponse response = result.getResponse();
final ZclStatus statusCode = response.getRecords().get(0).getStatus();
if (statusCode == ZclStatus.SUCCESS) {
out.println("Attribute value configure reporting success.");
} else {
out.println("Attribute value configure reporting error: " + statusCode);
}
} else {
out.println("Error executing command: " + result);
}
}
use of com.zsmartsystems.zigbee.zcl.ZclCluster in project com.zsmartsystems.zigbee by zsmartsystems.
the class ZigBeeConsoleUnbindCommand method process.
@Override
public void process(ZigBeeNetworkManager networkManager, String[] args, PrintStream out) throws IllegalArgumentException, InterruptedException, ExecutionException {
if (args.length < 3) {
throw new IllegalArgumentException("Invalid number of arguments");
}
final int clusterId = parseCluster(args[1]);
final ZigBeeEndpoint source = getEndpoint(networkManager, args[2]);
ZclCluster cluster = source.getInputCluster(clusterId);
if (cluster == null) {
throw new IllegalArgumentException("Cluster '" + clusterId + "' not found.");
}
IeeeAddress destAddress;
int destEndpoint;
if (args.length >= 4) {
ZigBeeEndpoint destination = getEndpoint(networkManager, args[3]);
destAddress = destination.getIeeeAddress();
destEndpoint = destination.getEndpointId();
} else {
destAddress = networkManager.getNode(0).getIeeeAddress();
destEndpoint = 1;
}
final CommandResult response = cluster.unbind(destAddress, destEndpoint).get();
processDefaultResponse(response, out);
}
use of com.zsmartsystems.zigbee.zcl.ZclCluster in project com.zsmartsystems.zigbee by zsmartsystems.
the class ZigBeeConsoleAttributeReadCommand method process.
@Override
public void process(ZigBeeNetworkManager networkManager, String[] args, PrintStream out) throws IllegalArgumentException, InterruptedException, ExecutionException {
if (args.length != 4) {
throw new IllegalArgumentException("Invalid number of arguments");
}
final ZigBeeEndpoint endpoint = getEndpoint(networkManager, args[1]);
final Integer clusterId = parseCluster(args[2]);
ZclCluster cluster = endpoint.getInputCluster(clusterId);
if (cluster != null) {
out.println("Using input cluster");
} else {
cluster = endpoint.getOutputCluster(clusterId);
if (cluster != null) {
out.println("Using output cluster");
} else {
out.println("Cluster not found");
return;
}
}
final Integer attributeId = parseAttribute(args[3]);
String attributeName;
ZclAttribute attribute = cluster.getAttribute(attributeId);
if (attribute == null) {
attributeName = "Attribute " + attributeId;
} else {
attributeName = attribute.getName();
}
out.println("Reading " + cluster.getClusterName() + ", " + attributeName);
CommandResult result;
result = cluster.read(attributeId).get();
if (result.isSuccess()) {
final ReadAttributesResponse response = result.getResponse();
if (response.getRecords().size() == 0) {
out.println("No records returned");
return;
}
final ZclStatus statusCode = response.getRecords().get(0).getStatus();
if (statusCode == ZclStatus.SUCCESS) {
out.println("Cluster " + String.format("%04X", response.getClusterId()) + ", Attribute " + response.getRecords().get(0).getAttributeIdentifier() + ", type " + response.getRecords().get(0).getAttributeDataType() + ", value: " + response.getRecords().get(0).getAttributeValue());
} else {
out.println("Attribute value read error: " + statusCode);
}
return;
} else {
out.println("Error executing command: " + result);
return;
}
}
use of com.zsmartsystems.zigbee.zcl.ZclCluster in project com.zsmartsystems.zigbee by zsmartsystems.
the class ZigBeeConsoleAttributeSupportedCommand method process.
@Override
public void process(ZigBeeNetworkManager networkManager, String[] args, PrintStream out) throws IllegalArgumentException, InterruptedException, ExecutionException {
if (args.length != 3) {
throw new IllegalArgumentException("Invalid number of arguments");
}
final ZigBeeEndpoint endpoint = getEndpoint(networkManager, args[1]);
final Integer clusterId = parseCluster(args[2]);
ZclCluster cluster = endpoint.getInputCluster(clusterId);
if (cluster != null) {
out.println("Using input cluster");
} else {
cluster = endpoint.getOutputCluster(clusterId);
if (cluster != null) {
out.println("Using output cluster");
} else {
out.println("Cluster not found");
return;
}
}
final Future<Boolean> future = cluster.discoverAttributes(false);
Boolean result = future.get();
if (result) {
out.println("Supported attributes for " + cluster.getClusterName() + " Cluster " + printClusterId(cluster.getClusterId()));
out.println("AttrId Data Type Name");
for (Integer attributeId : cluster.getSupportedAttributes()) {
out.print(" ");
ZclAttribute attribute = cluster.getAttribute(attributeId);
out.print(printAttributeId(attributeId));
if (attribute != null) {
out.print(" " + printZclDataType(attribute.getDataType()) + " " + attribute.getName());
}
out.println();
}
} else {
out.println("Failed to retrieve supported attributes");
}
}
use of com.zsmartsystems.zigbee.zcl.ZclCluster in project com.zsmartsystems.zigbee by zsmartsystems.
the class ZigBeeConsoleBindCommand method process.
@Override
public void process(ZigBeeNetworkManager networkManager, String[] args, PrintStream out) throws IllegalArgumentException, InterruptedException, ExecutionException {
if (args.length < 3) {
throw new IllegalArgumentException("Invalid number of arguments");
}
final int clusterId = parseCluster(args[1]);
final ZigBeeEndpoint source = getEndpoint(networkManager, args[2]);
ZclCluster cluster = source.getInputCluster(clusterId);
if (cluster == null) {
throw new IllegalArgumentException("Cluster '" + clusterId + "' not found.");
}
IeeeAddress destAddress;
int destEndpoint;
if (args.length >= 4) {
ZigBeeEndpoint destination = getEndpoint(networkManager, args[3]);
destAddress = destination.getIeeeAddress();
destEndpoint = destination.getEndpointId();
} else {
destAddress = networkManager.getNode(0).getIeeeAddress();
destEndpoint = 1;
}
final CommandResult response = cluster.bind(destAddress, destEndpoint).get();
processDefaultResponse(response, out);
}
Aggregations