Skip to content

Commit

Permalink
[Explicit examples] Modified the profile ID used in the samples.
Browse files Browse the repository at this point in the history
Signed-off-by: Tatiana Leon <tatiana.leon@digi.com>
  • Loading branch information
tatianaleon committed May 25, 2015
1 parent 77d97e4 commit 3116e2b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
all the remote modules of the network. When that happens, a line with the
result of the operation is printed to the standard output:

Sending broadcast data [A0 - A1 - 1554 - C105] >> 48 65 6C 6C 6F 20 58 42 65 65 20 57 6F 72 6C 64 21 | Hello XBee World!... Success
Sending broadcast data [A0 - A1 - 1554 - 1234] >> 48 65 6C 6C 6F 20 58 42 65 65 20 57 6F 72 6C 64 21 | Hello XBee World!... Success

Verify that in the XCTU console a new Explicit Rx Indicator frame has been
received by the remote ZigBee device. Select it and review the details, some
Expand All @@ -87,7 +87,7 @@
- Source endpoint: A0
- Destination endpoint: A1
- Cluster ID: 15 54
- Profile ID: C1 05
- Profile ID: 12 34
- Receive options: 02
- RF data/Received data: 48 65 6C 6C 6F 20 58 42 65 65 20 57 6F 72 6C 64 21
Hello XBee World!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ public class MainApp {

private static final String DATA_TO_SEND = "Hello XBee World!";

// Examples of endpoints, cluster ID and profile ID.
private static final int SOURCE_ENDPOINT = 0xA0;
private static final int DESTINATION_ENDPOINT = 0xA1;
private static final int CLUSTER_ID = 0x1554;
private static final int PROFILE_ID = 0xC105;
private static final int PROFILE_ID = 0x1234;

/**
* Application main method.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
that happens, a line with the result of the operation is printed to the
standard output:

Sending data asynchronously to 0013A20040XXXXXX [A0 - A1 - 1554 - C105] >> 48 65 6C 6C 6F 20 58 42 65 65 21 | Hello XBee!... Success
Sending data asynchronously to 0013A20040XXXXXX [A0 - A1 - 1554 - 1234] >> 48 65 6C 6C 6F 20 58 42 65 65 21 | Hello XBee!... Success

- Where 0013A20040XXXXXX is the 64-bit address of the remote ZigBee device
whose Node Identifier is 'REMOTE'.
Expand All @@ -102,7 +102,7 @@
- Source endpoint: A0
- Destination endpoint: A1
- Cluster ID: 15 54
- Profile ID: C1 05
- Profile ID: 12 34
- Receive options: 01
- RF data/Received data: 48 65 6C 6C 6F 20 58 42 65 65 21
Hello XBee!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ public class MainApp {
private static final String DATA_TO_SEND = "Hello XBee!";
private static final String REMOTE_NODE_IDENTIFIER = "REMOTE";

// Examples of endpoints, cluster ID and profile ID.
private static final int SOURCE_ENDPOINT = 0xA0;
private static final int DESTINATION_ENDPOINT = 0xA1;
private static final int CLUSTER_ID = 0x1554;
private static final int PROFILE_ID = 0xC105;
private static final int PROFILE_ID = 0x1234;

/**
* Application main method.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
that happens, a line with the result of the operation is printed to the
standard output:

Sending data to 0013A20040XXXXXX [A0 - A1 - 1554 - C105] >> 48 65 6C 6C 6F 20 58 42 65 65 21 | Hello XBee!... Success
Sending data to 0013A20040XXXXXX [A0 - A1 - 1554 - 1234] >> 48 65 6C 6C 6F 20 58 42 65 65 21 | Hello XBee!... Success

- Where 0013A20040XXXXXX is the 64-bit address of the remote ZigBee device
whose Node Identifier is 'REMOTE'.
Expand All @@ -102,7 +102,7 @@
- Source endpoint: A0
- Destination endpoint: A1
- Cluster ID: 15 54
- Profile ID: C1 05
- Profile ID: 12 34
- Receive options: 01
- RF data/Received data: 48 65 6C 6C 6F 20 58 42 65 65 21
Hello XBee!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ public class MainApp {
private static final String DATA_TO_SEND = "Hello XBee!";
private static final String REMOTE_NODE_IDENTIFIER = "REMOTE";

// Examples of endpoints, cluster ID and profile ID.
private static final int SOURCE_ENDPOINT = 0xA0;
private static final int DESTINATION_ENDPOINT = 0xA1;
private static final int CLUSTER_ID = 0x1554;
private static final int PROFILE_ID = 0xC105;
private static final int PROFILE_ID = 0x1234;

/**
* Application main method.
Expand Down

0 comments on commit 3116e2b

Please sign in to comment.