use of com.zsmartsystems.zigbee.zcl.ZclStatus 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.ZclStatus 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.ZclStatus in project com.zsmartsystems.zigbee by zsmartsystems.
the class ZigBeeConsoleReportingConfigCommand 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 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.getReporting(attribute).get();
if (result.isSuccess()) {
final ReadAttributesResponse response = result.getResponse();
final ZclStatus statusCode = response.getRecords().get(0).getStatus();
if (statusCode == ZclStatus.SUCCESS) {
out.println("Cluster " + 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);
}
} else {
out.println("Error executing command: " + result);
}
}
use of com.zsmartsystems.zigbee.zcl.ZclStatus in project com.zsmartsystems.zigbee by zsmartsystems.
the class ZigBeeConsoleReportingSubscribeCommand method process.
@Override
public void process(ZigBeeNetworkManager networkManager, String[] args, PrintStream out) throws IllegalArgumentException, InterruptedException, ExecutionException {
if (args.length < 7) {
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 minInterval;
try {
minInterval = Integer.parseInt(args[5]);
} catch (final NumberFormatException e) {
throw new IllegalArgumentException("Min Interval has invalid format");
}
final int maxInterval;
try {
maxInterval = Integer.parseInt(args[6]);
} catch (final NumberFormatException e) {
throw new IllegalArgumentException("Max Interval has invalid format");
}
final int attributeId = parseAttribute(args[4]);
final ZclAttribute attribute = cluster.getAttribute(attributeId);
final Object reportableChange;
if (args.length > 6) {
reportableChange = parseValue(args[7], attribute.getDataType());
} else {
reportableChange = null;
}
final CommandResult result = cluster.setReporting(attribute, minInterval, maxInterval, reportableChange).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.ZclStatus in project com.zsmartsystems.zigbee by zsmartsystems.
the class ZigBeeConsoleAttributeWriteCommand method process.
@Override
public void process(ZigBeeNetworkManager networkManager, String[] args, PrintStream out) throws IllegalArgumentException, InterruptedException, ExecutionException {
if (args.length != 5) {
throw new IllegalArgumentException("Invalid number of arguments");
}
final ZigBeeEndpoint endpoint = getEndpoint(networkManager, args[1]);
final int clusterId = parseCluster(args[3]);
final int attributeId = parseAttribute(args[4]);
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 ZclAttribute attribute = cluster.getAttribute(attributeId);
final Object value = parseValue(args[4], attribute.getDataType());
final CommandResult result = cluster.write(attribute, value).get();
if (result.isSuccess()) {
final WriteAttributesResponse response = result.getResponse();
final int statusCode = response.getRecords().get(0).getStatus();
if (statusCode == 0) {
out.println("Attribute value write success.");
} else {
final ZclStatus status = ZclStatus.getStatus((byte) statusCode);
out.println("Attribute value write error: " + status);
}
} else {
out.println("Error executing command: " + result);
}
}
Aggregations