File tree Expand file tree Collapse file tree 6 files changed +12
-9
lines changed
examples/communication/explicit
SendBroadcastExplicitDataSample
src/com/digi/xbee/api/sendbroadcastexplicitdata
SendExplicitDataAsyncSample
src/com/digi/xbee/api/sendexplicitdataasync
src/com/digi/xbee/api/sendexplicitdata Expand file tree Collapse file tree 6 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 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
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!
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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'.
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!
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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'.
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!
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments