Skip to content

Commit 3116e2b

Browse files
committed
[Explicit examples] Modified the profile ID used in the samples.
Signed-off-by: Tatiana Leon <[email protected]>
1 parent 77d97e4 commit 3116e2b

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

examples/communication/explicit/SendBroadcastExplicitDataSample/ReadMe.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
all the remote modules of the network. When that happens, a line with the
7474
result of the operation is printed to the standard output:
7575

76-
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
76+
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
7777

7878
Verify that in the XCTU console a new Explicit Rx Indicator frame has been
7979
received by the remote ZigBee device. Select it and review the details, some
@@ -87,7 +87,7 @@
8787
- Source endpoint: A0
8888
- Destination endpoint: A1
8989
- Cluster ID: 15 54
90-
- Profile ID: C1 05
90+
- Profile ID: 12 34
9191
- Receive options: 02
9292
- RF data/Received data: 48 65 6C 6C 6F 20 58 42 65 65 20 57 6F 72 6C 64 21
9393
Hello XBee World!

examples/communication/explicit/SendBroadcastExplicitDataSample/src/com/digi/xbee/api/sendbroadcastexplicitdata/MainApp.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,11 @@ public class MainApp {
3535

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

38+
// Examples of endpoints, cluster ID and profile ID.
3839
private static final int SOURCE_ENDPOINT = 0xA0;
3940
private static final int DESTINATION_ENDPOINT = 0xA1;
4041
private static final int CLUSTER_ID = 0x1554;
41-
private static final int PROFILE_ID = 0xC105;
42+
private static final int PROFILE_ID = 0x1234;
4243

4344
/**
4445
* Application main method.

examples/communication/explicit/SendExplicitDataAsyncSample/ReadMe.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
that happens, a line with the result of the operation is printed to the
8686
standard output:
8787

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

9090
- Where 0013A20040XXXXXX is the 64-bit address of the remote ZigBee device
9191
whose Node Identifier is 'REMOTE'.
@@ -102,7 +102,7 @@
102102
- Source endpoint: A0
103103
- Destination endpoint: A1
104104
- Cluster ID: 15 54
105-
- Profile ID: C1 05
105+
- Profile ID: 12 34
106106
- Receive options: 01
107107
- RF data/Received data: 48 65 6C 6C 6F 20 58 42 65 65 21
108108
Hello XBee!

examples/communication/explicit/SendExplicitDataAsyncSample/src/com/digi/xbee/api/sendexplicitdataasync/MainApp.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,11 @@ public class MainApp {
3838
private static final String DATA_TO_SEND = "Hello XBee!";
3939
private static final String REMOTE_NODE_IDENTIFIER = "REMOTE";
4040

41+
// Examples of endpoints, cluster ID and profile ID.
4142
private static final int SOURCE_ENDPOINT = 0xA0;
4243
private static final int DESTINATION_ENDPOINT = 0xA1;
4344
private static final int CLUSTER_ID = 0x1554;
44-
private static final int PROFILE_ID = 0xC105;
45+
private static final int PROFILE_ID = 0x1234;
4546

4647
/**
4748
* Application main method.

examples/communication/explicit/SendExplicitDataSample/ReadMe.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
that happens, a line with the result of the operation is printed to the
8686
standard output:
8787

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

9090
- Where 0013A20040XXXXXX is the 64-bit address of the remote ZigBee device
9191
whose Node Identifier is 'REMOTE'.
@@ -102,7 +102,7 @@
102102
- Source endpoint: A0
103103
- Destination endpoint: A1
104104
- Cluster ID: 15 54
105-
- Profile ID: C1 05
105+
- Profile ID: 12 34
106106
- Receive options: 01
107107
- RF data/Received data: 48 65 6C 6C 6F 20 58 42 65 65 21
108108
Hello XBee!

examples/communication/explicit/SendExplicitDataSample/src/com/digi/xbee/api/sendexplicitdata/MainApp.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,11 @@ public class MainApp {
3838
private static final String DATA_TO_SEND = "Hello XBee!";
3939
private static final String REMOTE_NODE_IDENTIFIER = "REMOTE";
4040

41+
// Examples of endpoints, cluster ID and profile ID.
4142
private static final int SOURCE_ENDPOINT = 0xA0;
4243
private static final int DESTINATION_ENDPOINT = 0xA1;
4344
private static final int CLUSTER_ID = 0x1554;
44-
private static final int PROFILE_ID = 0xC105;
45+
private static final int PROFILE_ID = 0x1234;
4546

4647
/**
4748
* Application main method.

0 commit comments

Comments
 (0)