All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rapplogic.xbee.api.zigbee.ZNetExplicitTxRequest Maven / Gradle / Ivy

/**
 * Copyright (c) 2008 Andrew Rapp. All rights reserved.
 *  
 * This file is part of XBee-API.
 *  
 * XBee-API is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *  
 * XBee-API is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *  
 * You should have received a copy of the GNU General Public License
 * along with XBee-API.  If not, see .
 */

package com.rapplogic.xbee.api.zigbee;

import java.util.EnumSet;
import java.util.HashMap;
import java.util.Map;

import com.rapplogic.xbee.api.ApiId;
import com.rapplogic.xbee.api.XBeeAddress16;
import com.rapplogic.xbee.api.XBeeAddress64;
import com.rapplogic.xbee.util.ByteUtils;
import com.rapplogic.xbee.util.DoubleByte;
import com.rapplogic.xbee.util.IntArrayOutputStream;

/**
 * Series 2 XBee.  Sends a packet to a remote radio.  The remote radio
 * receives the packet as a ZNetExplicitRxResponse packet.
 * 

* Radio must be configured for explicit frames to use this class (AO=1) *

* API ID: 0x11 * * @author andrew * */ public class ZNetExplicitTxRequest extends ZNetTxRequest { public enum Endpoint { ZDO_ENDPOINT(0), COMMAND (0xe6), DATA (0xe8); private static final Map lookup = new HashMap(); static { for(Endpoint s : EnumSet.allOf(Endpoint.class)) { lookup.put(s.getValue(), s); } } public static Endpoint get(int value) { return lookup.get(value); } private final int value; Endpoint(int value) { this.value = value; } public int getValue() { return value; } } public enum ClusterId { TRANSPARENT_SERIAL (Endpoint.DATA, 0x11), SERIAL_LOOPBACK (Endpoint.DATA, 0x12), IO_SAMPLE (Endpoint.DATA, 0x92), XBEE_SENSOR (Endpoint.DATA, 0x94), NODE_IDENTIFICATION (Endpoint.DATA, 0x95); private static final Map lookup = new HashMap(); static { for(ClusterId s : EnumSet.allOf(ClusterId.class)) { lookup.put(s.getValue(), s); } } public static ClusterId get(int value) { return lookup.get(value); } private final int value; private final Endpoint endpoint; ClusterId(Endpoint endpoint, int value) { this.endpoint = endpoint; this.value = value; } public int getValue() { return value; } public Endpoint getEndpoint() { return this.endpoint; } } // TODO ZDO commands private int sourceEndpoint; private int destinationEndpoint; private DoubleByte clusterId; private DoubleByte profileId; public final static DoubleByte znetProfileId = new DoubleByte(0xc1, 0x05); public final static DoubleByte zdoProfileId = new DoubleByte(0, 0); public ZNetExplicitTxRequest(int frameId, XBeeAddress64 dest64, XBeeAddress16 dest16, int broadcastRadius, ZNetTxRequest.Option option, int[] payload, int sourceEndpoint, int destinationEndpoint, DoubleByte clusterId, DoubleByte profileId) { super(frameId, dest64, dest16, broadcastRadius, option, payload); this.sourceEndpoint = sourceEndpoint; this.destinationEndpoint = destinationEndpoint; this.clusterId = clusterId; this.profileId = profileId; } /** * Gets frame data from tx request (super) and inserts necessary bytes */ public int[] getFrameData() { // get frame id from tx request IntArrayOutputStream frameData = this.getFrameDataAsIntArrayOutputStream(); // overwrite api id frameData.getInternalList().set(0, this.getApiId().getValue()); // insert explicit bytes // source endpoint frameData.getInternalList().add(12, this.getSourceEndpoint()); // dest endpoint frameData.getInternalList().add(13, this.getDestinationEndpoint()); // cluster id msb frameData.getInternalList().add(14, this.getClusterId().getMsb()); // cluster id lsb frameData.getInternalList().add(15, this.getClusterId().getLsb()); // profile id frameData.getInternalList().add(16, this.getProfileId().getMsb()); frameData.getInternalList().add(17, this.getProfileId().getLsb()); return frameData.getIntArray(); } public ApiId getApiId() { return ApiId.ZNET_EXPLICIT_TX_REQUEST; } public int getSourceEndpoint() { return sourceEndpoint; } public void setSourceEndpoint(int sourceEndpoint) { this.sourceEndpoint = sourceEndpoint; } public int getDestinationEndpoint() { return destinationEndpoint; } public void setDestinationEndpoint(int destinationEndpoint) { this.destinationEndpoint = destinationEndpoint; } public DoubleByte getClusterId() { return clusterId; } public void setClusterId(DoubleByte clusterId) { this.clusterId = clusterId; } public DoubleByte getProfileId() { return profileId; } public void setProfileId(DoubleByte profileId) { this.profileId = profileId; } public String toString() { return super.toString() + ",sourceEndpoint=" + ByteUtils.toBase16(this.getSourceEndpoint()) + ",destinationEndpoint=" + ByteUtils.toBase16(this.getDestinationEndpoint()) + ",clusterId(msb)=" + ByteUtils.toBase16(this.getClusterId().getMsb()) + ",clusterId(lsb)=" + ByteUtils.toBase16(this.getClusterId().getLsb()) + ",profileId(msb)=" + ByteUtils.toBase16(this.getProfileId().getMsb()) + ",profileId(lsb)=" + ByteUtils.toBase16(this.getProfileId().getLsb()); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy