gpt4 book ai didi

python - 如何使用 Digi XBee Python 模块向远程 XBee 发送 API 帧?

转载 作者:行者123 更新时间:2023-12-04 09:43:40 25 4
gpt4 key购买 nike

我正在将代码从 Python XBee 库移动到 Digi 的 Python XBee 库,我无法在文档中找到有关如何将 API 帧发送到远程 XBee 的语法。我正在使用 S1 和 S1 Pro 设备,其中“本地”设备连接到 Beaglebone,而“远程”设备在野外是独立的。

我有基本的框架:

from digi.xbee.devices import XBeeDevice, RemoteXBeeDevice, XBee64BitAddress

PORT = '/dev/ttyO1'
BAUD = 9600
API_FRAME = 'long-hex-string-here'

local_xbee = XBeeDevice(PORT, BAUD)
local_xbee.open()

# Instantiate a remote XBee device object.
remote_xbee = RemoteXBeeDevice(local_xbee, XBee64BitAddress.from_hex_string("0013A20040DD7DCD"))

# Transmit frame to remote_xbee - unsure of correct method and syntax
# perhaps XBeePacket.create_packet(hex string here)
# local_xbee.send_data(remote_xbee, "api frame here?") ??

local_xbee.close()

但我无法找到有关如何传输我构造的 API 帧的语法。根据文档中的介绍部分,我认为这是正确的方法。我对广播到网络上的所有设备不感兴趣,而是对单播通信感兴趣。

最佳答案

当我可以让它工作时,我有一些较旧的源模型。



我有一些 WiFi Xbee 模块,我使用了一些转换板(基板)。我用它来连接 Xbee 从一台计算机到另一台计算机的通信,例如随机桌面通过 USB 而不是 UART 到 BeagleBone Black。因此,我将使用下面列出的源连接我的 USB 加密狗,用于从 BBB 到另一个现场模块的 Xbee 通信。

他们的 I/O 资料可以在这里找到:https://github.com/digidotcom/xbee-python/tree/master/examples/io .

此外......使用 USB 加密狗 WiFi 适配器板仅更改其源中的一些线路,事实证明这在 LED 和其他传感器信号方面很有值(value)。

哦,您将需要他们现在所说的载板。就是我刚才打出来的转接板。因此,如果您已经拥有载板,请在 Linux 中使用 lsusb 作为命令来查找您的 USB“名称”。

因此,例如,如果 lsusb 显示 /dev/ttyUSB0 ,那么这就是端口标识。

您可以使用 lsusb 中的该部分,然后在 Digi 的 xtcu 软件中更改您的 xbee 模块。


from digi.xbee.devices import XBeeDevice
from digi.xbee.io import IOLine, IOMode
import time
import threading

# TODO: Replace with the serial port where your local module is connected to.
PORT = "/dev/ttyUSB0"
# TODO: Replace with the baud rate of your local module.
BAUD_RATE = 9600

REMOTE_NODE_ID = "Xbee_B"

IOLINE_IN = IOLine.DIO2_AD2
IOLINE_OUT = IOLine.DIO4_AD4

def main():
print(" +-----------------------------------------------+")
print(" | XBee Python Library Get/Set Remote DIO Sample |")
print(" +-----------------------------------------------+\n")

stop = False
th = None

local_device = XBeeDevice(PORT, BAUD_RATE)

try:
local_device.open()
print("local device: ", local_device.get_node_id())
# Obtain the remote XBee device from the XBee network.
xbee_network = local_device.get_network()
remote_device = xbee_network.discover_device(REMOTE_NODE_ID)
if local_device is None:
print("Could not find the remote device")
exit(2)

def io_detection_callback():
while not stop:
# Read the digital value from the input line.
io_value = remote_device.get_dio_value(IOLINE_IN)
print("%s: %s" % (IOLINE_IN, io_value))

# Set the previous value to the local output line.
local_device.set_dio_value(IOLINE_OUT, io_value)

time.sleep(2)

th = threading.Thread(target=io_detection_callback)

remote_device.set_io_configuration(IOLINE_IN, IOMode.DIGITAL_IN)

local_device.set_io_configuration(IOLINE_OUT, IOMode.DIGITAL_OUT_HIGH)

time.sleep(1)
th.start()

input()

finally:
stop = True
if th is not None and th.is_alive():
th.join()
if local_device is not None and local_device.is_open():
local_device.close()


if __name__ == '__main__':
main()

那么,看到源代码的 PORT = "/dev/ttyUSB0"部分了吗?

这是我将 Xbee 模块连接到载板的地方,然后通过 USB 将载板连接到 BBB。

嗯,这可能无法回答问题,但可以更深入地了解如何处理 Digi 设备/模块。

我还认为,如果您想尝试使用 Xbee 和 BeagleBone Black 进行 UART 通信,可能会更复杂。我会继续搜索我的文字。

附言这本书介绍了一些连接方法,实验 10 和实验 16,你的“BBB”到 UART,Xbee,以及如何通信。从这本书中获得所有的交流想法有点太深入了,但就是这样:
The Hands-on XBEE Lab Manual, Experiments that Teach you XBEE Wireless Communications – Jonathan A Titus

关于python - 如何使用 Digi XBee Python 模块向远程 XBee 发送 API 帧?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62220616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com