-
Notifications
You must be signed in to change notification settings - Fork 1
Wi-SUN Support #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
hgonzaleDigi
wants to merge
2
commits into
master
Choose a base branch
from
hgonzale/wisun_support
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Wi-SUN Support #19
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
Wi-SUN Get Started Sample Application | ||
===================================== | ||
|
||
This example is part of the Digi's Wi-SUN Get Started. It demonstrates | ||
how to use the XBee Hive Wi-SUN and the XBee Wi-SUN modules to exchange | ||
data using the socket IPv6 API. | ||
|
||
This application is executed in the XBee Hive Wi-SUN and performs the | ||
following actions: | ||
* Allows the user to input messages to send to the target XBee. | ||
* Listens for incoming IPv6 messages from the XBee network. | ||
|
||
Read the [demo documentation][doc] for more information. | ||
|
||
|
||
Requirements | ||
------------ | ||
|
||
To run this example you need: | ||
|
||
* An XBee Hive Wi-SUN device. | ||
* An XBee Wi-SUN radio module running the corresponding MicroPython | ||
application of the Get Started and its corresponding carrier board | ||
(XBIB-C board). | ||
* XBee Studio (available at www.digi.com/digi-xbee-studio) | ||
|
||
|
||
Setup | ||
----- | ||
|
||
1. Ensure the XBee Wi-SUN module is in the same network as the Digi XBee Hive Wi-SUN device. | ||
|
||
Run | ||
--- | ||
|
||
The example expects the IPv6 address of the remote XBee device as a parameter to | ||
launch. To obtain that value: | ||
|
||
1. Launch the XBee Studio application. | ||
2. Plug the remote XBee device to the PC. XBee Studio automatically discovers it. | ||
3. Open the device tab associated to the XBee module by clicking on it. | ||
4. Click **Settings** in the left sidebar to open the settings page. This reads | ||
all the settings automatically. | ||
5. Search the **MY** setting. This is the value you have to pass as parameter | ||
to the Python application of the Digi XBee Hive Wi-SUN device. | ||
|
||
Ensure to pass the XBee Device's IPv6 address as parameter to the example application. To do so from PyCharm: | ||
|
||
1. Click on the **Run/debug Configurations** button in the toolbar of your IDE. | ||
It is a combo-box with the name of your project. | ||
2. On the contextual menu that appears, click on **Edit Configurations**. | ||
3. In the new window, there is a **Parameters** field. It allows to input the | ||
parameters of the application. Input **-a <destination_ipv6>** where | ||
<destination_ipv6> is the IPv6 address of the device that you copied | ||
in the previous section. | ||
|
||
At this point you only need to build and launch the project. Then, read the Get | ||
started section of the documentation for more information about the exercise. | ||
|
||
Supported platforms | ||
------------------- | ||
|
||
* Digi XBee Hive Wi-SUN - minimum firmware version: 25.6.110.1 | ||
|
||
License | ||
------- | ||
|
||
Copyright (c) 2025, Digi International, Inc. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
|
||
[doc]: https://docs.digi.com/resources/documentation/digidocs/rf-docs/wisun/wisun-gs_c.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# Copyright (c) 2025, Digi International, Inc. | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
import socket | ||
import argparse | ||
import threading | ||
|
||
|
||
PORT = 9750 | ||
|
||
print("---------------------------------------+") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. NP: Move this to the |
||
print(" | XBee Hive Wi-SUN Get Started Sample |") | ||
print(" +-------------------------------------+\n") | ||
|
||
def receiver(sock): | ||
""" | ||
Background thread: receive and print incoming UDP datagrams. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. NP: Missing parameter |
||
""" | ||
while True: | ||
try: | ||
data, address = sock.recvfrom(1024) | ||
print("Received from [%s]:%s >> %s\n> " % ( | ||
address[0], address[1], data.decode().rstrip()), | ||
end='', flush=True) | ||
except OSError as e: | ||
print("Receive error: %s" % e) | ||
|
||
def main(): | ||
parser = argparse.ArgumentParser( | ||
description='Simple IPv6 UDP socket client') | ||
parser.add_argument('-a', '--address', required=True, | ||
help='IPv6 address of the server') | ||
args = parser.parse_args() | ||
|
||
# Create an IPv6 UDP socket. | ||
server = (args.address, PORT) | ||
s = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM) | ||
s.bind(('::', PORT)) | ||
|
||
# Start receiver thread. | ||
thread = threading.Thread(target=receiver, args=(s,), daemon=True) | ||
thread.start() | ||
|
||
print("\nType a message and hit Enter to send it to [%s]:%s." % ( | ||
args.address, PORT)) | ||
try: | ||
while True: | ||
# Read a line from stdin and send it as a UDP datagram. | ||
line = input("> ") | ||
if not line: | ||
print("Please, enter some data to send to [%s]:%s." % ( | ||
args.address, PORT)) | ||
continue | ||
|
||
try: | ||
s.sendto(line.encode(), server) | ||
except OSError as e: | ||
print("Error sending data: %s" % e) | ||
except KeyboardInterrupt: | ||
print('\nInterrupted by user, closing...') | ||
finally: | ||
s.close() | ||
|
||
if __name__ == '__main__': | ||
main() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Digi XBee Studio v1.3.0 or higher (available at www.digi.com/xbee-studio).