Skip to content

Commit 24b6ae6

Browse files
committed
xbee blue: Update name of product to be 'XBee 3 BLU'
Signed-off-by: Tatiana Leon <Tatiana.Leon@digi.com>
1 parent 187afbf commit 24b6ae6

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ v1.4.2 - XX/XX/202X
1414
* XBee 3 Cellular North America Cat 4
1515
* XBee XR 900 TH
1616
* XBee XR 868 TH
17-
* XBee BLU
17+
* XBee 3 BLU
1818
* Support to retrieve XBee statistics.
1919
* Send/receive explicit data in 802.15.4.
2020
(XBee 3 modules support this feature)
@@ -25,7 +25,7 @@ v1.4.2 - XX/XX/202X
2525
configure '$S', '$V', '$W', '$X', and '$Y' XBee parameters to establish
2626
Bluetooth password.
2727
* Support for sending BLE Generic Access Profile (GAP) scans.
28-
(Only XBee BLU modules support this feature)
28+
(Only XBee 3 BLU modules support this feature)
2929
* Bug fixing:
3030

3131
* Fix order of nodes when creating a Zigbee source route (#278)

digi/xbee/models/hw.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ class HardwareVersion(Enum):
106106
CELLULAR_3_NA_CAT4 = (0x59, "XBee 3 Cellular North America Cat 4")
107107
XBEE_XR_900_TH = (0x5A, "XBee XR 900 TH")
108108
XBEE_XR_868_TH = (0x5B, "XBee XR 868 TH")
109-
XBEE_BLU = (0x5C, "XBee BLU")
110-
XBEE_BLU_TH = (0x5D, "XBee BLU TH")
109+
XBEE_BLU = (0x5C, "XBee 3 BLU")
110+
XBEE_BLU_TH = (0x5D, "XBee 3 BLU TH")
111111

112112
def __init__(self, code, description):
113113
self.__code = code

examples/communication/bluetooth/GapScanCursesDemo/readme.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
The application registers a callback to be notified when new GAP scan data
77
coming from Bluetooth BLE is received and displays it on the screen.
88

9-
NOTE: This demo is currently only supported on the XBee BLU device
9+
NOTE: This demo is currently only supported on the XBee 3 BLU device
1010
which uses 'XBeeBLU' device class.
1111

1212

1313
Requirements
1414
------------
1515
To run this demo you will need:
1616

17-
* One XBee BLU module in API mode and its corresponding carrier board
17+
* One XBee 3 BLU module in API mode and its corresponding carrier board
1818
(XBIB or equivalent).
1919
* The XCTU application (available at www.digi.com/xctu).
2020
* The Python 'curses' library installed.
@@ -27,31 +27,31 @@
2727

2828
Demo setup
2929
-------------
30-
1) Plug the XBee BLU radio into the XBee adapter and connect it to your
30+
1) Plug the XBee 3 BLU radio into the XBee adapter and connect it to your
3131
computer's USB or serial port.
3232

3333
2) Ensure that the module is in API mode.
3434
For further information on how to perform this task, read the
3535
'Configuring Your XBee Modules' topic of the Getting Started guide.
3636

37-
3) Enable the Bluetooth interface of the XBee BLU device using XCTU.
37+
3) Enable the Bluetooth interface of the XBee 3 BLU device using XCTU.
3838
For further information on how to perform this task, refer to the
3939
XCTU user manual.
4040

41-
4) Set the port and baud rate of the XBee BLU radio in the demo file.
41+
4) Set the port and baud rate of the XBee 3 BLU radio in the demo file.
4242
If you configured the module in the previous step with XCTU, you will
4343
see the port number and baud rate in the 'Port' label of the device
4444
on the left view.
4545

46-
5) Install the Python 'curses' library in your Python enviroment.
46+
5) Install the Python 'curses' library in your Python environment.
4747
- For Linux based installations, this typically has already been done
4848
for you by your Linux distribution.
4949
If not, use 'pip' to install the 'curses' package.
5050

5151
- For Windows based installations, you will need to install the
5252
'windows-curses' library using PIP.
5353
For example, the following steps should work, assuming the
54-
Python enviroment has been properly set up:
54+
Python environment has been properly set up:
5555

5656
python.exe -m ensurepip --upgrade
5757
python.exe -m pip install --upgrade pip setuptools wheel

examples/communication/bluetooth/GapScanExample/readme.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
and also registers a callback to be notified when the GAP scan status
1010
changes.
1111

12-
NOTE: This example is currently only supported on the XBee BLU device
12+
NOTE: This example is currently only supported on the XBee 3 BLU device
1313
which uses 'XBeeBLU' device class.
1414

1515

1616
Requirements
1717
------------
1818
To run this example you will need:
1919

20-
* One XBee BLU module in API mode and its corresponding carrier board
20+
* One XBee 3 BLU module in API mode and its corresponding carrier board
2121
(XBIB or equivalent).
2222
* The XCTU application (available at www.digi.com/xctu).
2323

@@ -29,18 +29,18 @@
2929

3030
Example setup
3131
-------------
32-
1) Plug the XBee BLU radio into the XBee adapter and connect it to your
32+
1) Plug the XBee 3 BLU radio into the XBee adapter and connect it to your
3333
computer's USB or serial port.
3434

3535
2) Ensure that the module is in API mode.
3636
For further information on how to perform this task, read the
3737
'Configuring Your XBee Modules' topic of the Getting Started guide.
3838

39-
3) Enable the Bluetooth interface of the XBee BLU device using XCTU.
39+
3) Enable the Bluetooth interface of the XBee 3 BLU device using XCTU.
4040
For further information on how to perform this task, refer to the
4141
XCTU user manual.
4242

43-
4) Set the port and baud rate of the XBee BLU radio in the example file.
43+
4) Set the port and baud rate of the XBee 3 BLU radio in the example file.
4444
If you configured the module in the previous step with XCTU, you will
4545
see the port number and baud rate in the 'Port' label of the device
4646
on the left view.

functional_tests/Bluetooth/device_info.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020

2121

2222
def main():
23-
print(" +---------------------------+")
24-
print(" | XBee BLU device info test |")
25-
print(" +---------------------------+\n")
23+
print(" +-----------------------------+")
24+
print(" | XBee 3 BLU device info test |")
25+
print(" +-----------------------------+\n")
2626

2727
local = BluDevice(PORT_LOCAL, BAUD_RATE_LOCAL)
2828

0 commit comments

Comments
 (0)