You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ This section provides an overview of the key methods available in the XBee class
51
51
-`XBeeInit()`: Initializes the XBee module.
52
52
-`XBeeConnect()`: Connects the XBee module to a network.
53
53
-`XBeeDisconnect()`: Disconnects the XBee module from the network.
54
-
-`XBeeSendData()`: Sends data through the XBee module.
54
+
-`XBeeSendPacket()`: Sends data through the XBee module.
55
55
-`XBeeSoftReset()`: Performs a soft reset on the XBee module.
56
56
-`XBeeHardReset()`: Performs a hard reset on the XBee module.
57
57
-`XBeeProcess()`: Processes incoming and outgoing data for the XBee module.
@@ -86,7 +86,7 @@ The following methods are specific to the XBee LR (LoRaWAN) subclass and are **n
86
86
-`XBeeLRSetAppEUI()`: Configures the Application EUI used for OTAA join.
87
87
-`XBeeLRSetAppKey()`: Sets the AppKey for LoRaWAN OTAA authentication.
88
88
-`XBeeLRSetNwkKey()`: Sets the Network Key used for network traffic encryption.
89
-
-`XBeeLRSendData()`: Sends a LoRaWAN uplink packet using the LR frame interface.
89
+
-`XBeeLRSendPacket()`: Sends a LoRaWAN uplink packet using the LR frame interface.
90
90
91
91
Each of these methods provides essential functionality for managing and communicating with XBee devices within a network. Ensure that you refer to these methods when developing applications that involve XBee modules.
92
92
@@ -170,7 +170,7 @@ After creating the XBee LR instance, initialize the XBee LR module, configure th
170
170
171
171
### Sending Data
172
172
173
-
To send data over the XBee LR network, use the `XBeeLRSendData` method. Here's an example of preparing and sending a payload:
173
+
To send data over the XBee LR network, use the `XBeeLRSendPacket` method. Here's an example of preparing and sending a payload:
0 commit comments